Interface CfnApplicationProviderPropsMixin.ResourceServerConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationProviderPropsMixin.ResourceServerConfigProperty.Jsii$Proxy
Enclosing class:
CfnApplicationProviderPropsMixin

@Stability(Stable) public static interface CfnApplicationProviderPropsMixin.ResourceServerConfigProperty extends software.amazon.jsii.JsiiSerializable
A structure that describes the configuration of a resource server.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.sso.*;
 ResourceServerConfigProperty resourceServerConfigProperty = ResourceServerConfigProperty.builder()
         .scopes(Map.of(
                 "scopesKey", ResourceServerScopeDetailsProperty.builder()
                         .detailedTitle("detailedTitle")
                         .longDescription("longDescription")
                         .build()))
         .build();
 

See Also: