@flit/cdk-pipeline 1.1.2 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.jsii CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "author": {
3
- "email": "luis@jumper.de",
4
3
  "name": "Luis Vierroth",
5
4
  "roles": [
6
5
  "author"
@@ -8,8 +7,8 @@
8
7
  "url": "https://github.com/p-mercury"
9
8
  },
10
9
  "dependencies": {
11
- "aws-cdk-lib": "^2.163.0",
12
- "constructs": "^10.4.2"
10
+ "aws-cdk-lib": "^2.174.0",
11
+ "constructs": "^10.4.0"
13
12
  },
14
13
  "dependencyClosure": {
15
14
  "@aws-cdk/asset-awscli-v1": {
@@ -1878,19 +1877,6 @@
1878
1877
  }
1879
1878
  }
1880
1879
  },
1881
- "aws-cdk-lib.aws_iot1click": {
1882
- "targets": {
1883
- "dotnet": {
1884
- "namespace": "Amazon.CDK.AWS.IoT1Click"
1885
- },
1886
- "java": {
1887
- "package": "software.amazon.awscdk.services.iot1click"
1888
- },
1889
- "python": {
1890
- "module": "aws_cdk.aws_iot1click"
1891
- }
1892
- }
1893
- },
1894
1880
  "aws-cdk-lib.aws_iotanalytics": {
1895
1881
  "targets": {
1896
1882
  "dotnet": {
@@ -2736,6 +2722,19 @@
2736
2722
  }
2737
2723
  }
2738
2724
  },
2725
+ "aws-cdk-lib.aws_pcs": {
2726
+ "targets": {
2727
+ "dotnet": {
2728
+ "package": "Amazon.CDK.AWS.PCS"
2729
+ },
2730
+ "java": {
2731
+ "package": "software.amazon.awscdk.services.pcs"
2732
+ },
2733
+ "python": {
2734
+ "module": "aws_cdk.aws_pcs"
2735
+ }
2736
+ }
2737
+ },
2739
2738
  "aws-cdk-lib.aws_personalize": {
2740
2739
  "targets": {
2741
2740
  "dotnet": {
@@ -3191,6 +3190,19 @@
3191
3190
  }
3192
3191
  }
3193
3192
  },
