pub struct AssociateProactiveEngagementDetails { /* private fields */ }
Expand description
Fluent builder constructing a request to AssociateProactiveEngagementDetails
.
Initializes proactive engagement and sets the list of contacts for the Shield Response Team (SRT) to use. You must provide at least one phone number in the emergency contact list.
After you have initialized proactive engagement using this call, to disable or enable proactive engagement, use the calls DisableProactiveEngagement
and EnableProactiveEngagement
.
This call defines the list of email addresses and phone numbers that the SRT can use to contact you for escalations to the SRT and to initiate proactive customer support.
The contacts that you provide in the request replace any contacts that were already defined. If you already have contacts defined and want to use them, retrieve the list using DescribeEmergencyContactSettings
and then provide it to this call.
Implementations§
source§impl AssociateProactiveEngagementDetails
impl AssociateProactiveEngagementDetails
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<AssociateProactiveEngagementDetails, AwsResponseRetryClassifier>, SdkError<AssociateProactiveEngagementDetailsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<AssociateProactiveEngagementDetails, AwsResponseRetryClassifier>, SdkError<AssociateProactiveEngagementDetailsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<AssociateProactiveEngagementDetailsOutput, SdkError<AssociateProactiveEngagementDetailsError>>
pub async fn send(
self
) -> Result<AssociateProactiveEngagementDetailsOutput, SdkError<AssociateProactiveEngagementDetailsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn emergency_contact_list(self, input: EmergencyContact) -> Self
pub fn emergency_contact_list(self, input: EmergencyContact) -> Self
Appends an item to EmergencyContactList
.
To override the contents of this collection use set_emergency_contact_list
.
A list of email addresses and phone numbers that the Shield Response Team (SRT) can use to contact you for escalations to the SRT and to initiate proactive customer support.
To enable proactive engagement, the contact list must include at least one phone number.
The contacts that you provide here replace any contacts that were already defined. If you already have contacts defined and want to use them, retrieve the list using DescribeEmergencyContactSettings
and then provide it here.
sourcepub fn set_emergency_contact_list(
self,
input: Option<Vec<EmergencyContact>>
) -> Self
pub fn set_emergency_contact_list(
self,
input: Option<Vec<EmergencyContact>>
) -> Self
A list of email addresses and phone numbers that the Shield Response Team (SRT) can use to contact you for escalations to the SRT and to initiate proactive customer support.
To enable proactive engagement, the contact list must include at least one phone number.
The contacts that you provide here replace any contacts that were already defined. If you already have contacts defined and want to use them, retrieve the list using DescribeEmergencyContactSettings
and then provide it here.
Trait Implementations§
source§impl Clone for AssociateProactiveEngagementDetails
impl Clone for AssociateProactiveEngagementDetails
source§fn clone(&self) -> AssociateProactiveEngagementDetails
fn clone(&self) -> AssociateProactiveEngagementDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more