libZSservicesZSamazonka-dmsZSamazonka-dms
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.DMS.DescribeReplicationTasks

Description

Returns information about replication tasks for your account in the current region.

This operation returns paginated results.

Synopsis

Creating a Request

data DescribeReplicationTasks Source #

See: newDescribeReplicationTasks smart constructor.

Constructors

DescribeReplicationTasks' 

Fields

  • filters :: Maybe [Filter]

    Filters applied to replication tasks.

    Valid filter names: replication-task-arn | replication-task-id | migration-type | endpoint-arn | replication-instance-arn

  • withoutSettings :: Maybe Bool

    An option to set to avoid returning information about settings. Use this to reduce overhead when setting information is too large. To use this option, choose true; otherwise, choose false (the default).

  • marker :: Maybe Text

    An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

  • maxRecords :: Maybe Int

    The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.

    Default: 100

    Constraints: Minimum 20, maximum 100.

Instances

Instances details
Eq DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Read DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Show DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Generic DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Associated Types

type Rep DescribeReplicationTasks :: Type -> Type #

NFData DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Hashable DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

ToJSON DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

AWSPager DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

AWSRequest DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

ToHeaders DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

ToPath DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

ToQuery DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

type Rep DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

type Rep DescribeReplicationTasks = D1 ('MetaData "DescribeReplicationTasks" "Amazonka.DMS.DescribeReplicationTasks" "libZSservicesZSamazonka-dmsZSamazonka-dms" 'False) (C1 ('MetaCons "DescribeReplicationTasks'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "filters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Filter])) :*: S1 ('MetaSel ('Just "withoutSettings") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxRecords") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))))
type AWSResponse DescribeReplicationTasks Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

newDescribeReplicationTasks :: DescribeReplicationTasks Source #

Create a value of DescribeReplicationTasks 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:DescribeReplicationTasks', describeReplicationTasks_filters - Filters applied to replication tasks.

Valid filter names: replication-task-arn | replication-task-id | migration-type | endpoint-arn | replication-instance-arn

$sel:withoutSettings:DescribeReplicationTasks', describeReplicationTasks_withoutSettings - An option to set to avoid returning information about settings. Use this to reduce overhead when setting information is too large. To use this option, choose true; otherwise, choose false (the default).

$sel:marker:DescribeReplicationTasks', describeReplicationTasks_marker - An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

$sel:maxRecords:DescribeReplicationTasks', describeReplicationTasks_maxRecords - The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

Request Lenses

describeReplicationTasks_filters :: Lens' DescribeReplicationTasks (Maybe [Filter]) Source #

Filters applied to replication tasks.

Valid filter names: replication-task-arn | replication-task-id | migration-type | endpoint-arn | replication-instance-arn

describeReplicationTasks_withoutSettings :: Lens' DescribeReplicationTasks (Maybe Bool) Source #

An option to set to avoid returning information about settings. Use this to reduce overhead when setting information is too large. To use this option, choose true; otherwise, choose false (the default).

describeReplicationTasks_marker :: Lens' DescribeReplicationTasks (Maybe Text) Source #

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

describeReplicationTasks_maxRecords :: Lens' DescribeReplicationTasks (Maybe Int) Source #

The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

Destructuring the Response

data DescribeReplicationTasksResponse Source #

See: newDescribeReplicationTasksResponse smart constructor.

Constructors

DescribeReplicationTasksResponse' 

Fields

  • replicationTasks :: Maybe [ReplicationTask]

    A description of the replication tasks.

  • marker :: Maybe Text

    An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq DescribeReplicationTasksResponse Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Read DescribeReplicationTasksResponse Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Show DescribeReplicationTasksResponse Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Generic DescribeReplicationTasksResponse Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

Associated Types

type Rep DescribeReplicationTasksResponse :: Type -> Type #

NFData DescribeReplicationTasksResponse Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

type Rep DescribeReplicationTasksResponse Source # 
Instance details

Defined in Amazonka.DMS.DescribeReplicationTasks

type Rep DescribeReplicationTasksResponse = D1 ('MetaData "DescribeReplicationTasksResponse" "Amazonka.DMS.DescribeReplicationTasks" "libZSservicesZSamazonka-dmsZSamazonka-dms" 'False) (C1 ('MetaCons "DescribeReplicationTasksResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "replicationTasks") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ReplicationTask])) :*: (S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeReplicationTasksResponse Source #

Create a value of DescribeReplicationTasksResponse 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:replicationTasks:DescribeReplicationTasksResponse', describeReplicationTasksResponse_replicationTasks - A description of the replication tasks.

$sel:marker:DescribeReplicationTasks', describeReplicationTasksResponse_marker - An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

$sel:httpStatus:DescribeReplicationTasksResponse', describeReplicationTasksResponse_httpStatus - The response's http status code.

Response Lenses

describeReplicationTasksResponse_marker :: Lens' DescribeReplicationTasksResponse (Maybe Text) Source #

An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.