SecurityProfileReference
- class aws_cdk.aws_iot.SecurityProfileReference(*, security_profile_arn, security_profile_name)
Bases:
object
A 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 import aws_iot as iot security_profile_reference = 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.