interface CfnWorkloadIdentityProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnWorkloadIdentityProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnWorkloadIdentityProps |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnWorkloadIdentityProps |
Python | aws_cdk.aws_bedrockagentcore.CfnWorkloadIdentityProps |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnWorkloadIdentityProps |
Properties for defining a CfnWorkloadIdentity.
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-lib';
const cfnWorkloadIdentityProps: bedrockagentcore.CfnWorkloadIdentityProps = {
name: 'name',
// the properties below are optional
allowedResourceOauth2ReturnUrls: ['allowedResourceOauth2ReturnUrls'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the workload identity. |
| allowed | string[] | The list of allowed OAuth2 return URLs for resources associated with this workload identity. |
| tags? | Cfn[] | The tags for the workload identity. |
name
Type:
string
The name of the workload identity.
The name must be unique within your account.
allowedResourceOauth2ReturnUrls?
Type:
string[]
(optional)
The list of allowed OAuth2 return URLs for resources associated with this workload identity.
tags?
Type:
Cfn[]
(optional)
The tags for the workload identity.

.NET
Go
Java
Python
TypeScript