CfnHostMixinProps
- class aws_cdk.cfn_property_mixins.aws_codeconnections.CfnHostMixinProps(*, name=None, provider_endpoint=None, provider_type=None, tags=None, vpc_configuration=None)
Bases:
objectProperties for CfnHostPropsMixin.
- Parameters:
name (
Optional[str]) – The name of the host.provider_endpoint (
Optional[str]) – The endpoint of the infrastructure where your provider type is installed.provider_type (
Optional[str]) – The name of the installed provider to be associated with your connection.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags to apply to the host.vpc_configuration (
Union[IResolvable,VpcConfigurationProperty,Dict[str,Any],None]) – The VPC configuration provisioned for the host.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeconnections-host.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_codeconnections as codeconnections cfn_host_mixin_props = codeconnections.CfnHostMixinProps( name="name", provider_endpoint="providerEndpoint", provider_type="providerType", tags=[CfnTag( key="key", value="value" )], vpc_configuration=codeconnections.CfnHostPropsMixin.VpcConfigurationProperty( security_group_ids=["securityGroupIds"], subnet_ids=["subnetIds"], tls_certificate="tlsCertificate", vpc_id="vpcId" ) )
Attributes
- name
The name of the host.
- provider_endpoint
The endpoint of the infrastructure where your provider type is installed.
- provider_type
The name of the installed provider to be associated with your connection.
- tags
Tags to apply to the host.
- vpc_configuration
The VPC configuration provisioned for the host.