interface AgentSpaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DevOpsAgent.AgentSpaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdevopsagent#AgentSpaceReference |
Java | software.amazon.awscdk.interfaces.devopsagent.AgentSpaceReference |
Python | aws_cdk.interfaces.aws_devopsagent.AgentSpaceReference |
TypeScript | aws-cdk-lib » interfaces » aws_devopsagent » AgentSpaceReference |
A reference to a AgentSpace resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as interfaces_devopsagent } from 'aws-cdk-lib/interfaces';
const agentSpaceReference: interfaces_devopsagent.AgentSpaceReference = {
agentSpaceArn: 'agentSpaceArn',
agentSpaceId: 'agentSpaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The ARN of the AgentSpace resource. |
| agent | string | The AgentSpaceId of the AgentSpace resource. |
agentSpaceArn
Type:
string
The ARN of the AgentSpace resource.
agentSpaceId
Type:
string
The AgentSpaceId of the AgentSpace resource.

.NET
Go
Java
Python
TypeScript