interface SecurityProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.SecurityProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#SecurityProfileReference |
Java | software.amazon.awscdk.services.iot.SecurityProfileReference |
Python | aws_cdk.aws_iot.SecurityProfileReference |
TypeScript | aws-cdk-lib » aws_iot » 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_iot as iot } from 'aws-cdk-lib';
const securityProfileReference: iot.SecurityProfileReference = {
securityProfileArn: 'securityProfileArn',
securityProfileName: 'securityProfileName',
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string | The ARN of the SecurityProfile resource. |
| security | string | The SecurityProfileName of the SecurityProfile resource. |
securityProfileArn
Type:
string
The ARN of the SecurityProfile resource.
securityProfileName
Type:
string
The SecurityProfileName of the SecurityProfile resource.

.NET
Go
Java
Python
TypeScript