CfnOAuthClientApplicationPropsMixin

class aws_cdk.cfn_property_mixins.aws_quicksight.CfnOAuthClientApplicationPropsMixin(props, *, strategy=None)

Bases: Mixin

Definition of AWS::QuickSight::OAuthClientApplication Resource Type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-oauthclientapplication.html

CloudformationResource:

AWS::QuickSight::OAuthClientApplication

Mixin:

true

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_quicksight as quicksight
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_o_auth_client_application_props_mixin = quicksight.CfnOAuthClientApplicationPropsMixin(quicksight.CfnOAuthClientApplicationMixinProps(
    client_id="clientId",
    client_secret="clientSecret",
    data_source_type="dataSourceType",
    identity_provider_vpc_connection_properties=quicksight.CfnOAuthClientApplicationPropsMixin.IdentityProviderVpcConnectionPropertiesProperty(
        vpc_connection_arn="vpcConnectionArn"
    ),
    name="name",
    o_auth_authorization_endpoint_url="oAuthAuthorizationEndpointUrl",
    o_auth_client_application_id="oAuthClientApplicationId",
    o_auth_client_authentication_type="oAuthClientAuthenticationType",
    o_auth_scopes="oAuthScopes",
    o_auth_token_endpoint_url="oAuthTokenEndpointUrl",
    tags=[cdk.CfnTag(
        key="key",
        value="value"
    )]
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::QuickSight::OAuthClientApplication.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['clientId', 'clientSecret', 'dataSourceType', 'identityProviderVpcConnectionProperties', 'name', 'oAuthAuthorizationEndpointUrl', 'oAuthClientApplicationId', 'oAuthClientAuthenticationType', 'oAuthScopes', 'oAuthTokenEndpointUrl', 'tags']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

IdentityProviderVpcConnectionPropertiesProperty

class CfnOAuthClientApplicationPropsMixin.IdentityProviderVpcConnectionPropertiesProperty(*, vpc_connection_arn=None)

Bases: object

Parameters:

vpc_connection_arn (Optional[str])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-oauthclientapplication-identityprovidervpcconnectionproperties.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_quicksight as quicksight

identity_provider_vpc_connection_properties_property = quicksight.CfnOAuthClientApplicationPropsMixin.IdentityProviderVpcConnectionPropertiesProperty(
    vpc_connection_arn="vpcConnectionArn"
)

Attributes

vpc_connection_arn

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-oauthclientapplication-identityprovidervpcconnectionproperties.html#cfn-quicksight-oauthclientapplication-identityprovidervpcconnectionproperties-vpcconnectionarn

Type:

see