interface CfnSecurityKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnSecurityKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnSecurityKeyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnSecurityKeyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnSecurityKeyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnSecurityKeyMixinProps |
Properties for CfnSecurityKeyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-securitykey.html
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/cfn-property-mixins';
const cfnSecurityKeyMixinProps: connect.CfnSecurityKeyMixinProps = {
instanceId: 'instanceId',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | IInstance | The Amazon Resource Name (ARN) of the instance. |
| key? | string | A valid security key in PEM format. For example:. |
instanceId?
Type:
string | IInstance
(optional)
The Amazon Resource Name (ARN) of the instance.
Minimum : 1
Maximum : 100
key?
Type:
string
(optional)
A valid security key in PEM format. For example:.
"-----BEGIN PUBLIC KEY-----\ [a lot of characters] ----END PUBLIC KEY-----"
Minimum : 1
Maximum : 1024

.NET
Go
Java
Python
TypeScript