Interface ICfnEmailAddressProps
Properties for defining a CfnEmailAddress
.
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnEmailAddressProps
Syntax (vb)
Public Interface ICfnEmailAddressProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-emailaddress.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var cfnEmailAddressProps = new CfnEmailAddressProps {
EmailAddress = "emailAddress",
InstanceArn = "instanceArn",
// the properties below are optional
Description = "description",
DisplayName = "displayName",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Description | The description of the email address. |
Display |
The display name of email address. |
Email |
The email address with the instance, in [^\s@]+@[^\s@]+.[^\s@]+ format. |
Instance |
The Amazon Resource Name (ARN) of the instance. |
Tags | An array of key-value pairs to apply to this resource. |
Properties
Description
The description of the email address.
virtual string Description { get; }
Property Value
System.
Remarks
DisplayName
The display name of email address.
virtual string DisplayName { get; }
Property Value
System.
Remarks
EmailAddress
The email address with the instance, in [^\s@]+@[^\s@]+.[^\s@]+ format.
string EmailAddress { get; }
Property Value
System.
Remarks
InstanceArn
The Amazon Resource Name (ARN) of the instance.
string InstanceArn { get; }
Property Value
System.
Remarks
Tags
An array of key-value pairs to apply to this resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn