Interface CfnPaymentManagerProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPaymentManagerProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-06-16T16:14:19.722Z") @Stability(Stable) public interface CfnPaymentManagerProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnPaymentManager.

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.*;
 CfnPaymentManagerProps cfnPaymentManagerProps = CfnPaymentManagerProps.builder()
         .authorizerType("authorizerType")
         .name("name")
         .roleArn("roleArn")
         // the properties below are optional
         .authorizerConfiguration(AuthorizerConfigurationProperty.builder()
                 .customJwtAuthorizer(CustomJWTAuthorizerConfigurationProperty.builder()
                         .discoveryUrl("discoveryUrl")
                         // the properties below are optional
                         .allowedAudience(List.of("allowedAudience"))
                         .allowedClients(List.of("allowedClients"))
                         .allowedScopes(List.of("allowedScopes"))
                         .customClaims(List.of(CustomClaimValidationTypeProperty.builder()
                                 .authorizingClaimMatchValue(AuthorizingClaimMatchValueTypeProperty.builder()
                                         .claimMatchOperator("claimMatchOperator")
                                         .claimMatchValue(ClaimMatchValueTypeProperty.builder()
                                                 .matchValueString("matchValueString")
                                                 .matchValueStringList(List.of("matchValueStringList"))
                                                 .build())
                                         .build())
                                 .inboundTokenClaimName("inboundTokenClaimName")
                                 .inboundTokenClaimValueType("inboundTokenClaimValueType")
                                 .build()))
                         .build())
                 .build())
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: