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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServicePropsMixin.AzureIdentityServiceDetailsPropertystatic final classAn implementation forCfnServicePropsMixin.AzureIdentityServiceDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientId
Azure AD application client ID.- See Also:
-
getTenantId
Azure AD tenant ID.- See Also:
-
getWebIdentityRoleArn
ARN of the IAM role for web identity token exchange.- See Also:
-
getWebIdentityTokenAudiences
List of audiences for the web identity token.- See Also:
-
builder
@Stability(Stable) static CfnServicePropsMixin.AzureIdentityServiceDetailsProperty.Builder builder()
-