Show / Hide Table of Contents

Interface ICfnProfileProps

Properties for defining a CfnProfile.

Namespace: Amazon.CDK.AWS.Route53Profiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnProfileProps
Syntax (vb)
Public Interface ICfnProfileProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.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.Route53Profiles;

             var cfnProfileProps = new CfnProfileProps {
                 Name = "name",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Name

Name of the Profile.

Tags

A list of the tag keys and values that you want to associate with the profile.

Properties

Name

Name of the Profile.

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html#cfn-route53profiles-profile-name

Tags

A list of the tag keys and values that you want to associate with the profile.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html#cfn-route53profiles-profile-tags

Back to top Generated by DocFX