Show / Hide Table of Contents

Class CfnDomainNameAccessAssociationProps

Properties for defining a CfnDomainNameAccessAssociation.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.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.APIGateway;

             var cfnDomainNameAccessAssociationProps = new CfnDomainNameAccessAssociationProps {
                 AccessAssociationSource = "accessAssociationSource",
                 AccessAssociationSourceType = "accessAssociationSourceType",
                 DomainNameArn = "domainNameArn",

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

Synopsis

Constructors

CfnDomainNameAccessAssociationProps()

Properties for defining a CfnDomainNameAccessAssociation.

Properties

AccessAssociationSource

The identifier of the domain name access association source.

AccessAssociationSourceType

The type of the domain name access association source.

DomainNameArn

The ARN of the domain name.

Tags

The collection of tags.

Constructors

CfnDomainNameAccessAssociationProps()

Properties for defining a CfnDomainNameAccessAssociation.

public CfnDomainNameAccessAssociationProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.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.APIGateway;

             var cfnDomainNameAccessAssociationProps = new CfnDomainNameAccessAssociationProps {
                 AccessAssociationSource = "accessAssociationSource",
                 AccessAssociationSourceType = "accessAssociationSourceType",
                 DomainNameArn = "domainNameArn",

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

Properties

AccessAssociationSource

The identifier of the domain name access association source.

public string AccessAssociationSource { get; set; }
Property Value

string

Remarks

For a VPCE , the value is the VPC endpoint ID.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html#cfn-apigateway-domainnameaccessassociation-accessassociationsource

AccessAssociationSourceType

The type of the domain name access association source.

public string AccessAssociationSourceType { get; set; }
Property Value

string

Remarks

Only VPCE is currently supported.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html#cfn-apigateway-domainnameaccessassociation-accessassociationsourcetype

DomainNameArn

The ARN of the domain name.

public string DomainNameArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html#cfn-apigateway-domainnameaccessassociation-domainnamearn

Tags

The collection of tags.

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

ICfnTag[]

Remarks

Each tag element is associated with a given resource.

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

Implements

ICfnDomainNameAccessAssociationProps
Back to top Generated by DocFX