CfnWebhookMixinProps

class aws_cdk.cfn_property_mixins.aws_amplify.CfnWebhookMixinProps(*, app_id=None, branch_name=None, description=None, tags=None)

Bases: object

Properties for CfnWebhookPropsMixin.

Parameters:
  • app_id (Optional[str]) – The unique ID for an Amplify app.

  • branch_name (Optional[str]) – The name for a branch that is part of an Amplify app.

  • description (Optional[str]) – The description for a webhook.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags for the webhook.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-webhook.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# 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_amplify as amplify

cfn_webhook_mixin_props = amplify.CfnWebhookMixinProps(
    app_id="appId",
    branch_name="branchName",
    description="description",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

app_id

The unique ID for an Amplify app.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-webhook.html#cfn-amplify-webhook-appid

branch_name

The name for a branch that is part of an Amplify app.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-webhook.html#cfn-amplify-webhook-branchname

description

The description for a webhook.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-webhook.html#cfn-amplify-webhook-description

tags

Tags for the webhook.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amplify-webhook.html#cfn-amplify-webhook-tags