ServiceProfileReference
- class aws_cdk.interfaces.aws_iotwireless.ServiceProfileReference(*, service_profile_arn, service_profile_id)
Bases:
objectA reference to a ServiceProfile resource.
- Parameters:
service_profile_arn (
str) – The ARN of the ServiceProfile resource.service_profile_id (
str) – The Id of the ServiceProfile 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_iotwireless as interfaces_iotwireless service_profile_reference = interfaces_iotwireless.ServiceProfileReference( service_profile_arn="serviceProfileArn", service_profile_id="serviceProfileId" )
Attributes
- service_profile_arn
The ARN of the ServiceProfile resource.
- service_profile_id
The Id of the ServiceProfile resource.