OrganizationsDeploymentProps

class aws_cdk.aws_codepipeline_actions.OrganizationsDeploymentProps(*, auto_deployment=None)

Bases: object

Properties for configuring service-managed (Organizations) permissions.

Parameters:

auto_deployment (Optional[StackSetOrganizationsAutoDeployment]) – Automatically deploy to new accounts added to Organizational Units. Whether AWS CloudFormation StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU). Default: Disabled

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_codepipeline_actions as codepipeline_actions

organizations_deployment_props = codepipeline_actions.OrganizationsDeploymentProps(
    auto_deployment=codepipeline_actions.StackSetOrganizationsAutoDeployment.ENABLED
)

Attributes

auto_deployment

Automatically deploy to new accounts added to Organizational Units.

Whether AWS CloudFormation StackSets automatically deploys to AWS Organizations accounts that are added to a target organization or organizational unit (OU).

Default:

Disabled