Interface CfnService.IAzureIdentityServiceDetailsProperty
Azure Identity service configuration for federated identity.
Namespace: Amazon.CDK.AWS.DevOpsAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnService.IAzureIdentityServiceDetailsProperty
Syntax (vb)
Public Interface CfnService.IAzureIdentityServiceDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DevOpsAgent;
var azureIdentityServiceDetailsProperty = new AzureIdentityServiceDetailsProperty {
ClientId = "clientId",
TenantId = "tenantId",
WebIdentityRoleArn = "webIdentityRoleArn",
WebIdentityTokenAudiences = new [] { "webIdentityTokenAudiences" }
};
Synopsis
Properties
| ClientId | Azure AD application client ID. |
| TenantId | Azure AD tenant ID. |
| WebIdentityRoleArn | ARN of the IAM role for web identity token exchange. |
| WebIdentityTokenAudiences | List of audiences for the web identity token. |
Properties
ClientId
Azure AD application client ID.
string ClientId { get; }
Property Value
Remarks
TenantId
Azure AD tenant ID.
string TenantId { get; }
Property Value
Remarks
WebIdentityRoleArn
ARN of the IAM role for web identity token exchange.
string WebIdentityRoleArn { get; }
Property Value
Remarks
WebIdentityTokenAudiences
List of audiences for the web identity token.
string[] WebIdentityTokenAudiences { get; }
Property Value
string[]