CfnSecurityKeyMixinProps
- class aws_cdk.mixins_preview.aws_connect.mixins.CfnSecurityKeyMixinProps(*, instance_id=None, key=None)
Bases:
objectProperties for CfnSecurityKeyPropsMixin.
- Parameters:
instance_id (
Optional[str]) – The Amazon Resource Name (ARN) of the instance. Minimum :1Maximum :100key (
Optional[str]) – A valid security key in PEM format. For example:."-----BEGIN PUBLIC KEY-----\ [a lot of characters] ----END PUBLIC KEY-----"Minimum :1Maximum :1024
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-securitykey.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_security_key_mixin_props = connect_mixins.CfnSecurityKeyMixinProps( instance_id="instanceId", key="key" )
Attributes
- instance_id
The Amazon Resource Name (ARN) of the instance.
Minimum :
1Maximum :
100
- key
.
"-----BEGIN PUBLIC KEY-----\ [a lot of characters] ----END PUBLIC KEY-----"Minimum :
1Maximum :
1024- See:
- Type:
A valid security key in PEM format. For example