interface OperatorAppProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAgentSpace.OperatorAppProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAgentSpace_OperatorAppProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAgentSpace.OperatorAppProperty |
Python | aws_cdk.aws_devopsagent.CfnAgentSpace.OperatorAppProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAgentSpace » OperatorAppProperty |
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 operatorAppProperty: devopsagent.CfnAgentSpace.OperatorAppProperty = {
iam: {
operatorAppRoleArn: 'operatorAppRoleArn',
// the properties below are optional
createdAt: 'createdAt',
updatedAt: 'updatedAt',
},
idc: {
idcInstanceArn: 'idcInstanceArn',
operatorAppRoleArn: 'operatorAppRoleArn',
// the properties below are optional
createdAt: 'createdAt',
idcApplicationArn: 'idcApplicationArn',
updatedAt: 'updatedAt',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iam? | IResolvable | Iam | |
| idc? | IResolvable | Idc |
iam?
Type:
IResolvable | Iam
(optional)
idc?
Type:
IResolvable | Idc
(optional)

.NET
Go
Java
Python
TypeScript