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

.NET
Go
Java
Python
TypeScript