CfnSecurityKeyMixinProps
- class aws_cdk.cfn_property_mixins.aws_connect.CfnSecurityKeyMixinProps(*, instance_id=None, key=None)
Bases:
objectProperties for CfnSecurityKeyPropsMixin.
- Parameters:
instance_id (
Union[str,IInstanceRef,None]) – 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.cfn_property_mixins import aws_connect as connect cfn_security_key_mixin_props = connect.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