Show / Hide Table of Contents

Class CfnProfileProps

Properties for defining a CfnProfile.

Inheritance
object
CfnProfileProps
Implements
ICfnProfileProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Route53Profiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnProfileProps : ICfnProfileProps
Syntax (vb)
Public Class CfnProfileProps Implements 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

Constructors

CfnProfileProps()

Properties for defining a CfnProfile.

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

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"
                 } }
             };

Properties

Name

Name of the Profile.

public string Name { get; set; }
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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnProfileProps
Back to top Generated by DocFX