interface RegisteredAzureIdentityDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.RegisteredAzureIdentityDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_RegisteredAzureIdentityDetailsProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.RegisteredAzureIdentityDetailsProperty |
Python | aws_cdk.aws_devopsagent.CfnService.RegisteredAzureIdentityDetailsProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » RegisteredAzureIdentityDetailsProperty |
Azure Identity service details returned after registration.
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 registeredAzureIdentityDetailsProperty: devopsagent.CfnService.RegisteredAzureIdentityDetailsProperty = {
clientId: 'clientId',
tenantId: 'tenantId',
webIdentityRoleArn: 'webIdentityRoleArn',
webIdentityTokenAudiences: ['webIdentityTokenAudiences'],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | Azure AD application client ID. |
| tenant | string | Azure AD tenant ID. |
| web | string | ARN of the IAM role for web identity token exchange. |
| web | string[] | List of audiences for the web identity token. |
clientId
Type:
string
Azure AD application client ID.
tenantId
Type:
string
Azure AD tenant ID.
webIdentityRoleArn
Type:
string
ARN of the IAM role for web identity token exchange.
webIdentityTokenAudiences
Type:
string[]
List of audiences for the web identity token.

.NET
Go
Java
Python
TypeScript