Show / Hide Table of Contents

Interface CfnHarness.IAuthorizerConfigurationProperty

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-authorizerconfiguration.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 authorizerConfigurationProperty = new AuthorizerConfigurationProperty {
                 CustomJwtAuthorizer = new CustomJWTAuthorizerConfigurationProperty {
                     DiscoveryUrl = "discoveryUrl",

                     // the properties below are optional
                     AllowedAudience = new [] { "allowedAudience" },
                     AllowedClients = new [] { "allowedClients" },
                     AllowedScopes = new [] { "allowedScopes" },
                     CustomClaims = new [] { new CustomClaimValidationTypeProperty {
                         AuthorizingClaimMatchValue = new AuthorizingClaimMatchValueTypeProperty {
                             ClaimMatchOperator = "claimMatchOperator",
                             ClaimMatchValue = new ClaimMatchValueTypeProperty {
                                 MatchValueString = "matchValueString",
                                 MatchValueStringList = new [] { "matchValueStringList" }
                             }
                         },
                         InboundTokenClaimName = "inboundTokenClaimName",
                         InboundTokenClaimValueType = "inboundTokenClaimValueType"
                     } }
                 }
             };

Synopsis

Properties

CustomJwtAuthorizer

Properties

CustomJwtAuthorizer

object? CustomJwtAuthorizer { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-harness-authorizerconfiguration.html#cfn-bedrockagentcore-harness-authorizerconfiguration-customjwtauthorizer

Type union: either IResolvable or CfnHarness.ICustomJWTAuthorizerConfigurationProperty

Back to top Generated by DocFX