CfnSlackWorkspaceConfigurationPropsMixin

class aws_cdk.cfn_property_mixins.aws_supportapp.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.cfn_property_mixins import aws_supportapp as supportapp
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_slack_workspace_configuration_props_mixin = supportapp.CfnSlackWorkspaceConfigurationPropsMixin(supportapp.CfnSlackWorkspaceConfigurationMixinProps(
    team_id="teamId",
    version_id="versionId"
),
    strategy=merge_strategy
)

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:

None

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)

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.