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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnActionConnector.ClientCredentialsGrantMetadataProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnActionConnector.ClientCredentialsDetailsPropertydefault StringMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBaseEndpoint
- See Also:
-
getClientCredentialsDetails
Returns union: eitherIResolvableorCfnActionConnector.ClientCredentialsDetailsProperty- See Also:
-
getClientCredentialsSource
- See Also:
-
builder
@Stability(Stable) static CfnActionConnector.ClientCredentialsGrantMetadataProperty.Builder builder()
-