interface AzureIdentityServiceDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.AzureIdentityServiceDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_AzureIdentityServiceDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.AzureIdentityServiceDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.AzureIdentityServiceDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » AzureIdentityServiceDetailsProperty |
Azure Identity service configuration for federated identity.
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 azureIdentityServiceDetailsProperty: devopsagent.CfnServicePropsMixin.AzureIdentityServiceDetailsProperty = {
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