interface CfnContactMethodMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lightsail.CfnContactMethodMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslightsail#CfnContactMethodMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lightsail.CfnContactMethodMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lightsail.CfnContactMethodMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lightsail » CfnContactMethodMixinProps |
Properties for CfnContactMethodPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lightsail as lightsail } from '@aws-cdk/cfn-property-mixins';
const cfnContactMethodMixinProps: lightsail.CfnContactMethodMixinProps = {
contactEndpoint: 'contactEndpoint',
protocol: 'protocol',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The destination of the contact method, such as an email address or a mobile phone number. |
| protocol? | string | The protocol of the contact method, such as Email or SMS (text messaging). |
contactEndpoint?
Type:
string
(optional)
The destination of the contact method, such as an email address or a mobile phone number.
protocol?
Type:
string
(optional)
The protocol of the contact method, such as Email or SMS (text messaging).

.NET
Go
Java
Python
TypeScript