WorkloadIdentityAttributes
- class aws_cdk.aws_bedrockagentcore.WorkloadIdentityAttributes(*, workload_identity_arn, workload_identity_name, created_time=None, last_updated_time=None)
Bases:
objectAttributes for importing an existing workload identity.
- Parameters:
workload_identity_arn (
str) – ARN of the workload identity.workload_identity_name (
str) – Name of the workload identity.created_time (
Optional[str]) – Resource creation time. Default: - not setlast_updated_time (
Optional[str]) – Resource last-updated time. Default: - not set
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_bedrockagentcore as bedrockagentcore workload_identity_attributes = bedrockagentcore.WorkloadIdentityAttributes( workload_identity_arn="workloadIdentityArn", workload_identity_name="workloadIdentityName", # the properties below are optional created_time="createdTime", last_updated_time="lastUpdatedTime" )
Attributes
- created_time
Resource creation time.
- Default:
not set
- last_updated_time
Resource last-updated time.
- Default:
not set
- workload_identity_arn
ARN of the workload identity.
- workload_identity_name
Name of the workload identity.