Class CfnResourceConfigurationPropsMixin.ResourceConfigurationDefinitionProperty
Identifies the resource configuration in one of the following ways:.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnResourceConfigurationPropsMixin.ResourceConfigurationDefinitionProperty : CfnResourceConfigurationPropsMixin.IResourceConfigurationDefinitionProperty
Syntax (vb)
Public Class CfnResourceConfigurationPropsMixin.ResourceConfigurationDefinitionProperty Implements CfnResourceConfigurationPropsMixin.IResourceConfigurationDefinitionProperty
Remarks
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.Mixins.Preview.AWS.VpcLattice.Mixins;
var resourceConfigurationDefinitionProperty = new ResourceConfigurationDefinitionProperty {
ArnResource = "arnResource",
DnsResource = new DnsResourceProperty {
DomainName = "domainName",
IpAddressType = "ipAddressType"
},
IpResource = "ipResource"
};
Synopsis
Constructors
| ResourceConfigurationDefinitionProperty() | Identifies the resource configuration in one of the following ways:. |
Properties
| ArnResource | The Amazon Resource Name (ARN) of the resource configuration. |
| DnsResource | The DNS name of the resource configuration. |
| IpResource | The IP address of the resource configuration. |
Constructors
ResourceConfigurationDefinitionProperty()
Identifies the resource configuration in one of the following ways:.
public ResourceConfigurationDefinitionProperty()
Remarks
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.Mixins.Preview.AWS.VpcLattice.Mixins;
var resourceConfigurationDefinitionProperty = new ResourceConfigurationDefinitionProperty {
ArnResource = "arnResource",
DnsResource = new DnsResourceProperty {
DomainName = "domainName",
IpAddressType = "ipAddressType"
},
IpResource = "ipResource"
};
Properties
ArnResource
The Amazon Resource Name (ARN) of the resource configuration.
public string? ArnResource { get; set; }
Property Value
Remarks
For the ARN syntax and format, see ARN format in the AWS Identity and Access Management user guide .
DnsResource
The DNS name of the resource configuration.
public object? DnsResource { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnResourceConfigurationPropsMixin.IDnsResourceProperty
IpResource
The IP address of the resource configuration.
public string? IpResource { get; set; }