SecurityProfileReference
- class aws_cdk.interfaces.aws_iot.SecurityProfileReference(*, security_profile_arn, security_profile_name)
Bases:
objectA reference to a SecurityProfile resource.
- Parameters:
security_profile_arn (
str) – The ARN of the SecurityProfile resource.security_profile_name (
str) – The SecurityProfileName of the SecurityProfile resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_iot as interfaces_aws_iot security_profile_reference = interfaces_aws_iot.SecurityProfileReference( security_profile_arn="securityProfileArn", security_profile_name="securityProfileName" )
Attributes
- security_profile_arn
The ARN of the SecurityProfile resource.
- security_profile_name
The SecurityProfileName of the SecurityProfile resource.