CfnWorkloadIdentityMixinProps
- class aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnWorkloadIdentityMixinProps(*, allowed_resource_oauth2_return_urls=None, name=None, tags=None)
Bases:
objectProperties 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:
- 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.
- name
The name of the workload identity.
The name must be unique within your account.
- tags
The tags for the workload identity.