aws_sdk_databasemigration/client/
update_subscriptions_to_event_bridge.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateSubscriptionsToEventBridge`](crate::operation::update_subscriptions_to_event_bridge::builders::UpdateSubscriptionsToEventBridgeFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`force_move(bool)`](crate::operation::update_subscriptions_to_event_bridge::builders::UpdateSubscriptionsToEventBridgeFluentBuilder::force_move) / [`set_force_move(Option<bool>)`](crate::operation::update_subscriptions_to_event_bridge::builders::UpdateSubscriptionsToEventBridgeFluentBuilder::set_force_move):<br>required: **false**<br><p>When set to true, this operation migrates DMS subscriptions for Amazon SNS notifications no matter what your replication instance version is. If not set or set to false, this operation runs only when all your replication instances are from DMS version 3.4.5 or higher.</p><br>
    /// - On success, responds with [`UpdateSubscriptionsToEventBridgeOutput`](crate::operation::update_subscriptions_to_event_bridge::UpdateSubscriptionsToEventBridgeOutput) with field(s):
    ///   - [`result(Option<String>)`](crate::operation::update_subscriptions_to_event_bridge::UpdateSubscriptionsToEventBridgeOutput::result): <p>A string that indicates how many event subscriptions were migrated and how many remain to be migrated.</p>
    /// - On failure, responds with [`SdkError<UpdateSubscriptionsToEventBridgeError>`](crate::operation::update_subscriptions_to_event_bridge::UpdateSubscriptionsToEventBridgeError)
    pub fn update_subscriptions_to_event_bridge(
        &self,
    ) -> crate::operation::update_subscriptions_to_event_bridge::builders::UpdateSubscriptionsToEventBridgeFluentBuilder {
        crate::operation::update_subscriptions_to_event_bridge::builders::UpdateSubscriptionsToEventBridgeFluentBuilder::new(self.handle.clone())
    }
}