CfnSlackWorkspaceConfigurationPropsMixin

class aws_cdk.mixins_preview.aws_supportapp.mixins.CfnSlackWorkspaceConfigurationPropsMixin(props, *, strategy=None)

Bases: Mixin

You can use the AWS::SupportApp::SlackWorkspaceConfiguration resource 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-supportapp-slackworkspaceconfiguration.html

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:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

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 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.

Stability:

experimental