CfnVPCEConfigurationPropsMixin

class aws_cdk.mixins_preview.aws_devicefarm.mixins.CfnVPCEConfigurationPropsMixin(props, *, strategy=None)

Bases: Mixin

Creates a configuration record in Device Farm for your Amazon Virtual Private Cloud (VPC) endpoint service.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-vpceconfiguration.html

CloudformationResource:

AWS::DeviceFarm::VPCEConfiguration

Mixin:

true

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 import mixins
from aws_cdk.mixins_preview.aws_devicefarm import mixins as devicefarm_mixins

cfn_vPCEConfiguration_props_mixin = devicefarm_mixins.CfnVPCEConfigurationPropsMixin(devicefarm_mixins.CfnVPCEConfigurationMixinProps(
    service_dns_name="serviceDnsName",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    vpce_configuration_description="vpceConfigurationDescription",
    vpce_configuration_name="vpceConfigurationName",
    vpce_service_name="vpceServiceName"
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::DeviceFarm::VPCEConfiguration.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['serviceDnsName', 'tags', 'vpceConfigurationDescription', 'vpceConfigurationName', 'vpceServiceName']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental