libZSservicesZSamazonka-ssmZSamazonka-ssm
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

Description

For a given maintenance window execution, lists the tasks that were run.

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeMaintenanceWindowExecutionTasks Source #

Constructors

DescribeMaintenanceWindowExecutionTasks' 

Fields

  • filters :: Maybe [MaintenanceWindowFilter]

    Optional filters used to scope down the returned tasks. The supported filter key is STATUS with the corresponding values PENDING, IN_PROGRESS, SUCCESS, FAILED, TIMED_OUT, CANCELLING, and CANCELLED.

  • nextToken :: Maybe Text

    The token for the next set of items to return. (You received this token from a previous call.)

  • maxResults :: Maybe Natural

    The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

  • windowExecutionId :: Text

    The ID of the maintenance window execution whose task executions should be retrieved.

Instances

Instances details
Eq DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

Read DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

Show DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

Generic DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

NFData DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

Hashable DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

ToJSON DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

AWSPager DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

AWSRequest DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

ToHeaders DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

ToPath DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

ToQuery DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

type Rep DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

type Rep DescribeMaintenanceWindowExecutionTasks = D1 ('MetaData "DescribeMaintenanceWindowExecutionTasks" "Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks" "libZSservicesZSamazonka-ssmZSamazonka-ssm" 'False) (C1 ('MetaCons "DescribeMaintenanceWindowExecutionTasks'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "filters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [MaintenanceWindowFilter])) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "windowExecutionId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse DescribeMaintenanceWindowExecutionTasks Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

newDescribeMaintenanceWindowExecutionTasks Source #

Create a value of DescribeMaintenanceWindowExecutionTasks with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:filters:DescribeMaintenanceWindowExecutionTasks', describeMaintenanceWindowExecutionTasks_filters - Optional filters used to scope down the returned tasks. The supported filter key is STATUS with the corresponding values PENDING, IN_PROGRESS, SUCCESS, FAILED, TIMED_OUT, CANCELLING, and CANCELLED.

$sel:nextToken:DescribeMaintenanceWindowExecutionTasks', describeMaintenanceWindowExecutionTasks_nextToken - The token for the next set of items to return. (You received this token from a previous call.)

$sel:maxResults:DescribeMaintenanceWindowExecutionTasks', describeMaintenanceWindowExecutionTasks_maxResults - The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

$sel:windowExecutionId:DescribeMaintenanceWindowExecutionTasks', describeMaintenanceWindowExecutionTasks_windowExecutionId - The ID of the maintenance window execution whose task executions should be retrieved.

Request Lenses

describeMaintenanceWindowExecutionTasks_filters :: Lens' DescribeMaintenanceWindowExecutionTasks (Maybe [MaintenanceWindowFilter]) Source #

Optional filters used to scope down the returned tasks. The supported filter key is STATUS with the corresponding values PENDING, IN_PROGRESS, SUCCESS, FAILED, TIMED_OUT, CANCELLING, and CANCELLED.

describeMaintenanceWindowExecutionTasks_nextToken :: Lens' DescribeMaintenanceWindowExecutionTasks (Maybe Text) Source #

The token for the next set of items to return. (You received this token from a previous call.)

describeMaintenanceWindowExecutionTasks_maxResults :: Lens' DescribeMaintenanceWindowExecutionTasks (Maybe Natural) Source #

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

describeMaintenanceWindowExecutionTasks_windowExecutionId :: Lens' DescribeMaintenanceWindowExecutionTasks Text Source #

The ID of the maintenance window execution whose task executions should be retrieved.

Destructuring the Response

data DescribeMaintenanceWindowExecutionTasksResponse Source #

Constructors

DescribeMaintenanceWindowExecutionTasksResponse' 

Fields

Instances

Instances details
Eq DescribeMaintenanceWindowExecutionTasksResponse Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

Read DescribeMaintenanceWindowExecutionTasksResponse Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

Show DescribeMaintenanceWindowExecutionTasksResponse Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

Generic DescribeMaintenanceWindowExecutionTasksResponse Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

NFData DescribeMaintenanceWindowExecutionTasksResponse Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

type Rep DescribeMaintenanceWindowExecutionTasksResponse Source # 
Instance details

Defined in Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks

type Rep DescribeMaintenanceWindowExecutionTasksResponse = D1 ('MetaData "DescribeMaintenanceWindowExecutionTasksResponse" "Amazonka.SSM.DescribeMaintenanceWindowExecutionTasks" "libZSservicesZSamazonka-ssmZSamazonka-ssm" 'False) (C1 ('MetaCons "DescribeMaintenanceWindowExecutionTasksResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "windowExecutionTaskIdentities") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [MaintenanceWindowExecutionTaskIdentity])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeMaintenanceWindowExecutionTasksResponse Source #

Create a value of DescribeMaintenanceWindowExecutionTasksResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:nextToken:DescribeMaintenanceWindowExecutionTasks', describeMaintenanceWindowExecutionTasksResponse_nextToken - The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

$sel:windowExecutionTaskIdentities:DescribeMaintenanceWindowExecutionTasksResponse', describeMaintenanceWindowExecutionTasksResponse_windowExecutionTaskIdentities - Information about the task executions.

$sel:httpStatus:DescribeMaintenanceWindowExecutionTasksResponse', describeMaintenanceWindowExecutionTasksResponse_httpStatus - The response's http status code.

Response Lenses

describeMaintenanceWindowExecutionTasksResponse_nextToken :: Lens' DescribeMaintenanceWindowExecutionTasksResponse (Maybe Text) Source #

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.