Interface CfnActionConnector.AuthenticationMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnActionConnector.AuthenticationMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnActionConnector
@Stability(Stable)
public static interface CfnActionConnector.AuthenticationMetadataProperty
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.*;
AuthenticationMetadataProperty authenticationMetadataProperty = AuthenticationMetadataProperty.builder()
.apiKeyConnectionMetadata(APIKeyConnectionMetadataProperty.builder()
.apiKey("apiKey")
.baseEndpoint("baseEndpoint")
// the properties below are optional
.email("email")
.build())
.authorizationCodeGrantMetadata(AuthorizationCodeGrantMetadataProperty.builder()
.baseEndpoint("baseEndpoint")
.redirectUrl("redirectUrl")
// the properties below are optional
.authorizationCodeGrantCredentialsDetails(AuthorizationCodeGrantCredentialsDetailsProperty.builder()
.authorizationCodeGrantDetails(AuthorizationCodeGrantDetailsProperty.builder()
.authorizationEndpoint("authorizationEndpoint")
.clientId("clientId")
.clientSecret("clientSecret")
.tokenEndpoint("tokenEndpoint")
.build())
.build())
.authorizationCodeGrantCredentialsSource("authorizationCodeGrantCredentialsSource")
.build())
.basicAuthConnectionMetadata(BasicAuthConnectionMetadataProperty.builder()
.baseEndpoint("baseEndpoint")
.password("password")
.username("username")
.build())
.clientCredentialsGrantMetadata(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())
.iamConnectionMetadata(Map.of(
"roleArn", "roleArn"))
.noneConnectionMetadata(NoneConnectionMetadataProperty.builder()
.baseEndpoint("baseEndpoint")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnActionConnector.AuthenticationMetadataPropertystatic final classAn implementation forCfnActionConnector.AuthenticationMetadataProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnActionConnector.APIKeyConnectionMetadataPropertydefault ObjectReturns union: eitherIResolvableorCfnActionConnector.AuthorizationCodeGrantMetadataPropertydefault ObjectReturns union: eitherIResolvableorCfnActionConnector.BasicAuthConnectionMetadataPropertydefault ObjectReturns union: eitherIResolvableorCfnActionConnector.ClientCredentialsGrantMetadataPropertydefault ObjectReturns union: eitherIResolvableorCfnActionConnector.IAMConnectionMetadataPropertydefault ObjectReturns union: eitherIResolvableorCfnActionConnector.NoneConnectionMetadataPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKeyConnectionMetadata
Returns union: eitherIResolvableorCfnActionConnector.APIKeyConnectionMetadataProperty- See Also:
-
getAuthorizationCodeGrantMetadata
Returns union: eitherIResolvableorCfnActionConnector.AuthorizationCodeGrantMetadataProperty- See Also:
-
getBasicAuthConnectionMetadata
Returns union: eitherIResolvableorCfnActionConnector.BasicAuthConnectionMetadataProperty- See Also:
-
getClientCredentialsGrantMetadata
Returns union: eitherIResolvableorCfnActionConnector.ClientCredentialsGrantMetadataProperty- See Also:
-
getIamConnectionMetadata
Returns union: eitherIResolvableorCfnActionConnector.IAMConnectionMetadataProperty- See Also:
-
getNoneConnectionMetadata
Returns union: eitherIResolvableorCfnActionConnector.NoneConnectionMetadataProperty- See Also:
-
builder
-