CfnSecurityKeyProps
- class aws_cdk.aws_connect.CfnSecurityKeyProps(*, instance_id, key)
Bases:
objectProperties for defining a
CfnSecurityKey.- Parameters:
instance_id (
str) – The Amazon Resource Name (ARN) of the instance. Minimum :1Maximum :100key (
str) – A valid security key in PEM format. Minimum :1Maximum :1024
- Link:
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. import aws_cdk.aws_connect as connect cfn_security_key_props = connect.CfnSecurityKeyProps( instance_id="instanceId", key="key" )
Attributes
- instance_id
The Amazon Resource Name (ARN) of the instance.
Minimum :
1Maximum :
100
- key
A valid security key in PEM format.
Minimum :
1Maximum :
1024