interface CfnAgentSpaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnAgentSpaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnAgentSpaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnAgentSpaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnAgentSpaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnAgentSpaceMixinProps |
Properties for CfnAgentSpacePropsMixin.
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/cfn-property-mixins';
const cfnAgentSpaceMixinProps: devopsagent.CfnAgentSpaceMixinProps = {
description: 'description',
name: 'name',
operatorApp: {
iam: {
createdAt: 'createdAt',
operatorAppRoleArn: 'operatorAppRoleArn',
updatedAt: 'updatedAt',
},
idc: {
createdAt: 'createdAt',
idcApplicationArn: 'idcApplicationArn',
idcInstanceArn: 'idcInstanceArn',
operatorAppRoleArn: 'operatorAppRoleArn',
updatedAt: 'updatedAt',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the Agent Space. |
| name? | string | The name of the Agent Space. |
| operator | IResolvable | Operator |
description?
Type:
string
(optional)
The description of the Agent Space.
name?
Type:
string
(optional)
The name of the Agent Space.
operatorApp?
Type:
IResolvable | Operator
(optional)

.NET
Go
Java
Python
TypeScript