Interface CfnWorkloadIdentityProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkloadIdentityProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-02T12:05:04.452Z")
@Stability(Stable)
public interface CfnWorkloadIdentityProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrockagentcore.*;
CfnWorkloadIdentityProps cfnWorkloadIdentityProps = CfnWorkloadIdentityProps.builder()
.name("name")
// the properties below are optional
.allowedResourceOauth2ReturnUrls(List.of("allowedResourceOauth2ReturnUrls"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkloadIdentityPropsstatic final classAn implementation forCfnWorkloadIdentityProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the workload identity.The name must be unique within your account.
- See Also:
-
getAllowedResourceOauth2ReturnUrls
The list of allowed OAuth2 return URLs for resources associated with this workload identity.- See Also:
-
getTags
The tags for the workload identity.- See Also:
-
builder
- Returns:
- a
CfnWorkloadIdentityProps.BuilderofCfnWorkloadIdentityProps
-