Show / Hide Table of Contents

Interface ICfnWorkloadIdentityProps

Properties for defining a CfnWorkloadIdentity.

Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnWorkloadIdentityProps
Syntax (vb)
Public Interface ICfnWorkloadIdentityProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.BedrockAgentCore;

             var cfnWorkloadIdentityProps = new CfnWorkloadIdentityProps {
                 Name = "name",

                 // the properties below are optional
                 AllowedResourceOauth2ReturnUrls = new [] { "allowedResourceOauth2ReturnUrls" },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

AllowedResourceOauth2ReturnUrls

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

Name

The name of the workload identity.

Tags

The tags for the workload identity.

Properties

AllowedResourceOauth2ReturnUrls

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

string[]? AllowedResourceOauth2ReturnUrls { get; }
Property Value

string[]

Remarks

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.

string Name { get; }
Property Value

string

Remarks

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.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX