Class CfnEmailAddressProps
Properties for defining a CfnEmailAddress
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEmailAddressProps : ICfnEmailAddressProps
Syntax (vb)
Public Class CfnEmailAddressProps Implements 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
Constructors
CfnEmailAddressProps() | Properties for defining a |
Properties
Description | The description of the email address. |
DisplayName | The display name of email address. |
EmailAddress | The email address, including the domain. |
InstanceArn | The Amazon Resource Name (ARN) of the instance. |
Tags | An array of key-value pairs to apply to this resource. |
Constructors
CfnEmailAddressProps()
Properties for defining a CfnEmailAddress
.
public CfnEmailAddressProps()
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"
} }
};
Properties
Description
The description of the email address.
public string? Description { get; set; }
Property Value
Remarks
DisplayName
The display name of email address.
public string? DisplayName { get; set; }
Property Value
Remarks
EmailAddress
The email address, including the domain.
public string EmailAddress { get; set; }
Property Value
Remarks
InstanceArn
The Amazon Resource Name (ARN) of the instance.
public string InstanceArn { get; set; }
Property Value
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]