Interface CfnActionConnector.ClientCredentialsGrantMetadataProperty

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

@Stability(Stable) public static interface CfnActionConnector.ClientCredentialsGrantMetadataProperty extends software.amazon.jsii.JsiiSerializable
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.quicksight.*;
 ClientCredentialsGrantMetadataProperty clientCredentialsGrantMetadataProperty = ClientCredentialsGrantMetadataProperty.builder()
         .baseEndpoint("baseEndpoint")
         // the properties below are optional
         .clientCredentialsDetails(ClientCredentialsDetailsProperty.builder()
                 .clientCredentialsGrantDetails(ClientCredentialsGrantDetailsProperty.builder()
                         .clientId("clientId")
                         .clientSecret("clientSecret")
                         .tokenEndpoint("tokenEndpoint")
                         .build())
                 .build())
         .clientCredentialsSource("clientCredentialsSource")
         .build();
 

See Also: