Show / Hide Table of Contents

Interface ICfnDomainNameAccessAssociationProps

Properties for defining a CfnDomainNameAccessAssociation.

Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDomainNameAccessAssociationProps
Syntax (vb)
Public Interface 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

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.

Properties

AccessAssociationSource

The identifier of the domain name access association source.

string AccessAssociationSource { get; }
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.

string AccessAssociationSourceType { get; }
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.

string DomainNameArn { get; }
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.

ICfnTag[]? Tags { get; }
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

Back to top Generated by DocFX