CfnInstanceMixinProps
- class aws_cdk.mixins_preview.aws_connect.mixins.CfnInstanceMixinProps(*, attributes=None, directory_id=None, identity_management_type=None, instance_alias=None, tags=None)
Bases:
objectProperties for CfnInstancePropsMixin.
- Parameters:
attributes (
Union[IResolvable,AttributesProperty,Dict[str,Any],None]) – A toggle for an individual feature at the instance level.directory_id (
Optional[str]) – The identifier for the directory.identity_management_type (
Optional[str]) – The identity management type.instance_alias (
Optional[str]) – The alias of instance.InstanceAliasis only required whenIdentityManagementTypeisCONNECT_MANAGEDorSAML.InstanceAliasis not required whenIdentityManagementTypeisEXISTING_DIRECTORY.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-instance.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_connect import mixins as connect_mixins cfn_instance_mixin_props = connect_mixins.CfnInstanceMixinProps( attributes=connect_mixins.CfnInstancePropsMixin.AttributesProperty( auto_resolve_best_voices=False, contactflow_logs=False, contact_lens=False, early_media=False, enhanced_chat_monitoring=False, enhanced_contact_monitoring=False, high_volume_out_bound=False, inbound_calls=False, multi_party_chat_conference=False, multi_party_conference=False, outbound_calls=False, use_custom_tts_voices=False ), directory_id="directoryId", identity_management_type="identityManagementType", instance_alias="instanceAlias", tags=[CfnTag( key="key", value="value" )] )
Attributes
- attributes
A toggle for an individual feature at the instance level.
- directory_id
The identifier for the directory.
- identity_management_type
The identity management type.
- instance_alias
The alias of instance.
InstanceAliasis only required whenIdentityManagementTypeisCONNECT_MANAGEDorSAML.InstanceAliasis not required whenIdentityManagementTypeisEXISTING_DIRECTORY.
- tags
An array of key-value pairs to apply to this resource.