Show / Hide Table of Contents

Class CfnServiceNetworkServiceAssociationMixinProps

Properties for CfnServiceNetworkServiceAssociationPropsMixin.

Inheritance
object
CfnServiceNetworkServiceAssociationMixinProps
Implements
ICfnServiceNetworkServiceAssociationMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.VpcLattice
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnServiceNetworkServiceAssociationMixinProps : ICfnServiceNetworkServiceAssociationMixinProps
Syntax (vb)
Public Class CfnServiceNetworkServiceAssociationMixinProps Implements ICfnServiceNetworkServiceAssociationMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.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.CfnPropertyMixins.AWS.VpcLattice;

             var cfnServiceNetworkServiceAssociationMixinProps = new CfnServiceNetworkServiceAssociationMixinProps {
                 DnsEntry = new DnsEntryProperty {
                     DomainName = "domainName",
                     HostedZoneId = "hostedZoneId"
                 },
                 ServiceIdentifier = "serviceIdentifier",
                 ServiceNetworkIdentifier = "serviceNetworkIdentifier",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnServiceNetworkServiceAssociationMixinProps()

Properties for CfnServiceNetworkServiceAssociationPropsMixin.

Properties

DnsEntry

The DNS information of the service.

ServiceIdentifier

The ID or ARN of the service.

ServiceNetworkIdentifier

The ID or ARN of the service network.

Tags

The tags for the association.

Constructors

CfnServiceNetworkServiceAssociationMixinProps()

Properties for CfnServiceNetworkServiceAssociationPropsMixin.

public CfnServiceNetworkServiceAssociationMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.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.CfnPropertyMixins.AWS.VpcLattice;

             var cfnServiceNetworkServiceAssociationMixinProps = new CfnServiceNetworkServiceAssociationMixinProps {
                 DnsEntry = new DnsEntryProperty {
                     DomainName = "domainName",
                     HostedZoneId = "hostedZoneId"
                 },
                 ServiceIdentifier = "serviceIdentifier",
                 ServiceNetworkIdentifier = "serviceNetworkIdentifier",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

DnsEntry

The DNS information of the service.

public object? DnsEntry { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-dnsentry

Type union: either IResolvable or CfnServiceNetworkServiceAssociationPropsMixin.IDnsEntryProperty

ServiceIdentifier

The ID or ARN of the service.

public string? ServiceIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-serviceidentifier

ServiceNetworkIdentifier

The ID or ARN of the service network.

public string? ServiceNetworkIdentifier { get; set; }
Property Value

string

Remarks

You must use an ARN if the resources are in different accounts.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkserviceassociation.html#cfn-vpclattice-servicenetworkserviceassociation-servicenetworkidentifier

Tags

The tags for the association.

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

ICfnTag[]

Remarks

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

Implements

ICfnServiceNetworkServiceAssociationMixinProps
Back to top Generated by DocFX