AgentSpaceReference
- class aws_cdk.interfaces.aws_devopsagent.AgentSpaceReference(*, agent_space_arn, agent_space_id)
Bases:
objectA reference to a AgentSpace resource.
- Parameters:
agent_space_arn (
str) – The ARN of the AgentSpace resource.agent_space_id (
str) – The AgentSpaceId of the AgentSpace 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 agent_space_reference = interfaces_devopsagent.AgentSpaceReference( agent_space_arn="agentSpaceArn", agent_space_id="agentSpaceId" )
Attributes
- agent_space_arn
The ARN of the AgentSpace resource.
- agent_space_id
The AgentSpaceId of the AgentSpace resource.