Class CfnProfileProps
Properties for defining a CfnProfile.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Route53Profiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnProfileProps : ICfnProfileProps
Syntax (vb)
Public Class CfnProfileProps Implements ICfnProfileProps
Remarks
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.Route53Profiles;
var cfnProfileProps = new CfnProfileProps {
Name = "name",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnProfileProps() | Properties for defining a |
Properties
| Name | Name of the Profile. |
| Tags | A list of the tag keys and values that you want to associate with the profile. |
Constructors
CfnProfileProps()
Properties for defining a CfnProfile.
public CfnProfileProps()
Remarks
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.Route53Profiles;
var cfnProfileProps = new CfnProfileProps {
Name = "name",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
Name
Name of the Profile.
public string Name { get; set; }
Property Value
Remarks
Tags
A list of the tag keys and values that you want to associate with the profile.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]