CfnSlackWorkspaceConfigurationPropsMixin
- class aws_cdk.mixins_preview.aws_supportapp.mixins.CfnSlackWorkspaceConfigurationPropsMixin(props, *, strategy=None)
Bases:
MixinYou can use the
AWS::SupportApp::SlackWorkspaceConfigurationresource to specify your Slack workspace configuration.This resource configures your AWS account so that you can use the specified Slack workspace in the AWS Support App . This resource includes the following information:
The team ID for the Slack workspace
The version ID of the resource to use with AWS CloudFormation
For more information, see the following topics in the User Guide :
- See:
- CloudformationResource:
AWS::SupportApp::SlackWorkspaceConfiguration
- 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.mixins_preview import mixins from aws_cdk.mixins_preview.aws_supportapp import mixins as supportapp_mixins cfn_slack_workspace_configuration_props_mixin = supportapp_mixins.CfnSlackWorkspaceConfigurationPropsMixin(supportapp_mixins.CfnSlackWorkspaceConfigurationMixinProps( team_id="teamId", version_id="versionId" ), strategy=mixins.PropertyMergeStrategy.OVERRIDE )
Create a mixin to apply properties to
AWS::SupportApp::SlackWorkspaceConfiguration.- Parameters:
props (
Union[CfnSlackWorkspaceConfigurationMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['teamId', 'versionId']
Static Methods
- classmethod is_mixin(x)
(experimental) 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.- Stability:
experimental