CfnWorkloadIdentityMixinProps

class aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnWorkloadIdentityMixinProps(*, allowed_resource_oauth2_return_urls=None, name=None, tags=None)

Bases: object

Properties for CfnWorkloadIdentityPropsMixin.

Parameters:
  • allowed_resource_oauth2_return_urls (Optional[Sequence[str]]) – The list of allowed OAuth2 return URLs for resources associated with this workload identity.

  • name (Optional[str]) – The name of the workload identity. The name must be unique within your account.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the workload identity.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html

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.mixins_preview.aws_bedrockagentcore import mixins as bedrockagentcore_mixins

cfn_workload_identity_mixin_props = bedrockagentcore_mixins.CfnWorkloadIdentityMixinProps(
    allowed_resource_oauth2_return_urls=["allowedResourceOauth2ReturnUrls"],
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

allowed_resource_oauth2_return_urls

The list of allowed OAuth2 return URLs for resources associated with this workload identity.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html#cfn-bedrockagentcore-workloadidentity-allowedresourceoauth2returnurls

name

The name of the workload identity.

The name must be unique within your account.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html#cfn-bedrockagentcore-workloadidentity-name

tags

The tags for the workload identity.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html#cfn-bedrockagentcore-workloadidentity-tags