AssociationReference
- class aws_cdk.interfaces.aws_devopsagent.AssociationReference(*, agent_space_id, association_id)
Bases:
objectA reference to a Association resource.
- Parameters:
agent_space_id (
str) – The AgentSpaceId of the Association resource.association_id (
str) – The AssociationId of the Association 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_devopsagent as interfaces_devopsagent association_reference = interfaces_devopsagent.AssociationReference( agent_space_id="agentSpaceId", association_id="associationId" )
Attributes
- agent_space_id
The AgentSpaceId of the Association resource.
- association_id
The AssociationId of the Association resource.