interface CfnWorkloadIdentityMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnWorkloadIdentityMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnWorkloadIdentityMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnWorkloadIdentityMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnWorkloadIdentityMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » 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 { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const cfnWorkloadIdentityMixinProps: bedrockagentcore.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