interface EmergencyContactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Shield.Mixins.CfnProactiveEngagementPropsMixin.EmergencyContactProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsshield/mixins#CfnProactiveEngagementPropsMixin_EmergencyContactProperty |
Java | software.amazon.awscdk.mixins.preview.services.shield.mixins.CfnProactiveEngagementPropsMixin.EmergencyContactProperty |
Python | aws_cdk.mixins_preview.aws_shield.mixins.CfnProactiveEngagementPropsMixin.EmergencyContactProperty |
TypeScript | @aws-cdk/mixins-preview » aws_shield » mixins » CfnProactiveEngagementPropsMixin » EmergencyContactProperty |
Contact information that the SRT can use to contact you if you have proactive engagement enabled, for escalations to the SRT and to initiate proactive customer support.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as shield_mixins } from '@aws-cdk/mixins-preview/aws-shield';
const emergencyContactProperty: shield_mixins.CfnProactiveEngagementPropsMixin.EmergencyContactProperty = {
contactNotes: 'contactNotes',
emailAddress: 'emailAddress',
phoneNumber: 'phoneNumber',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | Additional notes regarding the contact. |
| email | string | The email address for the contact. |
| phone | string | The phone number for the contact. |
contactNotes?
Type:
string
(optional)
Additional notes regarding the contact.
emailAddress?
Type:
string
(optional)
The email address for the contact.
phoneNumber?
Type:
string
(optional)
The phone number for the contact.

.NET
Go
Java
Python
TypeScript