aws-cdk-lib.aws_connect.CfnSecurityKeyProps

interface CfnSecurityKeyProps

LanguageType name
.NETAmazon.CDK.AWS.Connect.CfnSecurityKeyProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnSecurityKeyProps
Javasoftware.amazon.awscdk.services.connect.CfnSecurityKeyProps
Pythonaws_cdk.aws_connect.CfnSecurityKeyProps
TypeScript aws-cdk-lib » aws_connect » CfnSecurityKeyProps

Properties for defining a CfnSecurityKey.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnSecurityKeyProps: connect.CfnSecurityKeyProps = {
  instanceId: 'instanceId',
  key: 'key',
};

Properties

NameTypeDescription
instanceIdstringThe Amazon Resource Name (ARN) of the instance.
keystringA valid security key in PEM format. For example:.

instanceId

Type: string

The Amazon Resource Name (ARN) of the instance.

Minimum : 1

Maximum : 100


key

Type: string

A valid security key in PEM format. For example:.

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

Minimum : 1

Maximum : 1024