interface RegisteredAzureIdentityDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.RegisteredAzureIdentityDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_RegisteredAzureIdentityDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.RegisteredAzureIdentityDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.RegisteredAzureIdentityDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » 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/cfn-property-mixins';
const registeredAzureIdentityDetailsProperty: devopsagent.CfnServicePropsMixin.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
(optional)
Azure AD application client ID.
tenantId?
Type:
string
(optional)
Azure AD tenant ID.
webIdentityRoleArn?
Type:
string
(optional)
ARN of the IAM role for web identity token exchange.
webIdentityTokenAudiences?
Type:
string[]
(optional)
List of audiences for the web identity token.

.NET
Go
Java
Python
TypeScript