interface WorkloadIdentityAttributes
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.WorkloadIdentityAttributes |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#WorkloadIdentityAttributes |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.WorkloadIdentityAttributes |
Python | aws_cdk.aws_bedrock_agentcore_alpha.WorkloadIdentityAttributes |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป WorkloadIdentityAttributes |
Attributes for importing an existing workload identity.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as bedrock_agentcore_alpha from '@aws-cdk/aws-bedrock-agentcore-alpha';
const workloadIdentityAttributes: bedrock_agentcore_alpha.WorkloadIdentityAttributes = {
workloadIdentityArn: 'workloadIdentityArn',
workloadIdentityName: 'workloadIdentityName',
// the properties below are optional
createdTime: 'createdTime',
lastUpdatedTime: 'lastUpdatedTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| workload | string | ARN of the workload identity. |
| workload | string | Name of the workload identity. |
| created | string | Resource creation time. |
| last | string | Resource last-updated time. |
workloadIdentityArn
Type:
string
ARN of the workload identity.
workloadIdentityName
Type:
string
Name of the workload identity.
createdTime?
Type:
string
(optional, default: not set)
Resource creation time.
lastUpdatedTime?
Type:
string
(optional, default: not set)
Resource last-updated time.

.NET
Go
Java
Python
TypeScript (