interface SecurityProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.SecurityProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#SecurityProfileReference |
Java | software.amazon.awscdk.interfaces.connect.SecurityProfileReference |
Python | aws_cdk.interfaces.aws_connect.SecurityProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » SecurityProfileReference |
A reference to a SecurityProfile 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 securityProfileReference: interfaces_aws_connect.SecurityProfileReference = {
securityProfileArn: 'securityProfileArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string | The SecurityProfileArn of the SecurityProfile resource. |
securityProfileArn
Type:
string
The SecurityProfileArn of the SecurityProfile resource.

.NET
Go
Java
Python
TypeScript