3193
+ "aws-cdk-lib.aws_s3tables": {
3194
+ "targets": {
3195
+ "dotnet": {
3196
+ "package": "Amazon.CDK.AWS.S3Tables"
3197
+ },
3198
+ "java": {
3199
+ "package": "software.amazon.awscdk.services.s3tables"
3200
+ },
3201
+ "python": {
3202
+ "module": "aws_cdk.aws_s3tables"
3203
+ }
3204
+ }
3205
+ },
3194
3206
  "aws-cdk-lib.aws_sagemaker": {
3195
3207
  "targets": {
3196
3208
  "dotnet": {
@@ -3899,8 +3911,8 @@
3899
3911
  "docs": {
3900
3912
  "stability": "stable"
3901
3913
  },
3902
- "homepage": "https://github.com/jumper-de/cdk-pipeline",
3903
- "jsiiVersion": "5.7.2 (build 224a3f3)",
3914
+ "homepage": "https://github.com/vierroth/cdk-pipeline",
3915
+ "jsiiVersion": "5.7.4 (build fc2a28e)",
3904
3916
  "keywords": [
3905
3917
  "aws",
3906
3918
  "cdk",
@@ -3921,11 +3933,11 @@
3921
3933
  },
3922
3934
  "name": "@flit/cdk-pipeline",
3923
3935
  "readme": {
3924
- "markdown": "This library exposes a highly customizable and extensible L3 pipeline construct intended as an alternative to the CDK native L3 [CodePipeline](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.pipelines.CodePipeline.html) construct which has some inherent limitations in capability and extensibility.\n\nThe documentation provides the tools and documentation to get your own pipeline up and running and build your own custom segments.\n\n## Usage\n\n### Installation\n\nThe package is available on [NPM](https://www.npmjs.com/package/@flit/cdk-pipeline) and can be installed using your package manager of choice:\n\n```bash\nnpm i @flit/cdk-pipeline\n```\n\n```bash\npnpm add @flit/cdk-pipeline\n```\n\n```bash\nyarn add @flit/cdk-pipeline\n```\n\n### Basics\n\nThe snippet bellow is a basic example of a pipeline which will run whenever a change is detected in a GitHub repository. The pipeline will update itself and, deploy and update a user defined stack. This example demonstrates the three basic elements that make up a pipeline:\n\n#### - Pipeline\n\nThe `Pipeline` construct will create a CloudFormation Stack which contains the pipeline and all of the required peripheral resources to make it work.\n\n#### - Segment\n\nA `Segment` is simply a pre-configured set of pipeline actions which together represent a commonly used CI/CD pattern, like for example building and deploying a stack.\n\nTo build properly, a Pipeline requires at least one SourceSegment, exactly one PipelineSegment and at least one other segment.\n\n#### - Artifact\n\nAn `Artifact` represents a pipeline artifact which can be used to pass information between stages. Every artifact needs to be the output of exactly one Segment and can be consumed by any segments that need that output.\n\n```typescript\nimport { App, SecretValue, Stack } from \"aws-cdk-lib\";\nimport {\n Pipeline,\n GitHubSourceSegment,\n PipelineSegment,\n StackSegment,\n Artifact,\n} from \"@flit/cdk-pipeline\";\n\nconst APP = new App();\n\nconst SOURCE_ARTIFACT = new Artifact();\nconst BUILD_ARTIFACT = new Artifact();\n\nnew Pipeline(APP, \"Pipeline\", {\n rootDir: \"./\",\n segments: [\n new CodeStarSourceSegment({\n output: SOURCE_ARTIFACT,\n connectionArn: \"code-star-connection-arn\",\n owner: \"owner-name\",\n repository: \"repo-name\",\n branch: \"branch-name\",\n }),\n new PipelineSegment({\n input: SOURCE_ARTIFACT,\n output: BUILD_ARTIFACT,\n project: {\n environment: {\n computeType: ComputeType.MEDIUM,\n buildImage: LinuxBuildImage.AMAZON_LINUX_2_ARM_3,\n privileged: true,\n },\n buildSpec: BuildSpec.fromObject({\n version: \"0.2\",\n phases: {\n install: {\n \"runtime-versions\": {\n nodejs: \"latest\",\n },\n commands: [\"npm i -g npm@latest\", \"npm ci\"],\n },\n build: {\n commands: \"cdk synth --strict --quiet\",\n },\n },\n }),\n },\n }),\n new StackSegment({\n stack: new Stack(APP, \"BackEnd\"),\n input: BUILD_ARTIFACT,\n }),\n ],\n});\n```\n\nThe above code would produce a pipeline similar to this:\n\n<img src=\"./media/pipeline-ouput-example.png?raw=true\" alt=\"alt text\" width=\"300px\">\n\n### Multiple stacks\n\nTo add another stack to the pipeline you simply add another `StackSegment` with a new stack instance and the pipeline will handle the rest.\n\n```typescript\nimport { App, SecretValue, Stack } from \"aws-cdk-lib\";\nimport {\n Pipeline,\n GitHubSourceSegment,\n PipelineSegment,\n StackSegment,\n Artifact,\n} from \"@flit/cdk-pipeline\";\n\nconst APP = new App();\n\nconst SOURCE_ARTIFACT = new Artifact();\nconst BUILD_ARTIFACT = new Artifact();\n\nnew Pipeline(APP, \"Pipeline\", {\n rootDir: \"./\",\n segments: [\n new CodeStarSourceSegment({\n output: SOURCE_ARTIFACT,\n connectionArn: \"code-star-connection-arn\",\n owner: \"owner-name\",\n repository: \"repo-name\",\n branch: \"branch-name\",\n }),\n new PipelineSegment({\n input: SOURCE_ARTIFACT,\n output: BUILD_ARTIFACT,\n project: {\n environment: {\n computeType: ComputeType.MEDIUM,\n buildImage: LinuxBuildImage.AMAZON_LINUX_2_ARM_3,\n privileged: true,\n },\n buildSpec: BuildSpec.fromObject({\n version: \"0.2\",\n phases: {\n install: {\n \"runtime-versions\": {\n nodejs: \"latest\",\n },\n commands: [\"npm i -g npm@latest\", \"npm ci\"],\n },\n build: {\n commands: \"cdk synth --strict --quiet\",\n },\n },\n }),\n },\n }),\n new StackSegment({\n stack: new Stack(APP, \"BackEnd\"),\n input: BUILD_ARTIFACT,\n }),\n new StackSegment({\n stack: new Stack(APP, \"FrontEnd\"),\n input: BUILD_ARTIFACT,\n }),\n ],\n});\n```\n\n### More complex example\n\nIn some cases you might have a build that bakes API endpoints generated by a previous stage into the stack assets during the build stage. Using the CDK native L3 [CodePipeline](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.pipelines.CodePipeline.html) construct makes this hard, but with this more flexible setup you can run another build for any stack that needs it, and use the previous stacks outputs in that build.\n\n```typescript\nimport { App, SecretValue, Stack } from \"aws-cdk-lib\";\nimport {\n Pipeline,\n GitHubSourceSegment,\n PipelineSegment,\n StackSegment,\n Artifact,\n} from \"@flit/cdk-pipeline\";\n\nconst APP = new App();\n\nconst SOURCE_ARTIFACT = new Artifact();\nconst BUILD_ARTIFACT = new Artifact();\nconst FRONT_END_OUTPUT_ARTIFACT = new Artifact();\n\nnew Pipeline(APP, \"Pipeline\", {\n rootDir: \"./\",\n segments: [\n new CodeStarSourceSegment({\n output: SOURCE_ARTIFACT,\n connectionArn: \"code-star-connection-arn\",\n owner: \"owner-name\",\n repository: \"repo-name\",\n branch: \"branch-name\",\n }),\n new PipelineSegment({\n input: SOURCE_ARTIFACT,\n output: BUILD_ARTIFACT,\n project: {\n environment: {\n computeType: ComputeType.MEDIUM,\n buildImage: LinuxBuildImage.AMAZON_LINUX_2_ARM_3,\n privileged: true,\n },\n buildSpec: BuildSpec.fromObject({\n version: \"0.2\",\n phases: {\n install: {\n \"runtime-versions\": {\n nodejs: \"latest\",\n },\n commands: [\"npm i -g npm@latest\", \"npm ci\"],\n },\n build: {\n commands: \"cdk synth --strict --quiet\",\n },\n },\n }),\n },\n }),\n new StackSegment({\n stack: new Stack(APP, \"BackEnd\"),\n input: BUILD_ARTIFACT,\n output: FRONT_END_OUTPUT_ARTIFACT,\n }),\n new StackSegment({\n stack: new Stack(APP, \"FrontEnd\"),\n input: [SOURCE_ARTIFACT, FRONT_END_OUTPUT_ARTIFACT],\n project: {\n environment: {\n computeType: ComputeType.MEDIUM,\n buildImage: LinuxBuildImage.AMAZON_LINUX_2_ARM_3,\n privileged: true,\n },\n buildSpec: BuildSpec.fromObject({\n version: \"0.2\",\n phases: {\n install: {\n \"runtime-versions\": {\n nodejs: \"latest\",\n },\n commands: [\"npm i -g npm@latest\", \"npm ci\"],\n },\n build: {\n commands: [\n \"do something with the STACK_1_OUTPUT_ARTIFACT\",\n \"cdk synth --strict --quiet\",\n ],\n },\n },\n }),\n },\n }),\n ],\n});\n```\n\nThis example first build the project, deploys the `Pipeline` and `BackEnd` stacks and then rebuilds the project now with access to the outputs of the `BackEnd` stack. This allows you to now bake in any API endpoints dynamically generated in the `BackEnd` stack.\n\n### Building your own segment\n\nThe snippet bellow is a basic example showing a custom segment which simply adds a stage with two manual approval steps into the pipeline and allows you to optional give this step a name.\n\nEach segment has two components consisting of two distinct classes:\n\n### - Segment\n\nThe main segment class is the class that will be used in your pipeline definition, and can be created by extending the `Segment` abstract class.\n\nThis class **should not** itself create any actual CDK constructs and is simply there to collect configuration trough the `constructor`. The `constructor` should take a single parameter called `props` which is a descendant of the `SegmentProps` interface.\n\nThe segment class also has to define the `construct` abstract function which returns an instance of a descendant of the `SegmentConstructed` abstract class.\n\n### - SegmentConstructed\n\nThis class will be returned by the `construct` function of your segment class and is itself a CDK construct. So in this class you can now allocate the CDK resources this segment requires as you are used to in any other CDK application.\n\nYou can pass any configuration information previously collected in the segment class trough the constructor.\n\n```typescript\nimport { IAction } from \"aws-cdk-lib/aws-codepipeline\";\nimport { ManualApprovalAction } from \"aws-cdk-lib/aws-codepipeline-actions\";\n\nimport { Segment, SegmentConstructed } from \"./segment\";\nimport { Pipeline } from \"./pipeline\";\n\nexport interface RequireApprovalSegmentProps {\n readonly name?: string;\n}\n\n/**\n * @category Segments\n */\nexport class DoubleApprovalSegment extends Segment {\n readonly props: RequireApprovalSegmentProps;\n\n constructor(props: RequireApprovalSegmentProps) {\n super({ ...props, input: undefined, output: undefined });\n this.props = props;\n }\n\n construct(scope: Pipeline): SegmentConstructed {\n return new RequireApprovalSegmentConstructed(\n scope,\n `RequireApproval`,\n this.props,\n );\n }\n}\n\nexport interface RequireApprovalSegmentConstructedProps {\n readonly name?: string;\n}\n\nexport class RequireApprovalSegmentConstructed extends SegmentConstructed {\n readonly name: string;\n readonly actions: IAction[];\n\n constructor(\n scope: Pipeline,\n id: string,\n props: RequireApprovalSegmentConstructedProps,\n ) {\n super(scope, id);\n\n this.name = props.name ?? id;\n\n this.actions = [\n new ManualApprovalAction({\n actionName: \"ApproveChanges1\",\n runOrder: 1,\n }),\n new ManualApprovalAction({\n actionName: \"ApproveChanges2\",\n runOrder: 2,\n }),\n ];\n }\n}\n```\n"
3936
+ "markdown": "This library exposes a highly customizable and extensible L3 pipeline construct intended as an alternative to the CDK native L3 [CodePipeline](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.pipelines.CodePipeline.html) construct which has some inherent limitations in capability and extensibility.\n\nThe documentation provides the tools and documentation to get your own pipeline up and running and build your own custom segments.\n\n## Usage\n\n### Installation\n\nThe package is available on [NPM](https://www.npmjs.com/package/@flit/cdk-pipeline) and can be installed using your package manager of choice:\n\n```bash\nnpm i @flit/cdk-pipeline\n```\n\n```bash\npnpm add @flit/cdk-pipeline\n```\n\n```bash\nyarn add @flit/cdk-pipeline\n```\n\n### Core concepts\n\n#### - [Example Project](https://github.com/vierroth/cdk-pipeline/blob/main/example/README.md)\n\nTo better understand the core concepts take a look at the included [example project](https://github.com/vierroth/cdk-pipeline/blob/main/example/README.md).\n\n#### - Pipeline\n\nThe `Pipeline` construct will create a CloudFormation Stack which contains the pipeline and all of the required peripheral resources to make it work.\n\n#### - Segment\n\nA `Segment` is simply a pre-configured set of pipeline actions which together represent a commonly used CI/CD pattern, like for example building and deploying a stack.\n\nTo build properly, a Pipeline requires at least one SourceSegment, exactly one PipelineSegment and at least one other segment.\n\n#### - Artifact\n\nAn `Artifact` represents a pipeline artifact which can be used to pass information between stages. Every artifact needs to be the output of exactly one Segment and can be consumed by any segments that need that output.\n"
3925
3937
  },
3926
3938
  "repository": {
3927
3939
  "type": "git",
3928
- "url": "https://github.com/jumper-de/cdk-pipeline.git"
3940
+ "url": "https://github.com/vierroth/cdk-pipeline.git"
3929
3941
  },
3930
3942
  "schema": "jsii/0.10.0",
3931
3943
  "targets": {
@@ -4008,33 +4020,37 @@
4008
4020
  },
4009
4021
  "locationInModule": {
4010
4022
  "filename": "src/artifact.ts",
4011
- "line": 21
4023
+ "line": 11
4012
4024
  },
4013
- "name": "obtainConsumers",
4014
- "returns": {
4015
- "type": {
4016
- "collection": {
4017
- "elementtype": {
4018
- "fqn": "@flit/cdk-pipeline.Segment"
4019
- },
4020
- "kind": "array"
4025
+ "name": "produce",
4026
+ "parameters": [
4027
+ {
4028
+ "name": "producer",
4029
+ "type": {
4030
+ "fqn": "@flit/cdk-pipeline.Segment"
4021
4031
  }
4022
4032
  }
4023
- }
4024
- },
4033
+ ]
4034
+ }
4035
+ ],
4036
+ "name": "Artifact",
4037
+ "properties": [
4025
4038
  {
4026
4039
  "docs": {
4027
4040
  "stability": "stable"
4028
4041
  },
4042
+ "immutable": true,
4029
4043
  "locationInModule": {
4030
4044
  "filename": "src/artifact.ts",
4031
- "line": 18
4045
+ "line": 21
4032
4046
  },
4033
- "name": "obtainProducer",
4034
- "returns": {
4035
- "optional": true,
4036
- "type": {
4037
- "fqn": "@flit/cdk-pipeline.Segment"
4047
+ "name": "consumers",
4048
+ "type": {
4049
+ "collection": {
4050
+ "elementtype": {
4051
+ "fqn": "@flit/cdk-pipeline.Segment"
4052
+ },
4053
+ "kind": "array"
4038
4054
  }
4039
4055
  }
4040
4056
  },
@@ -4042,22 +4058,18 @@
4042
4058
  "docs": {
4043
4059
  "stability": "stable"
4044
4060
  },
4061
+ "immutable": true,
4045
4062
  "locationInModule": {
4046
4063
  "filename": "src/artifact.ts",
4047
- "line": 11
4064
+ "line": 18
4048
4065
  },
4049
- "name": "produce",
4050
- "parameters": [
4051
- {
4052
- "name": "producer",
4053
- "type": {
4054
- "fqn": "@flit/cdk-pipeline.Segment"
4055
- }
4056
- }
4057
- ]
4066
+ "name": "producer",
4067
+ "optional": true,
4068
+ "type": {
4069
+ "fqn": "@flit/cdk-pipeline.Segment"
4070
+ }
4058
4071
  }
4059
4072
  ],
4060
- "name": "Artifact",
4061
4073
  "symbolId": "src/artifact:Artifact"
4062
4074
  },
4063
4075
  "@flit/cdk-pipeline.CodeCommitSourceSegment": {
@@ -4411,7 +4423,7 @@
4411
4423
  },
4412
4424
  "locationInModule": {
4413
4425
  "filename": "src/code-star-source-segment.ts",
4414
- "line": 23
4426
+ "line": 41
4415
4427
  },
4416
4428
  "parameters": [
4417
4429
  {
@@ -4425,7 +4437,7 @@
4425
4437
  "kind": "class",
4426
4438
  "locationInModule": {
4427
4439
  "filename": "src/code-star-source-segment.ts",
4428
- "line": 21
4440
+ "line": 39
4429
4441
  },
4430
4442
  "methods": [
4431
4443
  {
@@ -4434,7 +4446,7 @@
4434
4446
  },
4435
4447
  "locationInModule": {
4436
4448
  "filename": "src/code-star-source-segment.ts",
4437
- "line": 27
4449
+ "line": 45
4438
4450
  },
4439
4451
  "name": "construct",
4440
4452
  "overrides": "@flit/cdk-pipeline.Segment",
@@ -4469,7 +4481,7 @@
4469
4481
  },
4470
4482
  "locationInModule": {
4471
4483
  "filename": "src/code-star-source-segment.ts",
4472
- "line": 51
4484
+ "line": 71
4473
4485
  },
4474
4486
  "parameters": [
4475
4487
  {
@@ -4495,7 +4507,7 @@
4495
4507
  "kind": "class",
4496
4508
  "locationInModule": {
4497
4509
  "filename": "src/code-star-source-segment.ts",
4498
- "line": 48
4510
+ "line": 68
4499
4511
  },
4500
4512
  "name": "CodeStarSourceSegmentConstructed",
4501
4513
  "properties": [
@@ -4506,7 +4518,7 @@
4506
4518
  "immutable": true,
4507
4519
  "locationInModule": {
4508
4520
  "filename": "src/code-star-source-segment.ts",
4509
- "line": 50
4521
+ "line": 70
4510
4522
  },
4511
4523
  "name": "actions",
4512
4524
  "overrides": "@flit/cdk-pipeline.SegmentConstructed",
@@ -4526,7 +4538,7 @@
4526
4538
  "immutable": true,
4527
4539
  "locationInModule": {
4528
4540
  "filename": "src/code-star-source-segment.ts",
4529
- "line": 49
4541
+ "line": 69
4530
4542
  },
4531
4543
  "name": "name",
4532
4544
  "overrides": "@flit/cdk-pipeline.SegmentConstructed",
@@ -4547,7 +4559,7 @@
4547
4559
  "kind": "interface",
4548
4560
  "locationInModule": {
4549
4561
  "filename": "src/code-star-source-segment.ts",
4550
- "line": 36
4562
+ "line": 56
4551
4563
  },
4552
4564
  "name": "CodeStarSourceSegmentConstructedProps",
4553
4565
  "properties": [
@@ -4559,7 +4571,7 @@
4559
4571
  "immutable": true,
4560
4572
  "locationInModule": {
4561
4573
  "filename": "src/code-star-source-segment.ts",
4562
- "line": 38
4574
+ "line": 58
4563
4575
  },
4564
4576
  "name": "actionName",
4565
4577
  "type": {
@@ -4574,7 +4586,7 @@
4574
4586
  "immutable": true,
4575
4587
  "locationInModule": {
4576
4588
  "filename": "src/code-star-source-segment.ts",
4577
- "line": 39
4589
+ "line": 59
4578
4590
  },
4579
4591
  "name": "connectionArn",
4580
4592
  "type": {
@@ -4589,7 +4601,7 @@
4589
4601
  "immutable": true,
4590
4602
  "locationInModule": {
4591
4603
  "filename": "src/code-star-source-segment.ts",
4592
- "line": 37
4604
+ "line": 57
4593
4605
  },
4594
4606
  "name": "output",
4595
4607
  "type": {
@@ -4604,7 +4616,7 @@
4604
4616
  "immutable": true,
4605
4617
  "locationInModule": {
4606
4618
  "filename": "src/code-star-source-segment.ts",
4607
- "line": 40
4619
+ "line": 60
4608
4620
  },
4609
4621
  "name": "owner",
4610
4622
  "type": {
@@ -4619,7 +4631,7 @@
4619
4631
  "immutable": true,
4620
4632
  "locationInModule": {
4621
4633
  "filename": "src/code-star-source-segment.ts",
4622
- "line": 41
4634
+ "line": 61
4623
4635
  },
4624
4636
  "name": "repo",
4625
4637
  "type": {
@@ -4634,7 +4646,7 @@
4634
4646
  "immutable": true,
4635
4647
  "locationInModule": {
4636
4648
  "filename": "src/code-star-source-segment.ts",
4637
- "line": 42
4649
+ "line": 62
4638
4650
  },
4639
4651
  "name": "branch",
4640
4652
  "optional": true,
@@ -4650,7 +4662,7 @@
4650
4662
  "immutable": true,
4651
4663
  "locationInModule": {
4652
4664
  "filename": "src/code-star-source-segment.ts",
4653
- "line": 43
4665
+ "line": 63
4654
4666
  },
4655
4667
  "name": "runOrder",
4656
4668
  "optional": true,
@@ -4666,7 +4678,7 @@
4666
4678
  "immutable": true,
4667
4679
  "locationInModule": {
4668
4680
  "filename": "src/code-star-source-segment.ts",
4669
- "line": 44
4681
+ "line": 64
4670
4682
  },
4671
4683
  "name": "triggerOnPush",
4672
4684
  "optional": true,
@@ -4682,7 +4694,7 @@
4682
4694
  "immutable": true,
4683
4695
  "locationInModule": {
4684
4696
  "filename": "src/code-star-source-segment.ts",
4685
- "line": 45
4697
+ "line": 65
4686
4698
  },
4687
4699
  "name": "variablesNamespace",
4688
4700
  "optional": true,
@@ -4713,12 +4725,15 @@
4713
4725
  {
4714
4726
  "abstract": true,
4715
4727
  "docs": {
4716
- "stability": "stable"
4728
+ "example": "`\"arn:aws:codestar-connections:us-east-1:123456789012:connection/12345678-abcd-12ab-34cdef5678gh\"`",
4729
+ "see": "https://docs.aws.amazon.com/codepipeline/latest/userguide/connections-create.html",
4730
+ "stability": "stable",
4731
+ "summary": "The ARN of the CodeStar Connection created in the AWS console that has permissions to access this GitHub or BitBucket repository."
4717
4732
  },
4718
4733
  "immutable": true,
4719
4734
  "locationInModule": {
4720
4735
  "filename": "src/code-star-source-segment.ts",
4721
- "line": 11
4736
+ "line": 21
4722
4737
  },
4723
4738
  "name": "connectionArn",
4724
4739
  "type": {
@@ -4728,12 +4743,14 @@
4728
4743
  {
4729
4744
  "abstract": true,
4730
4745
  "docs": {
4731
- "stability": "stable"
4746
+ "example": "`\"aws\"`",
4747
+ "stability": "stable",
4748
+ "summary": "The owning user or organization of the repository."
4732
4749
  },
4733
4750
  "immutable": true,
4734
4751
  "locationInModule": {
4735
4752
  "filename": "src/code-star-source-segment.ts",
4736
- "line": 10
4753
+ "line": 14
4737
4754
  },
4738
4755
  "name": "owner",
4739
4756
  "type": {
@@ -4743,12 +4760,14 @@
4743
4760
  {
4744
4761
  "abstract": true,
4745
4762
  "docs": {
4746
- "stability": "stable"
4763
+ "example": "`\"aws-cdk\"`",
4764
+ "stability": "stable",
4765
+ "summary": "The name of the repository."
4747
4766
  },
4748
4767
  "immutable": true,
4749
4768
  "locationInModule": {
4750
4769
  "filename": "src/code-star-source-segment.ts",
4751
- "line": 12
4770
+ "line": 26
4752
4771
  },
4753
4772
  "name": "repository",
4754
4773
  "type": {
@@ -4758,12 +4777,14 @@
4758
4777
  {
4759
4778
  "abstract": true,
4760
4779
  "docs": {
4761
- "stability": "stable"
4780
+ "default": "`\"master\"`",
4781
+ "stability": "stable",
4782
+ "summary": "The branch to build."
4762
4783
  },
4763
4784
  "immutable": true,
4764
4785
  "locationInModule": {
4765
4786
  "filename": "src/code-star-source-segment.ts",
4766
- "line": 13
4787
+ "line": 31
4767
4788
  },
4768
4789
  "name": "branch",
4769
4790
  "optional": true,
@@ -4779,7 +4800,7 @@
4779
4800
  "immutable": true,
4780
4801
  "locationInModule": {
4781
4802
  "filename": "src/code-star-source-segment.ts",
4782
- "line": 14
4803
+ "line": 32
4783
4804
  },
4784
4805
  "name": "triggerOnPush",
4785
4806
  "optional": true,
@@ -4795,7 +4816,7 @@
4795
4816
  "immutable": true,
4796
4817
  "locationInModule": {
4797
4818
  "filename": "src/code-star-source-segment.ts",
4798
- "line": 15
4819
+ "line": 33
4799
4820
  },
4800
4821
  "name": "variablesNamespace",
4801
4822
  "optional": true,
@@ -4822,7 +4843,7 @@
4822
4843
  },
4823
4844
  "locationInModule": {
4824
4845
  "filename": "src/git-hub-source-segment.ts",
4825
- "line": 27
4846
+ "line": 39
4826
4847
  },
4827
4848
  "parameters": [
4828
4849
  {
@@ -4836,7 +4857,7 @@
4836
4857
  "kind": "class",
4837
4858
  "locationInModule": {
4838
4859
  "filename": "src/git-hub-source-segment.ts",
4839
- "line": 25
4860
+ "line": 37
4840
4861
  },
4841
4862
  "methods": [
4842
4863
  {
@@ -4845,7 +4866,7 @@
4845
4866
  },
4846
4867
  "locationInModule": {
4847
4868
  "filename": "src/git-hub-source-segment.ts",
4848
- "line": 31
4869
+ "line": 43
4849
4870
  },
4850
4871
  "name": "construct",
4851
4872
  "overrides": "@flit/cdk-pipeline.Segment",
@@ -4880,7 +4901,7 @@
4880
4901
  },
4881
4902
  "locationInModule": {
4882
4903
  "filename": "src/git-hub-source-segment.ts",
4883
- "line": 55
4904
+ "line": 69
4884
4905
  },
4885
4906
  "parameters": [
4886
4907
  {
@@ -4906,7 +4927,7 @@
4906
4927
  "kind": "class",
4907
4928
  "locationInModule": {
4908
4929
  "filename": "src/git-hub-source-segment.ts",
4909
- "line": 52
4930
+ "line": 66
4910
4931
  },
4911
4932
  "name": "GitHubSourceSegmentConstructed",
4912
4933
  "properties": [
@@ -4917,7 +4938,7 @@
4917
4938
  "immutable": true,
4918
4939
  "locationInModule": {
4919
4940
  "filename": "src/git-hub-source-segment.ts",
4920
- "line": 54
4941
+ "line": 68
4921
4942
  },
4922
4943
  "name": "actions",
4923
4944
  "overrides": "@flit/cdk-pipeline.SegmentConstructed",
@@ -4937,7 +4958,7 @@
4937
4958
  "immutable": true,
4938
4959
  "locationInModule": {
4939
4960
  "filename": "src/git-hub-source-segment.ts",
4940
- "line": 53
4961
+ "line": 67
4941
4962
  },
4942
4963
  "name": "name",
4943
4964
  "overrides": "@flit/cdk-pipeline.SegmentConstructed",
@@ -4958,7 +4979,7 @@
4958
4979
  "kind": "interface",
4959
4980
  "locationInModule": {
4960
4981
  "filename": "src/git-hub-source-segment.ts",
4961
- "line": 40
4982
+ "line": 54
4962
4983
  },
4963
4984
  "name": "GitHubSourceSegmentConstructedProps",
4964
4985
  "properties": [
@@ -4970,7 +4991,7 @@
4970
4991
  "immutable": true,
4971
4992
  "locationInModule": {
4972
4993
  "filename": "src/git-hub-source-segment.ts",
4973
- "line": 42
4994
+ "line": 56
4974
4995
  },
4975
4996
  "name": "actionName",
4976
4997
  "type": {
@@ -4985,7 +5006,7 @@
4985
5006
  "immutable": true,
4986
5007
  "locationInModule": {
4987
5008
  "filename": "src/git-hub-source-segment.ts",
4988
- "line": 43
5009
+ "line": 57
4989
5010
  },
4990
5011
  "name": "oauthToken",
4991
5012
  "type": {
@@ -5000,7 +5021,7 @@
5000
5021
  "immutable": true,
5001
5022
  "locationInModule": {
5002
5023
  "filename": "src/git-hub-source-segment.ts",
5003
- "line": 41
5024
+ "line": 55
5004
5025
  },
5005
5026
  "name": "output",
5006
5027
  "type": {
@@ -5015,7 +5036,7 @@
5015
5036
  "immutable": true,
5016
5037
  "locationInModule": {
5017
5038
  "filename": "src/git-hub-source-segment.ts",
5018
- "line": 44
5039
+ "line": 58
5019
5040
  },
5020
5041
  "name": "owner",
5021
5042
  "type": {
@@ -5030,7 +5051,7 @@
5030
5051
  "immutable": true,
5031
5052
  "locationInModule": {
5032
5053
  "filename": "src/git-hub-source-segment.ts",
5033
- "line": 45
5054
+ "line": 59
5034
5055
  },
5035
5056
  "name": "repo",
5036
5057
  "type": {
@@ -5045,7 +5066,7 @@
5045
5066
  "immutable": true,
5046
5067
  "locationInModule": {
5047
5068
  "filename": "src/git-hub-source-segment.ts",
5048
- "line": 46
5069
+ "line": 60
5049
5070
  },
5050
5071
  "name": "branch",
5051
5072
  "optional": true,
@@ -5061,7 +5082,7 @@
5061
5082
  "immutable": true,
5062
5083
  "locationInModule": {
5063
5084
  "filename": "src/git-hub-source-segment.ts",
5064
- "line": 47
5085
+ "line": 61
5065
5086
  },
5066
5087
  "name": "runOrder",
5067
5088
  "optional": true,
@@ -5077,7 +5098,7 @@
5077
5098
  "immutable": true,
5078
5099
  "locationInModule": {
5079
5100
  "filename": "src/git-hub-source-segment.ts",
5080
- "line": 48
5101
+ "line": 62
5081
5102
  },
5082
5103
  "name": "trigger",
5083
5104
  "optional": true,
@@ -5093,7 +5114,7 @@
5093
5114
  "immutable": true,
5094
5115
  "locationInModule": {
5095
5116
  "filename": "src/git-hub-source-segment.ts",
5096
- "line": 49
5117
+ "line": 63
5097
5118
  },
5098
5119
  "name": "variablesNamespace",
5099
5120
  "optional": true,
@@ -5139,12 +5160,14 @@
5139
5160
  {
5140
5161
  "abstract": true,
5141
5162
  "docs": {
5142
- "stability": "stable"
5163
+ "example": "`\"aws\"`",
5164
+ "stability": "stable",
5165
+ "summary": "The owning user or organization of the repository."
5143
5166
  },
5144
5167
  "immutable": true,
5145
5168
  "locationInModule": {
5146
5169
  "filename": "src/git-hub-source-segment.ts",
5147
- "line": 15
5170
+ "line": 19
5148
5171
  },
5149
5172
  "name": "owner",
5150
5173
  "type": {
@@ -5154,12 +5177,14 @@
5154
5177
  {
5155
5178
  "abstract": true,
5156
5179
  "docs": {
5157
- "stability": "stable"
5180
+ "example": "`\"aws-cdk\"`",
5181
+ "stability": "stable",
5182
+ "summary": "The name of the repository."
5158
5183
  },
5159
5184
  "immutable": true,
5160
5185
  "locationInModule": {
5161
5186
  "filename": "src/git-hub-source-segment.ts",
5162
- "line": 16
5187
+ "line": 24
5163
5188
  },
5164
5189
  "name": "repository",
5165
5190
  "type": {
@@ -5169,12 +5194,14 @@
5169
5194
  {
5170
5195
  "abstract": true,
5171
5196
  "docs": {
5172
- "stability": "stable"
5197
+ "default": "`\"master\"`",
5198
+ "stability": "stable",
5199
+ "summary": "The branch to build."
5173
5200
  },
5174
5201
  "immutable": true,
5175
5202
  "locationInModule": {
5176
5203
  "filename": "src/git-hub-source-segment.ts",
5177
- "line": 17
5204
+ "line": 29
5178
5205
  },
5179
5206
  "name": "branch",
5180
5207
  "optional": true,
@@ -5190,7 +5217,7 @@
5190
5217
  "immutable": true,
5191
5218
  "locationInModule": {
5192
5219
  "filename": "src/git-hub-source-segment.ts",
5193
- "line": 18
5220
+ "line": 30
5194
5221
  },
5195
5222
  "name": "trigger",
5196
5223
  "optional": true,
@@ -5206,7 +5233,7 @@
5206
5233
  "immutable": true,
5207
5234
  "locationInModule": {
5208
5235
  "filename": "src/git-hub-source-segment.ts",
5209
- "line": 19
5236
+ "line": 31
5210
5237
  },
5211
5238
  "name": "variablesNamespace",
5212
5239
  "optional": true,
@@ -5335,26 +5362,10 @@
5335
5362
  "kind": "interface",
5336
5363
  "locationInModule": {
5337
5364
  "filename": "src/pipeline.ts",
5338
- "line": 15
5365
+ "line": 14
5339
5366
  },
5340
5367
  "name": "PipelineProps",
5341
5368
  "properties": [
5342
- {
5343
- "abstract": true,
5344
- "docs": {
5345
- "stability": "stable",
5346
- "summary": "The path to the cdk projects root directory containing the cdk.json file relative to the asset root."
5347
- },
5348
- "immutable": true,
5349
- "locationInModule": {
5350
- "filename": "src/pipeline.ts",
5351
- "line": 25
5352
- },
5353
- "name": "rootDir",
5354
- "type": {
5355
- "primitive": "string"
5356
- }
5357
- },
5358
5369
  {
5359
5370
  "abstract": true,
5360
5371
  "docs": {
@@ -5386,13 +5397,31 @@
5386
5397
  "immutable": true,
5387
5398
  "locationInModule": {
5388
5399
  "filename": "src/pipeline.ts",
5389
- "line": 20
5400
+ "line": 19
5390
5401
  },
5391
5402
  "name": "pipelineName",
5392
5403
  "optional": true,
5393
5404
  "type": {
5394
5405
  "primitive": "string"
5395
5406
  }
5407
+ },
5408
+ {
5409
+ "abstract": true,
5410
+ "docs": {
5411
+ "default": "`\".\"`",
5412
+ "stability": "stable",
5413
+ "summary": "The path to the cdk projects root directory containing the cdk.json file relative to the asset root."
5414
+ },
5415
+ "immutable": true,
5416
+ "locationInModule": {
5417
+ "filename": "src/pipeline.ts",
5418
+ "line": 25
5419
+ },
5420
+ "name": "rootDir",
5421
+ "optional": true,
5422
+ "type": {
5423
+ "primitive": "string"
5424
+ }
5396
5425
  }
5397
5426
  ],
5398
5427
  "symbolId": "src/pipeline:PipelineProps"
@@ -5413,7 +5442,7 @@
5413
5442
  },
5414
5443
  "locationInModule": {
5415
5444
  "filename": "src/pipeline-segment.ts",
5416
- "line": 74
5445
+ "line": 66
5417
5446
  },
5418
5447
  "parameters": [
5419
5448
  {
@@ -5427,7 +5456,7 @@
5427
5456
  "kind": "class",
5428
5457
  "locationInModule": {
5429
5458
  "filename": "src/pipeline-segment.ts",
5430
- "line": 70
5459
+ "line": 62
5431
5460
  },
5432
5461
  "methods": [
5433
5462
  {
@@ -5436,7 +5465,7 @@
5436
5465
  },
5437
5466
  "locationInModule": {
5438
5467
  "filename": "src/pipeline-segment.ts",
5439
- "line": 79
5468
+ "line": 71
5440
5469
  },
5441
5470
  "name": "construct",
5442
5471
  "overrides": "@flit/cdk-pipeline.Segment",
@@ -5464,7 +5493,7 @@
5464
5493
  "immutable": true,
5465
5494
  "locationInModule": {
5466
5495
  "filename": "src/pipeline-segment.ts",
5467
- "line": 71
5496
+ "line": 63
5468
5497
  },
5469
5498
  "name": "isPipeline",
5470
5499
  "overrides": "@flit/cdk-pipeline.Segment",
@@ -5479,7 +5508,7 @@
5479
5508
  "immutable": true,
5480
5509
  "locationInModule": {
5481
5510
  "filename": "src/pipeline-segment.ts",
5482
- "line": 72
5511
+ "line": 64
5483
5512
  },
5484
5513
  "name": "props",
5485
5514
  "type": {
@@ -5502,7 +5531,7 @@
5502
5531
  },
5503
5532
  "locationInModule": {
5504
5533
  "filename": "src/pipeline-segment.ts",
5505
- "line": 107
5534
+ "line": 97
5506
5535
  },
5507
5536
  "parameters": [
5508
5537
  {
@@ -5528,7 +5557,7 @@
5528
5557
  "kind": "class",
5529
5558
  "locationInModule": {
5530
5559
  "filename": "src/pipeline-segment.ts",
5531
- "line": 103
5560
+ "line": 93
5532
5561
  },
5533
5562
  "name": "PipelineSegmentConstructed",
5534
5563
  "properties": [
@@ -5539,7 +5568,7 @@
5539
5568
  "immutable": true,
5540
5569
  "locationInModule": {
5541
5570
  "filename": "src/pipeline-segment.ts",
5542
- "line": 105
5571
+ "line": 95
5543
5572
  },
5544
5573
  "name": "actions",
5545
5574
  "overrides": "@flit/cdk-pipeline.SegmentConstructed",
@@ -5559,7 +5588,7 @@
5559
5588
  "immutable": true,
5560
5589
  "locationInModule": {
5561
5590
  "filename": "src/pipeline-segment.ts",
5562
- "line": 104
5591
+ "line": 94
5563
5592
  },
5564
5593
  "name": "name",
5565
5594
  "overrides": "@flit/cdk-pipeline.SegmentConstructed",
@@ -5580,7 +5609,7 @@
5580
5609
  "kind": "interface",
5581
5610
  "locationInModule": {
5582
5611
  "filename": "src/pipeline-segment.ts",
5583
- "line": 89
5612
+ "line": 81
5584
5613
  },
5585
5614
  "name": "PipelineSegmentConstructedProps",
5586
5615
  "properties": [
@@ -5592,7 +5621,7 @@
5592
5621
  "immutable": true,
5593
5622
  "locationInModule": {
5594
5623
  "filename": "src/pipeline-segment.ts",
5595
- "line": 96
5624
+ "line": 86
5596
5625
  },
5597
5626
  "name": "input",
5598
5627
  "type": {
@@ -5607,7 +5636,7 @@
5607
5636
  "immutable": true,
5608
5637
  "locationInModule": {
5609
5638
  "filename": "src/pipeline-segment.ts",
5610
- "line": 91
5639
+ "line": 83
5611
5640
  },
5612
5641
  "name": "project",
5613
5642
  "type": {
@@ -5622,7 +5651,7 @@
5622
5651
  "immutable": true,
5623
5652
  "locationInModule": {
5624
5653
  "filename": "src/pipeline-segment.ts",
5625
- "line": 90
5654
+ "line": 82
5626
5655
  },
5627
5656
  "name": "stack",
5628
5657
  "type": {
@@ -5637,23 +5666,7 @@
5637
5666
  "immutable": true,
5638
5667
  "locationInModule": {
5639
5668
  "filename": "src/pipeline-segment.ts",
5640
- "line": 94
5641
- },
5642
- "name": "account",
5643
- "optional": true,
5644
- "type": {
5645
- "primitive": "string"
5646
- }
5647
- },
5648
- {
5649
- "abstract": true,
5650
- "docs": {
5651
- "stability": "stable"
5652
- },
5653
- "immutable": true,
5654
- "locationInModule": {
5655
- "filename": "src/pipeline-segment.ts",
5656
- "line": 92
5669
+ "line": 84
5657
5670
  },
5658
5671
  "name": "environmentVariables",
5659
5672
  "optional": true,
@@ -5674,7 +5687,7 @@
5674
5687
  "immutable": true,
5675
5688
  "locationInModule": {
5676
5689
  "filename": "src/pipeline-segment.ts",
5677
- "line": 97
5690
+ "line": 87
5678
5691
  },
5679
5692
  "name": "extraInputs",
5680
5693
  "optional": true,
@@ -5695,7 +5708,7 @@
5695
5708
  "immutable": true,
5696
5709
  "locationInModule": {
5697
5710
  "filename": "src/pipeline-segment.ts",
5698
- "line": 100
5711
+ "line": 90
5699
5712
  },
5700
5713
  "name": "manualApproval",
5701
5714
  "optional": true,
@@ -5711,7 +5724,7 @@
5711
5724
  "immutable": true,
5712
5725
  "locationInModule": {
5713
5726
  "filename": "src/pipeline-segment.ts",
5714
- "line": 98
5727
+ "line": 88
5715
5728
  },
5716
5729
  "name": "output",
5717
5730
  "optional": true,
@@ -5727,7 +5740,7 @@
5727
5740
  "immutable": true,
5728
5741
  "locationInModule": {
5729
5742
  "filename": "src/pipeline-segment.ts",
5730
- "line": 99
5743
+ "line": 89
5731
5744
  },
5732
5745
  "name": "outputFileName",
5733
5746
  "optional": true,
@@ -5743,23 +5756,7 @@
5743
5756
  "immutable": true,
5744
5757
  "locationInModule": {
5745
5758
  "filename": "src/pipeline-segment.ts",
5746
- "line": 95
5747
- },
5748
- "name": "region",
5749
- "optional": true,
5750
- "type": {
5751
- "primitive": "string"
5752
- }
5753
- },
5754
- {
5755
- "abstract": true,
5756
- "docs": {
5757
- "stability": "stable"
5758
- },
5759
- "immutable": true,
5760
- "locationInModule": {
5761
- "filename": "src/pipeline-segment.ts",
5762
- "line": 93
5759
+ "line": 85
5763
5760
  },
5764
5761
  "name": "stackName",
5765
5762
  "optional": true,
@@ -5831,23 +5828,6 @@
5831
5828
  "fqn": "aws-cdk-lib.aws_codebuild.ProjectProps"
5832
5829
  }
5833
5830
  },
5834
- {
5835
- "abstract": true,
5836
- "docs": {
5837
- "stability": "stable",
5838
- "summary": "The AWS account this Action is supposed to operate in."
5839
- },
5840
- "immutable": true,
5841
- "locationInModule": {
5842
- "filename": "src/pipeline-segment.ts",
5843
- "line": 45
5844
- },
5845
- "name": "account",
5846
- "optional": true,
5847
- "type": {
5848
- "primitive": "string"
5849
- }
5850
- },
5851
5831
  {
5852
5832
  "abstract": true,
5853
5833
  "docs": {
@@ -5880,7 +5860,7 @@
5880
5860
  "immutable": true,
5881
5861
  "locationInModule": {
5882
5862
  "filename": "src/pipeline-segment.ts",
5883
- "line": 64
5863
+ "line": 56
5884
5864
  },
5885
5865
  "name": "manualApproval",
5886
5866
  "optional": true,
@@ -5898,7 +5878,7 @@
5898
5878
  "immutable": true,
5899
5879
  "locationInModule": {
5900
5880
  "filename": "src/pipeline-segment.ts",
5901
- "line": 54
5881
+ "line": 46
5902
5882
  },
5903
5883
  "name": "output",
5904
5884
  "optional": true,
@@ -5916,7 +5896,7 @@
5916
5896
  "immutable": true,
5917
5897
  "locationInModule": {
5918
5898
  "filename": "src/pipeline-segment.ts",
5919
- "line": 59
5899
+ "line": 51
5920
5900
  },
5921
5901
  "name": "outputFileName",
5922
5902
  "optional": true,
@@ -5927,26 +5907,7 @@
5927
5907
  {
5928
5908
  "abstract": true,
5929
5909
  "docs": {
5930
- "stability": "stable",
5931
- "summary": "The AWS region the given Action resides in."
5932
- },
5933
- "immutable": true,
5934
- "locationInModule": {
5935
- "filename": "src/pipeline-segment.ts",
5936
- "line": 49
5937
- },
5938
- "name": "region",
5939
- "optional": true,
5940
- "type": {
5941
- "primitive": "string"
5942
- }
5943
- },
5944
- {
5945
- "abstract": true,
5946
- "docs": {
5947
- "custom": {
5948
- "deafult": "The name of the given stack."
5949
- },
5910
+ "default": "The name of the given stack.",
5950
5911
  "stability": "stable",
5951
5912
  "summary": "The name of the stack to apply this action to."
5952
5913
  },
@@ -6606,7 +6567,7 @@
6606
6567
  },
6607
6568
  "locationInModule": {
6608
6569
  "filename": "src/segment.ts",
6609
- "line": 39
6570
+ "line": 31
6610
6571
  },
6611
6572
  "name": "construct",
6612
6573
  "parameters": [
@@ -6757,7 +6718,7 @@
6757
6718
  "kind": "class",
6758
6719
  "locationInModule": {
6759
6720
  "filename": "src/segment.ts",
6760
- "line": 42
6721
+ "line": 34
6761
6722
  },
6762
6723
  "name": "SegmentConstructed",
6763
6724
  "properties": [
@@ -6768,7 +6729,7 @@
6768
6729
  "immutable": true,
6769
6730
  "locationInModule": {
6770
6731
  "filename": "src/segment.ts",
6771
- "line": 44
6732
+ "line": 36
6772
6733
  },
6773
6734
  "name": "actions",
6774
6735
  "type": {
@@ -6787,7 +6748,7 @@
6787
6748
  "immutable": true,
6788
6749
  "locationInModule": {
6789
6750
  "filename": "src/segment.ts",
6790
- "line": 43
6751
+ "line": 35
6791
6752
  },
6792
6753
  "name": "name",
6793
6754
  "type": {
@@ -6972,7 +6933,7 @@
6972
6933
  },
6973
6934
  "locationInModule": {
6974
6935
  "filename": "src/stack-segment.ts",
6975
- "line": 82
6936
+ "line": 73
6976
6937
  },
6977
6938
  "parameters": [
6978
6939
  {
@@ -6986,7 +6947,7 @@
6986
6947
  "kind": "class",
6987
6948
  "locationInModule": {
6988
6949
  "filename": "src/stack-segment.ts",
6989
- "line": 79
6950
+ "line": 70
6990
6951
  },
6991
6952
  "methods": [
6992
6953
  {
@@ -6995,7 +6956,7 @@
6995
6956
  },
6996
6957
  "locationInModule": {
6997
6958
  "filename": "src/stack-segment.ts",
6998
- "line": 87
6959
+ "line": 78
6999
6960
  },
7000
6961
  "name": "construct",
7001
6962
  "overrides": "@flit/cdk-pipeline.Segment",
@@ -7023,7 +6984,7 @@
7023
6984
  "immutable": true,
7024
6985
  "locationInModule": {
7025
6986
  "filename": "src/stack-segment.ts",
7026
- "line": 80
6987
+ "line": 71
7027
6988
  },
7028
6989
  "name": "props",
7029
6990
  "type": {
@@ -7046,7 +7007,7 @@
7046
7007
  },
7047
7008
  "locationInModule": {
7048
7009
  "filename": "src/stack-segment.ts",
7049
- "line": 118
7010
+ "line": 107
7050
7011
  },
7051
7012
  "parameters": [
7052
7013
  {
@@ -7072,7 +7033,7 @@
7072
7033
  "kind": "class",
7073
7034
  "locationInModule": {
7074
7035
  "filename": "src/stack-segment.ts",
7075
- "line": 114
7036
+ "line": 103
7076
7037
  },
7077
7038
  "name": "StackSegmentConstructed",
7078
7039
  "properties": [
@@ -7083,7 +7044,7 @@
7083
7044
  "immutable": true,
7084
7045
  "locationInModule": {
7085
7046
  "filename": "src/stack-segment.ts",
7086
- "line": 116
7047
+ "line": 105
7087
7048
  },
7088
7049
  "name": "actions",
7089
7050
  "overrides": "@flit/cdk-pipeline.SegmentConstructed",
@@ -7103,7 +7064,7 @@
7103
7064
  "immutable": true,
7104
7065
  "locationInModule": {
7105
7066
  "filename": "src/stack-segment.ts",
7106
- "line": 115
7067
+ "line": 104
7107
7068
  },
7108
7069
  "name": "name",
7109
7070
  "overrides": "@flit/cdk-pipeline.SegmentConstructed",
@@ -7124,7 +7085,7 @@
7124
7085
  "kind": "interface",
7125
7086
  "locationInModule": {
7126
7087
  "filename": "src/stack-segment.ts",
7127
- "line": 100
7088
+ "line": 91
7128
7089
  },
7129
7090
  "name": "StackSegmentConstructedProps",
7130
7091
  "properties": [
@@ -7136,7 +7097,7 @@
7136
7097
  "immutable": true,
7137
7098
  "locationInModule": {
7138
7099
  "filename": "src/stack-segment.ts",
7139
- "line": 107
7100
+ "line": 96
7140
7101
  },
7141
7102
  "name": "input",
7142
7103
  "type": {
@@ -7151,7 +7112,7 @@
7151
7112
  "immutable": true,
7152
7113
  "locationInModule": {
7153
7114
  "filename": "src/stack-segment.ts",
7154
- "line": 101
7115
+ "line": 92
7155
7116
  },
7156
7117
  "name": "stack",
7157
7118
  "type": {
@@ -7166,23 +7127,7 @@
7166
7127
  "immutable": true,
7167
7128
  "locationInModule": {
7168
7129
  "filename": "src/stack-segment.ts",
7169
- "line": 105
7170
- },
7171
- "name": "account",
7172
- "optional": true,
7173
- "type": {
7174
- "primitive": "string"
7175
- }
7176
- },
7177
- {
7178
- "abstract": true,
7179
- "docs": {
7180
- "stability": "stable"
7181
- },
7182
- "immutable": true,
7183
- "locationInModule": {
7184
- "filename": "src/stack-segment.ts",
7185
- "line": 103
7130
+ "line": 94
7186
7131
  },
7187
7132
  "name": "environmentVariables",
7188
7133
  "optional": true,
@@ -7203,7 +7148,7 @@
7203
7148
  "immutable": true,
7204
7149
  "locationInModule": {
7205
7150
  "filename": "src/stack-segment.ts",
7206
- "line": 108
7151
+ "line": 97
7207
7152
  },
7208
7153
  "name": "extraInputs",
7209
7154
  "optional": true,
@@ -7224,7 +7169,7 @@
7224
7169
  "immutable": true,
7225
7170
  "locationInModule": {
7226
7171
  "filename": "src/stack-segment.ts",
7227
- "line": 111
7172
+ "line": 100
7228
7173
  },
7229
7174
  "name": "manualApproval",
7230
7175
  "optional": true,
@@ -7240,7 +7185,7 @@
7240
7185
  "immutable": true,
7241
7186
  "locationInModule": {
7242
7187
  "filename": "src/stack-segment.ts",
7243
- "line": 109
7188
+ "line": 98
7244
7189
  },
7245
7190
  "name": "output",
7246
7191
  "optional": true,
@@ -7256,7 +7201,7 @@
7256
7201
  "immutable": true,
7257
7202
  "locationInModule": {
7258
7203
  "filename": "src/stack-segment.ts",
7259
- "line": 110
7204
+ "line": 99
7260
7205
  },
7261
7206
  "name": "outputFileName",
7262
7207
  "optional": true,
@@ -7272,7 +7217,7 @@
7272
7217
  "immutable": true,
7273
7218
  "locationInModule": {
7274
7219
  "filename": "src/stack-segment.ts",
7275
- "line": 102
7220
+ "line": 93
7276
7221
  },
7277
7222
  "name": "project",
7278
7223
  "optional": true,
@@ -7288,23 +7233,7 @@
7288
7233
  "immutable": true,
7289
7234
  "locationInModule": {
7290
7235
  "filename": "src/stack-segment.ts",
7291
- "line": 106
7292
- },
7293
- "name": "region",
7294
- "optional": true,
7295
- "type": {
7296
- "primitive": "string"
7297
- }
7298
- },
7299
- {
7300
- "abstract": true,
7301
- "docs": {
7302
- "stability": "stable"
7303
- },
7304
- "immutable": true,
7305
- "locationInModule": {
7306
- "filename": "src/stack-segment.ts",
7307
- "line": 104
7236
+ "line": 95
7308
7237
  },
7309
7238
  "name": "stackName",
7310
7239
  "optional": true,
@@ -7375,23 +7304,6 @@
7375
7304
  "fqn": "aws-cdk-lib.Stack"
7376
7305
  }
7377
7306
  },
7378
- {
7379
- "abstract": true,
7380
- "docs": {
7381
- "stability": "stable",
7382
- "summary": "The AWS account this Action is supposed to operate in."
7383
- },
7384
- "immutable": true,
7385
- "locationInModule": {
7386
- "filename": "src/stack-segment.ts",
7387
- "line": 54
7388
- },
7389
- "name": "account",
7390
- "optional": true,
7391
- "type": {
7392
- "primitive": "string"
7393
- }
7394
- },
7395
7307
  {
7396
7308
  "abstract": true,
7397
7309
  "docs": {
@@ -7417,14 +7329,14 @@
7417
7329
  {
7418
7330
  "abstract": true,
7419
7331
  "docs": {
7420
- "default": "false",
7332
+ "default": "`false`",
7421
7333
  "stability": "stable",
7422
7334
  "summary": "Does this stage require manual approval of the change set?"
7423
7335
  },
7424
7336
  "immutable": true,
7425
7337
  "locationInModule": {
7426
7338
  "filename": "src/stack-segment.ts",
7427
- "line": 73
7339
+ "line": 64
7428
7340
  },
7429
7341
  "name": "manualApproval",
7430
7342
  "optional": true,
@@ -7435,14 +7347,13 @@
7435
7347
  {
7436
7348
  "abstract": true,
7437
7349
  "docs": {
7438
- "default": "no output artifact",
7439
7350
  "stability": "stable",
7440
7351
  "summary": "The artifact to hold the stack deployment output file."
7441
7352
  },
7442
7353
  "immutable": true,
7443
7354
  "locationInModule": {
7444
7355
  "filename": "src/stack-segment.ts",
7445
- "line": 63
7356
+ "line": 54
7446
7357
  },
7447
7358
  "name": "output",
7448
7359
  "optional": true,
@@ -7453,14 +7364,14 @@
7453
7364
  {
7454
7365
  "abstract": true,
7455
7366
  "docs": {
7456
- "default": "artifact.json",
7367
+ "default": "`\"artifact.json\"`",
7457
7368
  "stability": "stable",
7458
7369
  "summary": "The filename for the file in the output artifact."
7459
7370
  },
7460
7371
  "immutable": true,
7461
7372
  "locationInModule": {
7462
7373
  "filename": "src/stack-segment.ts",
7463
- "line": 68
7374
+ "line": 59
7464
7375
  },
7465
7376
  "name": "outputFileName",
7466
7377
  "optional": true,
@@ -7486,23 +7397,6 @@
7486
7397
  "fqn": "aws-cdk-lib.aws_codebuild.ProjectProps"
7487
7398
  }
7488
7399
  },
7489
- {
7490
- "abstract": true,
7491
- "docs": {
7492
- "stability": "stable",
7493
- "summary": "The AWS region the given Action resides in."
7494
- },
7495
- "immutable": true,
7496
- "locationInModule": {
7497
- "filename": "src/stack-segment.ts",
7498
- "line": 58
7499
- },
7500
- "name": "region",
7501
- "optional": true,
7502
- "type": {
7503
- "primitive": "string"
7504
- }
7505
- },
7506
7400
  {
7507
7401
  "abstract": true,
7508
7402
  "docs": {
@@ -7523,9 +7417,7 @@
7523
7417
  {
7524
7418
  "abstract": true,
7525
7419
  "docs": {
7526
- "custom": {
7527
- "deafult": "The name of the given stack."
7528
- },
7420
+ "default": "The name of the given stack.",
7529
7421
  "stability": "stable",
7530
7422
  "summary": "The name of the stack to deploy the changes to."
7531
7423
  },
@@ -7544,6 +7436,6 @@
7544
7436
  "symbolId": "src/stack-segment:StackSegmentProps"
7545
7437
  }
7546
7438
  },
7547
- "version": "1.1.2",
7548
- "fingerprint": "TWfmiock8PgSfF2XQV2a4QZd8s/TbBiazDhCLx986/M="
7439
+ "version": "1.2.1",
7440
+ "fingerprint": "XY5F0djyOJi8BbAtSDnm/l5noqFcX3cuwUACzPBeWpg="
7549
7441
  }