TargetApplicationCommonOptions
- class aws_cdk.aws_servicecatalogappregistry_alpha.TargetApplicationCommonOptions(*, analytics_reporting=None, cross_region_references=None, description=None, env=None, notification_arns=None, permissions_boundary=None, stack_name=None, suppress_template_indentation=None, synthesizer=None, tags=None, termination_protection=None, associate_cross_account_stacks=None, stack_id=None)
Bases:
StackProps
(experimental) Properties used to define targetapplication.
- Parameters:
analytics_reporting (
Optional
[bool
]) – Include runtime versioning information in this Stack. Default:analyticsReporting
setting of containingApp
, or value of ‘aws:cdk:version-reporting’ context keycross_region_references (
Optional
[bool
]) – Enable this flag to allow native cross region stack references. Enabling this will create a CloudFormation custom resource in both the producing stack and consuming stack in order to perform the export/import This feature is currently experimental Default: falsedescription (
Optional
[str
]) – A description of the stack. Default: - No description.env (
Union
[Environment
,Dict
[str
,Any
],None
]) – The AWS environment (account/region) where this stack will be deployed. Set theregion
/account
fields ofenv
to either a concrete value to select the indicated environment (recommended for production stacks), or to the values of environment variablesCDK_DEFAULT_REGION
/CDK_DEFAULT_ACCOUNT
to let the target environment depend on the AWS credentials/configuration that the CDK CLI is executed under (recommended for development stacks). If theStack
is instantiated inside aStage
, any undefinedregion
/account
fields fromenv
will default to the same field on the encompassingStage
, if configured there. If eitherregion
oraccount
are not set nor inherited fromStage
, the Stack will be considered “environment-agnostic””. Environment-agnostic stacks can be deployed to any environment but may not be able to take advantage of all features of the CDK. For example, they will not be able to use environmental context lookups such asec2.Vpc.fromLookup
and will not automatically translate Service Principals to the right format based on the environment’s AWS partition, and other such enhancements. Default: - The environment of the containingStage
if available, otherwise create the stack will be environment-agnostic.notification_arns (
Optional
[Sequence
[str
]]) – SNS Topic ARNs that will receive stack events. Default: - no notfication arns.permissions_boundary (
Optional
[PermissionsBoundary
]) – Options for applying a permissions boundary to all IAM Roles and Users created within this Stage. Default: - no permissions boundary is appliedstack_name (
Optional
[str
]) – Name to deploy the stack with. Default: - Derived from construct path.suppress_template_indentation (
Optional
[bool
]) – Enable this flag to suppress indentation in generated CloudFormation templates. If not specified, the value of the@aws-cdk/core:suppressTemplateIndentation
context key will be used. If that is not specified, then the default valuefalse
will be used. Default: - the value of@aws-cdk/core:suppressTemplateIndentation
, orfalse
if that is not set.synthesizer (
Optional
[IStackSynthesizer
]) – Synthesis method to use while deploying this stack. The Stack Synthesizer controls aspects of synthesis and deployment, like how assets are referenced and what IAM roles to use. For more information, see the README of the main CDK package. If not specified, thedefaultStackSynthesizer
fromApp
will be used. If that is not specified,DefaultStackSynthesizer
is used if@aws-cdk/core:newStyleStackSynthesis
is set totrue
or the CDK major version is v2. In CDK v1LegacyStackSynthesizer
is the default if no other synthesizer is specified. Default: - The synthesizer specified onApp
, orDefaultStackSynthesizer
otherwise.tags (
Optional
[Mapping
[str
,str
]]) – Stack tags that will be applied to all the taggable resources and the stack itself. Default: {}termination_protection (
Optional
[bool
]) – Whether to enable termination protection for this stack. Default: falseassociate_cross_account_stacks (
Optional
[bool
]) – (experimental) Determines whether any cross-account stacks defined in the CDK app definition should be associated with the target application. If set totrue
, the application will first be shared with the accounts that own the stacks. Default: - falsestack_id (
Optional
[str
]) – (deprecated) Stack ID in which application will be created or imported. The id of a stack is also the identifier that you use to refer to it in the AWS CDK Toolkit. Default: - The value ofstackName
will be used as stack id
- Stability:
experimental
- 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_servicecatalogappregistry_alpha as servicecatalogappregistry_alpha import aws_cdk as cdk # permissions_boundary: cdk.PermissionsBoundary # stack_synthesizer: cdk.StackSynthesizer target_application_common_options = servicecatalogappregistry_alpha.TargetApplicationCommonOptions( analytics_reporting=False, associate_cross_account_stacks=False, cross_region_references=False, description="description", env=cdk.Environment( account="account", region="region" ), notification_arns=["notificationArns"], permissions_boundary=permissions_boundary, stack_id="stackId", stack_name="stackName", suppress_template_indentation=False, synthesizer=stack_synthesizer, tags={ "tags_key": "tags" }, termination_protection=False )
Attributes
- analytics_reporting
Include runtime versioning information in this Stack.
- Default:
analyticsReporting
setting of containingApp
, or value of ‘aws:cdk:version-reporting’ context key
- associate_cross_account_stacks
(experimental) Determines whether any cross-account stacks defined in the CDK app definition should be associated with the target application.
If set to
true
, the application will first be shared with the accounts that own the stacks.- Default:
false
- Stability:
experimental
- cross_region_references
Enable this flag to allow native cross region stack references.
Enabling this will create a CloudFormation custom resource in both the producing stack and consuming stack in order to perform the export/import
This feature is currently experimental
- Default:
false
- description
A description of the stack.
- Default:
No description.
- env
The AWS environment (account/region) where this stack will be deployed.
Set the
region
/account
fields ofenv
to either a concrete value to select the indicated environment (recommended for production stacks), or to the values of environment variablesCDK_DEFAULT_REGION
/CDK_DEFAULT_ACCOUNT
to let the target environment depend on the AWS credentials/configuration that the CDK CLI is executed under (recommended for development stacks).If the
Stack
is instantiated inside aStage
, any undefinedregion
/account
fields fromenv
will default to the same field on the encompassingStage
, if configured there.If either
region
oraccount
are not set nor inherited fromStage
, the Stack will be considered “environment-agnostic””. Environment-agnostic stacks can be deployed to any environment but may not be able to take advantage of all features of the CDK. For example, they will not be able to use environmental context lookups such asec2.Vpc.fromLookup
and will not automatically translate Service Principals to the right format based on the environment’s AWS partition, and other such enhancements.- Default:
The environment of the containing
Stage
if available,
otherwise create the stack will be environment-agnostic.
Example:
# Use a concrete account and region to deploy this stack to: # `.account` and `.region` will simply return these values. Stack(app, "Stack1", env=Environment( account="123456789012", region="us-east-1" ) ) # Use the CLI's current credentials to determine the target environment: # `.account` and `.region` will reflect the account+region the CLI # is configured to use (based on the user CLI credentials) Stack(app, "Stack2", env=Environment( account=process.env.CDK_DEFAULT_ACCOUNT, region=process.env.CDK_DEFAULT_REGION ) ) # Define multiple stacks stage associated with an environment my_stage = Stage(app, "MyStage", env=Environment( account="123456789012", region="us-east-1" ) ) # both of these stacks will use the stage's account/region: # `.account` and `.region` will resolve to the concrete values as above MyStack(my_stage, "Stack1") YourStack(my_stage, "Stack2") # Define an environment-agnostic stack: # `.account` and `.region` will resolve to `{ "Ref": "AWS::AccountId" }` and `{ "Ref": "AWS::Region" }` respectively. # which will only resolve to actual values by CloudFormation during deployment. MyStack(app, "Stack1")
- notification_arns
SNS Topic ARNs that will receive stack events.
- Default:
no notfication arns.
- permissions_boundary
Options for applying a permissions boundary to all IAM Roles and Users created within this Stage.
- Default:
no permissions boundary is applied
- stack_id
(deprecated) Stack ID in which application will be created or imported.
The id of a stack is also the identifier that you use to refer to it in the AWS CDK Toolkit.
- Default:
The value of
stackName
will be used as stack id
- Deprecated:
Use
stackName
instead to control the name and id of the stack
- Stability:
deprecated
- stack_name
Name to deploy the stack with.
- Default:
Derived from construct path.
- suppress_template_indentation
Enable this flag to suppress indentation in generated CloudFormation templates.
If not specified, the value of the
@aws-cdk/core:suppressTemplateIndentation
context key will be used. If that is not specified, then the default valuefalse
will be used.- Default:
the value of
@aws-cdk/core:suppressTemplateIndentation
, orfalse
if that is not set.
- synthesizer
Synthesis method to use while deploying this stack.
The Stack Synthesizer controls aspects of synthesis and deployment, like how assets are referenced and what IAM roles to use. For more information, see the README of the main CDK package.
If not specified, the
defaultStackSynthesizer
fromApp
will be used. If that is not specified,DefaultStackSynthesizer
is used if@aws-cdk/core:newStyleStackSynthesis
is set totrue
or the CDK major version is v2. In CDK v1LegacyStackSynthesizer
is the default if no other synthesizer is specified.- Default:
The synthesizer specified on
App
, orDefaultStackSynthesizer
otherwise.
- tags
Stack tags that will be applied to all the taggable resources and the stack itself.
- Default:
{}
- termination_protection
Whether to enable termination protection for this stack.
- Default:
false