interface CfnWorkloadIdentityMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnWorkloadIdentityMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnWorkloadIdentityMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnWorkloadIdentityMixinProps |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnWorkloadIdentityMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnWorkloadIdentityMixinProps |
Properties for CfnWorkloadIdentityPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
const cfnWorkloadIdentityMixinProps: bedrockagentcore_mixins.CfnWorkloadIdentityMixinProps = {
allowedResourceOauth2ReturnUrls: ['allowedResourceOauth2ReturnUrls'],
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| allowed | string[] | The list of allowed OAuth2 return URLs for resources associated with this workload identity. |
| name? | string | The name of the workload identity. |
| tags? | Cfn[] | The tags for the workload identity. |
allowedResourceOauth2ReturnUrls?
Type:
string[]
(optional)
The list of allowed OAuth2 return URLs for resources associated with this workload identity.
name?
Type:
string
(optional)
The name of the workload identity.
The name must be unique within your account.
tags?
Type:
Cfn[]
(optional)
The tags for the workload identity.

.NET
Go
Java
Python
TypeScript