Interface CfnServicePropsMixin.AzureIdentityServiceDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServicePropsMixin.AzureIdentityServiceDetailsProperty.Jsii$Proxy
Enclosing class:
CfnServicePropsMixin

@Stability(Stable) public static interface CfnServicePropsMixin.AzureIdentityServiceDetailsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.devopsagent.*;
 AzureIdentityServiceDetailsProperty azureIdentityServiceDetailsProperty = AzureIdentityServiceDetailsProperty.builder()
         .clientId("clientId")
         .tenantId("tenantId")
         .webIdentityRoleArn("webIdentityRoleArn")
         .webIdentityTokenAudiences(List.of("webIdentityTokenAudiences"))
         .build();
 

See Also: