Interface CfnService.RegisteredAzureIdentityDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.RegisteredAzureIdentityDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnService
@Stability(Stable)
public static interface CfnService.RegisteredAzureIdentityDetailsProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.devopsagent.*;
RegisteredAzureIdentityDetailsProperty registeredAzureIdentityDetailsProperty = RegisteredAzureIdentityDetailsProperty.builder()
.clientId("clientId")
.tenantId("tenantId")
.webIdentityRoleArn("webIdentityRoleArn")
.webIdentityTokenAudiences(List.of("webIdentityTokenAudiences"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.RegisteredAzureIdentityDetailsPropertystatic final classAn implementation forCfnService.RegisteredAzureIdentityDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Azure AD application client ID.Azure AD tenant ID.ARN of the IAM role for web identity token exchange.List of audiences for the web identity token.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
-