CfnResourceConfigurationMixinProps

class aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnResourceConfigurationMixinProps(*, allow_association_to_sharable_service_network=None, custom_domain_name=None, domain_verification_id=None, group_domain=None, name=None, port_ranges=None, protocol_type=None, resource_configuration_auth_type=None, resource_configuration_definition=None, resource_configuration_group_id=None, resource_configuration_type=None, resource_gateway_id=None, tags=None)

Bases: object

Properties for CfnResourceConfigurationPropsMixin.

Parameters:
  • allow_association_to_sharable_service_network (Union[bool, IResolvable, None]) – Specifies whether the resource configuration can be associated with a sharable service network.

  • custom_domain_name (Optional[str]) – The custom domain name.

  • domain_verification_id (Optional[str]) – The domain verification ID.

  • group_domain (Optional[str]) – (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain.

  • name (Optional[str]) – The name of the resource configuration.

  • port_ranges (Optional[Sequence[str]]) – (SINGLE, GROUP, CHILD) The TCP port ranges that a consumer can use to access a resource configuration (for example: 1-65535). You can separate port ranges using commas (for example: 1,2,22-30).

  • protocol_type (Optional[str]) – (SINGLE, GROUP) The protocol accepted by the resource configuration.

  • resource_configuration_auth_type (Optional[str]) – The auth type for the resource configuration.

  • resource_configuration_definition (Union[IResolvable, ResourceConfigurationDefinitionProperty, Dict[str, Any], None]) – Identifies the resource configuration in one of the following ways:. - Amazon Resource Name (ARN) - Supported resource-types that are provisioned by AWS services, such as RDS databases, can be identified by their ARN. - Domain name - Any domain name that is publicly resolvable. - IP address - For IPv4 and IPv6, only IP addresses in the VPC are supported.

  • resource_configuration_group_id (Optional[str]) – The ID of the group resource configuration.

  • resource_configuration_type (Optional[str]) – The type of resource configuration. A resource configuration can be one of the following types:. - SINGLE - A single resource. - GROUP - A group of resources. You must create a group resource configuration before you create a child resource configuration. - CHILD - A single resource that is part of a group resource configuration. - ARN - An AWS resource.

  • resource_gateway_id (Optional[str]) – The ID of the resource gateway.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the resource configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_vpclattice import mixins as vpclattice_mixins

cfn_resource_configuration_mixin_props = vpclattice_mixins.CfnResourceConfigurationMixinProps(
    allow_association_to_sharable_service_network=False,
    custom_domain_name="customDomainName",
    domain_verification_id="domainVerificationId",
    group_domain="groupDomain",
    name="name",
    port_ranges=["portRanges"],
    protocol_type="protocolType",
    resource_configuration_auth_type="resourceConfigurationAuthType",
    resource_configuration_definition=vpclattice_mixins.CfnResourceConfigurationPropsMixin.ResourceConfigurationDefinitionProperty(
        arn_resource="arnResource",
        dns_resource=vpclattice_mixins.CfnResourceConfigurationPropsMixin.DnsResourceProperty(
            domain_name="domainName",
            ip_address_type="ipAddressType"
        ),
        ip_resource="ipResource"
    ),
    resource_configuration_group_id="resourceConfigurationGroupId",
    resource_configuration_type="resourceConfigurationType",
    resource_gateway_id="resourceGatewayId",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

allow_association_to_sharable_service_network

Specifies whether the resource configuration can be associated with a sharable service network.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-allowassociationtosharableservicenetwork

custom_domain_name

The custom domain name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-customdomainname

domain_verification_id

The domain verification ID.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-domainverificationid

group_domain

(GROUP) The group domain for a group resource configuration.

Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-groupdomain

name

The name of the resource configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-name

port_ranges

1-65535).

You can separate port ranges using commas (for example: 1,2,22-30).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-portranges

Type:

(SINGLE, GROUP, CHILD) The TCP port ranges that a consumer can use to access a resource configuration (for example

protocol_type

(SINGLE, GROUP) The protocol accepted by the resource configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-protocoltype

resource_configuration_auth_type

The auth type for the resource configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-resourceconfigurationauthtype

resource_configuration_definition

.

  • Amazon Resource Name (ARN) - Supported resource-types that are provisioned by AWS services, such as RDS databases, can be identified by their ARN.

  • Domain name - Any domain name that is publicly resolvable.

  • IP address - For IPv4 and IPv6, only IP addresses in the VPC are supported.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-resourceconfigurationdefinition

Type:

Identifies the resource configuration in one of the following ways

resource_configuration_group_id

The ID of the group resource configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-resourceconfigurationgroupid

resource_configuration_type

.

  • SINGLE - A single resource.

  • GROUP - A group of resources. You must create a group resource configuration before you create a child resource configuration.

  • CHILD - A single resource that is part of a group resource configuration.

  • ARN - An AWS resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-resourceconfigurationtype

Type:

The type of resource configuration. A resource configuration can be one of the following types

resource_gateway_id

The ID of the resource gateway.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-resourceconfiguration.html#cfn-vpclattice-resourceconfiguration-resourcegatewayid

tags

The tags for the resource configuration.

See:

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