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. For example:. "-----BEGIN PUBLIC KEY-----\ [a lot of characters] ----END PUBLIC KEY-----" Minimum : 1 Maximum : 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 import 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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-securitykey.html#cfn-connect-securitykey-instanceid

key

.

"-----BEGIN PUBLIC KEY-----\ [a lot of characters] ----END PUBLIC KEY-----"

Minimum : 1

Maximum : 1024

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-securitykey.html#cfn-connect-securitykey-key

Type:

A valid security key in PEM format. For example