interface SecurityKeyReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.SecurityKeyReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#SecurityKeyReference |
Java | software.amazon.awscdk.interfaces.connect.SecurityKeyReference |
Python | aws_cdk.interfaces.aws_connect.SecurityKeyReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » SecurityKeyReference |
A reference to a SecurityKey resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as interfaces_aws_connect } from 'aws-cdk-lib/interfaces';
const securityKeyReference: interfaces_aws_connect.SecurityKeyReference = {
associationId: 'associationId',
instanceId: 'instanceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| association | string | The AssociationId of the SecurityKey resource. |
| instance | string | The InstanceId of the SecurityKey resource. |
associationId
Type:
string
The AssociationId of the SecurityKey resource.
instanceId
Type:
string
The InstanceId of the SecurityKey resource.

.NET
Go
Java
Python
TypeScript