interface CfnAgentSpaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAgentSpaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAgentSpaceProps |
Java | software.amazon.awscdk.services.devopsagent.CfnAgentSpaceProps |
Python | aws_cdk.aws_devopsagent.CfnAgentSpaceProps |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAgentSpaceProps |
Properties for defining a CfnAgentSpace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const cfnAgentSpaceProps: devopsagent.CfnAgentSpaceProps = {
name: 'name',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the AgentSpace. |
| description? | string | The description of the AgentSpace. |
name
Type:
string
The name of the AgentSpace.
description?
Type:
string
(optional)
The description of the AgentSpace.

.NET
Go
Java
Python
TypeScript