CfnOAuthClientApplicationPropsMixin
- class aws_cdk.cfn_property_mixins.aws_quicksight.CfnOAuthClientApplicationPropsMixin(props, *, strategy=None)
Bases:
MixinDefinition of AWS::QuickSight::OAuthClientApplication Resource Type.
- See:
- 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:
props (
Union[CfnOAuthClientApplicationMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
IdentityProviderVpcConnectionPropertiesProperty
- class CfnOAuthClientApplicationPropsMixin.IdentityProviderVpcConnectionPropertiesProperty(*, vpc_connection_arn=None)
Bases:
object- Parameters:
vpc_connection_arn (
Optional[str])- See:
- 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