Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Creates an DMS event notification subscription.
You can specify the type of source (SourceType
) you want to be
notified of, provide a list of DMS source IDs (SourceIds
) that
triggers the events, and provide a list of event categories
(EventCategories
) for events you want to be notified of. If you
specify both the SourceType
and SourceIds
, such as
SourceType = replication-instance
and
SourceIdentifier = my-replinstance
, you will be notified of all the
replication instance events for the specified source. If you specify a
SourceType
but don't specify a SourceIdentifier
, you receive notice
of the events for that source type for all your DMS sources. If you
don't specify either SourceType
nor SourceIdentifier
, you will be
notified of events generated from all DMS sources belonging to your
customer account.
For more information about DMS events, see Working with Events and Notifications in the Database Migration Service User Guide.
Synopsis
- data CreateEventSubscription = CreateEventSubscription' {
- enabled :: Maybe Bool
- sourceType :: Maybe Text
- eventCategories :: Maybe [Text]
- sourceIds :: Maybe [Text]
- tags :: Maybe [Tag]
- subscriptionName :: Text
- snsTopicArn :: Text
- newCreateEventSubscription :: Text -> Text -> CreateEventSubscription
- createEventSubscription_enabled :: Lens' CreateEventSubscription (Maybe Bool)
- createEventSubscription_sourceType :: Lens' CreateEventSubscription (Maybe Text)
- createEventSubscription_eventCategories :: Lens' CreateEventSubscription (Maybe [Text])
- createEventSubscription_sourceIds :: Lens' CreateEventSubscription (Maybe [Text])
- createEventSubscription_tags :: Lens' CreateEventSubscription (Maybe [Tag])
- createEventSubscription_subscriptionName :: Lens' CreateEventSubscription Text
- createEventSubscription_snsTopicArn :: Lens' CreateEventSubscription Text
- data CreateEventSubscriptionResponse = CreateEventSubscriptionResponse' {}
- newCreateEventSubscriptionResponse :: Int -> CreateEventSubscriptionResponse
- createEventSubscriptionResponse_eventSubscription :: Lens' CreateEventSubscriptionResponse (Maybe EventSubscription)
- createEventSubscriptionResponse_httpStatus :: Lens' CreateEventSubscriptionResponse Int
Creating a Request
data CreateEventSubscription Source #
See: newCreateEventSubscription
smart constructor.
CreateEventSubscription' | |
|
Instances
newCreateEventSubscription Source #
:: Text | |
-> Text | |
-> CreateEventSubscription |
Create a value of CreateEventSubscription
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:enabled:CreateEventSubscription'
, createEventSubscription_enabled
- A Boolean value; set to true
to activate the subscription, or set to
false
to create the subscription but not activate it.
$sel:sourceType:CreateEventSubscription'
, createEventSubscription_sourceType
- The type of DMS resource that generates the events. For example, if you
want to be notified of events generated by a replication instance, you
set this parameter to replication-instance
. If this value isn't
specified, all events are returned.
Valid values: replication-instance
| replication-task
$sel:eventCategories:CreateEventSubscription'
, createEventSubscription_eventCategories
- A list of event categories for a source type that you want to subscribe
to. For more information, see
Working with Events and Notifications
in the Database Migration Service User Guide.
$sel:sourceIds:CreateEventSubscription'
, createEventSubscription_sourceIds
- A list of identifiers for which DMS provides notification events.
If you don't specify a value, notifications are provided for all sources.
If you specify multiple values, they must be of the same type. For example, if you specify a database instance ID, then all of the other values must be database instance IDs.
$sel:tags:CreateEventSubscription'
, createEventSubscription_tags
- One or more tags to be assigned to the event subscription.
$sel:subscriptionName:CreateEventSubscription'
, createEventSubscription_subscriptionName
- The name of the DMS event notification subscription. This name must be
less than 255 characters.
$sel:snsTopicArn:CreateEventSubscription'
, createEventSubscription_snsTopicArn
- The Amazon Resource Name (ARN) of the Amazon SNS topic created for event
notification. The ARN is created by Amazon SNS when you create a topic
and subscribe to it.
Request Lenses
createEventSubscription_enabled :: Lens' CreateEventSubscription (Maybe Bool) Source #
A Boolean value; set to true
to activate the subscription, or set to
false
to create the subscription but not activate it.
createEventSubscription_sourceType :: Lens' CreateEventSubscription (Maybe Text) Source #
The type of DMS resource that generates the events. For example, if you
want to be notified of events generated by a replication instance, you
set this parameter to replication-instance
. If this value isn't
specified, all events are returned.
Valid values: replication-instance
| replication-task
createEventSubscription_eventCategories :: Lens' CreateEventSubscription (Maybe [Text]) Source #
A list of event categories for a source type that you want to subscribe to. For more information, see Working with Events and Notifications in the Database Migration Service User Guide.
createEventSubscription_sourceIds :: Lens' CreateEventSubscription (Maybe [Text]) Source #
A list of identifiers for which DMS provides notification events.
If you don't specify a value, notifications are provided for all sources.
If you specify multiple values, they must be of the same type. For example, if you specify a database instance ID, then all of the other values must be database instance IDs.
createEventSubscription_tags :: Lens' CreateEventSubscription (Maybe [Tag]) Source #
One or more tags to be assigned to the event subscription.
createEventSubscription_subscriptionName :: Lens' CreateEventSubscription Text Source #
The name of the DMS event notification subscription. This name must be less than 255 characters.
createEventSubscription_snsTopicArn :: Lens' CreateEventSubscription Text Source #
The Amazon Resource Name (ARN) of the Amazon SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
Destructuring the Response
data CreateEventSubscriptionResponse Source #
See: newCreateEventSubscriptionResponse
smart constructor.
CreateEventSubscriptionResponse' | |
|
Instances
Eq CreateEventSubscriptionResponse Source # | |
Read CreateEventSubscriptionResponse Source # | |
Show CreateEventSubscriptionResponse Source # | |
Defined in Amazonka.DMS.CreateEventSubscription | |
Generic CreateEventSubscriptionResponse Source # | |
NFData CreateEventSubscriptionResponse Source # | |
Defined in Amazonka.DMS.CreateEventSubscription rnf :: CreateEventSubscriptionResponse -> () # | |
type Rep CreateEventSubscriptionResponse Source # | |
Defined in Amazonka.DMS.CreateEventSubscription type Rep CreateEventSubscriptionResponse = D1 ('MetaData "CreateEventSubscriptionResponse" "Amazonka.DMS.CreateEventSubscription" "libZSservicesZSamazonka-dmsZSamazonka-dms" 'False) (C1 ('MetaCons "CreateEventSubscriptionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "eventSubscription") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe EventSubscription)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))) |
newCreateEventSubscriptionResponse Source #
Create a value of CreateEventSubscriptionResponse
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:eventSubscription:CreateEventSubscriptionResponse'
, createEventSubscriptionResponse_eventSubscription
- The event subscription that was created.
$sel:httpStatus:CreateEventSubscriptionResponse'
, createEventSubscriptionResponse_httpStatus
- The response's http status code.
Response Lenses
createEventSubscriptionResponse_eventSubscription :: Lens' CreateEventSubscriptionResponse (Maybe EventSubscription) Source #
The event subscription that was created.
createEventSubscriptionResponse_httpStatus :: Lens' CreateEventSubscriptionResponse Int Source #
The response's http status code.