Show / Hide Table of Contents

Class CfnTargetDomainProps

Properties for defining a CfnTargetDomain.

Inheritance
object
CfnTargetDomainProps
Implements
ICfnTargetDomainProps
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.SecurityAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTargetDomainProps : ICfnTargetDomainProps
Syntax (vb)
Public Class CfnTargetDomainProps Implements ICfnTargetDomainProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-targetdomain.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.SecurityAgent;

             var cfnTargetDomainProps = new CfnTargetDomainProps {
                 TargetDomainName = "targetDomainName",
                 VerificationMethod = "verificationMethod",

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

Synopsis

Constructors

CfnTargetDomainProps()

Properties for defining a CfnTargetDomain.

Properties

Tags

Tags for the target domain.

TargetDomainName

Domain name of the target domain.

VerificationMethod

Verification method for the target domain.

Constructors

CfnTargetDomainProps()

Properties for defining a CfnTargetDomain.

public CfnTargetDomainProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-targetdomain.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.SecurityAgent;

             var cfnTargetDomainProps = new CfnTargetDomainProps {
                 TargetDomainName = "targetDomainName",
                 VerificationMethod = "verificationMethod",

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

Properties

Tags

Tags for the target domain.

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

ICfnTag[]

Remarks

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

TargetDomainName

Domain name of the target domain.

public string TargetDomainName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-targetdomain.html#cfn-securityagent-targetdomain-targetdomainname

VerificationMethod

Verification method for the target domain.

public string VerificationMethod { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityagent-targetdomain.html#cfn-securityagent-targetdomain-verificationmethod

Implements

ICfnTargetDomainProps
Back to top Generated by DocFX