CfnSecurityKeyProps
- class aws_cdk.aws_connect.CfnSecurityKeyProps(*, instance_id, key)
Bases:
object
Properties for defining a
CfnSecurityKey
.- Parameters:
instance_id (
str
) – The Amazon Resource Name (ARN) of the instance. Minimum :1
Maximum :100
key (
str
) – A valid security key in PEM format. Minimum :1
Maximum :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 :
1
Maximum :
100
- key
A valid security key in PEM format.
Minimum :
1
Maximum :
1024