CapabilityReference
- class aws_cdk.aws_b2bi.CapabilityReference(*, capability_arn, capability_id)
Bases:
object
A reference to a Capability resource.
- Parameters:
capability_arn (
str
) – The ARN of the Capability resource.capability_id (
str
) – The CapabilityId of the Capability 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_b2bi as b2bi capability_reference = b2bi.CapabilityReference( capability_arn="capabilityArn", capability_id="capabilityId" )
Attributes
- capability_arn
The ARN of the Capability resource.
- capability_id
The CapabilityId of the Capability resource.