Interface CfnActionConnectorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnActionConnectorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:23.654Z")
@Stability(Stable)
public interface CfnActionConnectorMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnActionConnectorPropsMixin.
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.quicksight.*;
CfnActionConnectorMixinProps cfnActionConnectorMixinProps = CfnActionConnectorMixinProps.builder()
.actionConnectorId("actionConnectorId")
.authenticationConfig(AuthConfigProperty.builder()
.authenticationMetadata(AuthenticationMetadataProperty.builder()
.apiKeyConnectionMetadata(APIKeyConnectionMetadataProperty.builder()
.apiKey("apiKey")
.baseEndpoint("baseEndpoint")
.email("email")
.build())
.authorizationCodeGrantMetadata(AuthorizationCodeGrantMetadataProperty.builder()
.authorizationCodeGrantCredentialsDetails(AuthorizationCodeGrantCredentialsDetailsProperty.builder()
.authorizationCodeGrantDetails(AuthorizationCodeGrantDetailsProperty.builder()
.authorizationEndpoint("authorizationEndpoint")
.clientId("clientId")
.clientSecret("clientSecret")
.tokenEndpoint("tokenEndpoint")
.build())
.build())
.authorizationCodeGrantCredentialsSource("authorizationCodeGrantCredentialsSource")
.baseEndpoint("baseEndpoint")
.redirectUrl("redirectUrl")
.build())
.basicAuthConnectionMetadata(BasicAuthConnectionMetadataProperty.builder()
.baseEndpoint("baseEndpoint")
.password("password")
.username("username")
.build())
.clientCredentialsGrantMetadata(ClientCredentialsGrantMetadataProperty.builder()
.baseEndpoint("baseEndpoint")
.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())
.authenticationType("authenticationType")
.build())
.awsAccountId("awsAccountId")
.description("description")
.name("name")
.permissions(List.of(ResourcePermissionProperty.builder()
.actions(List.of("actions"))
.principal("principal")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.vpcConnectionArn("vpcConnectionArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnActionConnectorMixinPropsstatic final classAn implementation forCfnActionConnectorMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault ObjectReturns union: eitherIResolvableorCfnActionConnectorPropsMixin.AuthConfigPropertydefault Stringdefault Stringdefault StringgetName()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnActionConnectorPropsMixin.ResourcePermissionProperty>getTags()default StringgetType()default StringMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActionConnectorId
- See Also:
-
getAuthenticationConfig
Returns union: eitherIResolvableorCfnActionConnectorPropsMixin.AuthConfigProperty- See Also:
-
getAwsAccountId
- See Also:
-
getDescription
- See Also:
-
getName
- See Also:
-
getPermissions
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnActionConnectorPropsMixin.ResourcePermissionProperty>- See Also:
-
getTags
- See Also:
-
getType
- See Also:
-
getVpcConnectionArn
- See Also:
-
builder
-