@awboost/cfn-resource-types 0.1.107 → 0.1.109
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/lib/AWS-CloudFormation-StackSet.d.ts +10 -0
- package/lib/AWS-CodePipeline-Pipeline.d.ts +220 -10
- package/lib/AWS-CodePipeline-Pipeline.js +1 -1
- package/lib/AWS-Deadline-MeteredProduct.d.ts +15 -15
- package/lib/AWS-ECS-TaskDefinition.d.ts +6 -6
- package/lib/AWS-EntityResolution-IdMappingWorkflow.d.ts +36 -3
- package/lib/AWS-EntityResolution-IdNamespace.d.ts +43 -1
- package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +7 -1
- package/lib/AWS-EntityResolution-SchemaMapping.d.ts +1 -0
- package/lib/AWS-LaunchWizard-Deployment.d.ts +109 -0
- package/lib/AWS-LaunchWizard-Deployment.js +12 -0
- package/lib/AWS-RDS-DBCluster.d.ts +448 -161
- package/lib/AWS-RDS-DBCluster.js +17 -1
- package/lib/AWS-RDS-DBClusterParameterGroup.d.ts +29 -11
- package/lib/AWS-RDS-DBClusterParameterGroup.js +4 -1
- package/lib/AWS-RDS-DBInstance.d.ts +9 -1
- package/lib/AWS-RDS-EventSubscription.d.ts +29 -17
- package/lib/AWS-RDS-EventSubscription.js +1 -1
- package/lib/AWS-RDS-OptionGroup.d.ts +36 -15
- package/lib/AWS-RDS-OptionGroup.js +1 -1
- package/lib/AWS-S3-Bucket.d.ts +1 -1
- package/lib/AWS-SES-MailManagerAddonInstance.d.ts +60 -0
- package/lib/AWS-SES-MailManagerAddonInstance.js +12 -0
- package/lib/AWS-SES-MailManagerAddonSubscription.d.ts +54 -0
- package/lib/AWS-SES-MailManagerAddonSubscription.js +12 -0
- package/lib/AWS-SES-MailManagerArchive.d.ts +81 -0
- package/lib/AWS-SES-MailManagerArchive.js +12 -0
- package/lib/AWS-SES-MailManagerIngressPoint.d.ts +105 -0
- package/lib/AWS-SES-MailManagerIngressPoint.js +12 -0
- package/lib/AWS-SES-MailManagerRelay.d.ts +88 -0
- package/lib/AWS-SES-MailManagerRelay.js +12 -0
- package/lib/AWS-SES-MailManagerRuleSet.d.ts +447 -0
- package/lib/AWS-SES-MailManagerRuleSet.js +12 -0
- package/lib/AWS-SES-MailManagerTrafficPolicy.d.ts +212 -0
- package/lib/AWS-SES-MailManagerTrafficPolicy.js +12 -0
- package/lib/AWS-WorkSpacesThinClient-Environment.d.ts +5 -0
- package/package.json +1 -1
|
@@ -114,6 +114,12 @@ export type AutoDeployment = {
|
|
|
114
114
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-capability.html}
|
|
115
115
|
*/
|
|
116
116
|
export type Capability = "CAPABILITY_IAM" | "CAPABILITY_NAMED_IAM" | "CAPABILITY_AUTO_EXPAND";
|
|
117
|
+
/**
|
|
118
|
+
* Type definition for `AWS::CloudFormation::StackSet.ConcurrencyMode`.
|
|
119
|
+
* Specifies how the concurrency level behaves during the operation execution.
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-concurrencymode.html}
|
|
121
|
+
*/
|
|
122
|
+
export type ConcurrencyMode = "STRICT_FAILURE_TOLERANCE" | "SOFT_FAILURE_TOLERANCE";
|
|
117
123
|
/**
|
|
118
124
|
* Type definition for `AWS::CloudFormation::StackSet.DeploymentTargets`.
|
|
119
125
|
* The AWS OrganizationalUnitIds or Accounts for which to create stack instances in the specified Regions.
|
|
@@ -148,6 +154,10 @@ export type DeploymentTargets = {
|
|
|
148
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-operationpreferences.html}
|
|
149
155
|
*/
|
|
150
156
|
export type OperationPreferences = {
|
|
157
|
+
/**
|
|
158
|
+
* Specifies how the concurrency level behaves during the operation execution.
|
|
159
|
+
*/
|
|
160
|
+
ConcurrencyMode?: ConcurrencyMode;
|
|
151
161
|
/**
|
|
152
162
|
* @min `0`
|
|
153
163
|
*/
|
|
@@ -1,21 +1,58 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* The AWS::CodePipeline::Pipeline resource creates a CodePipeline pipeline that describes how software changes go through a release process.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html}
|
|
6
6
|
*/
|
|
7
7
|
export type CodePipelinePipelineProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The S3 bucket where artifacts for the pipeline are stored.
|
|
10
|
+
*/
|
|
8
11
|
ArtifactStore?: ArtifactStore;
|
|
12
|
+
/**
|
|
13
|
+
* A mapping of artifactStore objects and their corresponding AWS Regions. There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline.
|
|
14
|
+
*/
|
|
9
15
|
ArtifactStores?: ArtifactStoreMap[];
|
|
16
|
+
/**
|
|
17
|
+
* Represents the input of a DisableStageTransition action.
|
|
18
|
+
*/
|
|
10
19
|
DisableInboundStageTransitions?: StageTransition[];
|
|
11
|
-
|
|
20
|
+
/**
|
|
21
|
+
* The method that the pipeline will use to handle multiple executions. The default mode is SUPERSEDED.
|
|
22
|
+
*/
|
|
23
|
+
ExecutionMode?: "QUEUED" | "SUPERSEDED" | "PARALLEL";
|
|
24
|
+
/**
|
|
25
|
+
* The name of the pipeline.
|
|
26
|
+
*/
|
|
12
27
|
Name?: string;
|
|
13
|
-
|
|
28
|
+
/**
|
|
29
|
+
* CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications.
|
|
30
|
+
*/
|
|
31
|
+
PipelineType?: "V1" | "V2";
|
|
32
|
+
/**
|
|
33
|
+
* Indicates whether to rerun the CodePipeline pipeline after you update it.
|
|
34
|
+
*/
|
|
14
35
|
RestartExecutionOnUpdate?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* The Amazon Resource Name (ARN) for CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn
|
|
38
|
+
* @pattern `arn:aws(-[\w]+)*:iam::[0-9]{12}:role/.*`
|
|
39
|
+
*/
|
|
15
40
|
RoleArn: string;
|
|
41
|
+
/**
|
|
42
|
+
* Represents information about a stage and its definition.
|
|
43
|
+
*/
|
|
16
44
|
Stages: StageDeclaration[];
|
|
45
|
+
/**
|
|
46
|
+
* Specifies the tags applied to the pipeline.
|
|
47
|
+
*/
|
|
17
48
|
Tags?: Tag[];
|
|
49
|
+
/**
|
|
50
|
+
* The trigger configuration specifying a type of event, such as Git tags, that starts the pipeline.
|
|
51
|
+
*/
|
|
18
52
|
Triggers?: PipelineTriggerDeclaration[];
|
|
53
|
+
/**
|
|
54
|
+
* A list that defines the pipeline variables for a pipeline resource. Variable names can have alphanumeric and underscore characters, and the values must match [A-Za-z0-9@\-_]+.
|
|
55
|
+
*/
|
|
19
56
|
Variables?: VariableDeclaration[];
|
|
20
57
|
};
|
|
21
58
|
/**
|
|
@@ -23,185 +60,358 @@ export type CodePipelinePipelineProperties = {
|
|
|
23
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#aws-resource-codepipeline-pipeline-return-values}
|
|
24
61
|
*/
|
|
25
62
|
export type CodePipelinePipelineAttributes = {
|
|
26
|
-
|
|
63
|
+
/**
|
|
64
|
+
* The version of the pipeline.
|
|
65
|
+
*/
|
|
27
66
|
Version: string;
|
|
28
67
|
};
|
|
29
68
|
/**
|
|
30
69
|
* Type definition for `AWS::CodePipeline::Pipeline.ActionDeclaration`.
|
|
70
|
+
* Represents information about an action declaration.
|
|
31
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-actiondeclaration.html}
|
|
32
72
|
*/
|
|
33
73
|
export type ActionDeclaration = {
|
|
74
|
+
/**
|
|
75
|
+
* Represents information about an action type.
|
|
76
|
+
*/
|
|
34
77
|
ActionTypeId: ActionTypeId;
|
|
78
|
+
/**
|
|
79
|
+
* The action's configuration. These are key-value pairs that specify input values for an action.
|
|
80
|
+
*/
|
|
35
81
|
Configuration?: Record<string, any>;
|
|
36
82
|
InputArtifacts?: InputArtifact[];
|
|
83
|
+
/**
|
|
84
|
+
* The action declaration's name.
|
|
85
|
+
*/
|
|
37
86
|
Name: string;
|
|
87
|
+
/**
|
|
88
|
+
* The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.
|
|
89
|
+
*/
|
|
38
90
|
Namespace?: string;
|
|
39
91
|
OutputArtifacts?: OutputArtifact[];
|
|
92
|
+
/**
|
|
93
|
+
* The action declaration's AWS Region, such as us-east-1.
|
|
94
|
+
*/
|
|
40
95
|
Region?: string;
|
|
96
|
+
/**
|
|
97
|
+
* The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline.
|
|
98
|
+
* @pattern `arn:aws(-[\w]+)*:iam::[0-9]{12}:role/.*`
|
|
99
|
+
*/
|
|
41
100
|
RoleArn?: string;
|
|
101
|
+
/**
|
|
102
|
+
* The order in which actions are run.
|
|
103
|
+
*/
|
|
42
104
|
RunOrder?: number;
|
|
105
|
+
/**
|
|
106
|
+
* A timeout duration in minutes that can be applied against the ActionType’s default timeout value specified in Quotas for AWS CodePipeline. This attribute is available only to the manual approval ActionType.
|
|
107
|
+
*/
|
|
43
108
|
TimeoutInMinutes?: number;
|
|
44
109
|
};
|
|
45
110
|
/**
|
|
46
111
|
* Type definition for `AWS::CodePipeline::Pipeline.ActionTypeId`.
|
|
112
|
+
* Represents information about an action type.
|
|
47
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-actiontypeid.html}
|
|
48
114
|
*/
|
|
49
115
|
export type ActionTypeId = {
|
|
50
|
-
|
|
116
|
+
/**
|
|
117
|
+
* A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.
|
|
118
|
+
*/
|
|
119
|
+
Category: "Source" | "Build" | "Test" | "Deploy" | "Invoke" | "Approval";
|
|
120
|
+
/**
|
|
121
|
+
* The creator of the action being called. There are three valid values for the Owner field in the action category section within your pipeline structure: AWS, ThirdParty, and Custom.
|
|
122
|
+
*/
|
|
51
123
|
Owner: string;
|
|
124
|
+
/**
|
|
125
|
+
* The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of CodeDeploy, which would be specified as CodeDeploy.
|
|
126
|
+
*/
|
|
52
127
|
Provider: string;
|
|
128
|
+
/**
|
|
129
|
+
* A string that describes the action version.
|
|
130
|
+
*/
|
|
53
131
|
Version: string;
|
|
54
132
|
};
|
|
55
133
|
/**
|
|
56
134
|
* Type definition for `AWS::CodePipeline::Pipeline.ArtifactStore`.
|
|
135
|
+
* The S3 bucket where artifacts for the pipeline are stored.
|
|
57
136
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html}
|
|
58
137
|
*/
|
|
59
138
|
export type ArtifactStore = {
|
|
139
|
+
/**
|
|
140
|
+
* Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key
|
|
141
|
+
*/
|
|
60
142
|
EncryptionKey?: EncryptionKey;
|
|
143
|
+
/**
|
|
144
|
+
* The S3 bucket used for storing the artifacts for a pipeline. You can specify the name of an S3 bucket but not a folder in the bucket. A folder to contain the pipeline artifacts is created for you based on the name of the pipeline. You can use any S3 bucket in the same AWS Region as the pipeline to store your pipeline artifacts.
|
|
145
|
+
*/
|
|
61
146
|
Location: string;
|
|
62
|
-
|
|
147
|
+
/**
|
|
148
|
+
* The type of the artifact store, such as S3.
|
|
149
|
+
*/
|
|
150
|
+
Type: "S3";
|
|
63
151
|
};
|
|
64
152
|
/**
|
|
65
153
|
* Type definition for `AWS::CodePipeline::Pipeline.ArtifactStoreMap`.
|
|
154
|
+
* A mapping of artifactStore objects and their corresponding AWS Regions. There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline.
|
|
66
155
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstoremap.html}
|
|
67
156
|
*/
|
|
68
157
|
export type ArtifactStoreMap = {
|
|
158
|
+
/**
|
|
159
|
+
* The S3 bucket where artifacts for the pipeline are stored.
|
|
160
|
+
*/
|
|
69
161
|
ArtifactStore: ArtifactStore;
|
|
162
|
+
/**
|
|
163
|
+
* The action declaration's AWS Region, such as us-east-1.
|
|
164
|
+
*/
|
|
70
165
|
Region: string;
|
|
71
166
|
};
|
|
72
167
|
/**
|
|
73
168
|
* Type definition for `AWS::CodePipeline::Pipeline.BlockerDeclaration`.
|
|
169
|
+
* Reserved for future use.
|
|
74
170
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-blockerdeclaration.html}
|
|
75
171
|
*/
|
|
76
172
|
export type BlockerDeclaration = {
|
|
173
|
+
/**
|
|
174
|
+
* Reserved for future use.
|
|
175
|
+
*/
|
|
77
176
|
Name: string;
|
|
78
|
-
|
|
177
|
+
/**
|
|
178
|
+
* Reserved for future use.
|
|
179
|
+
*/
|
|
180
|
+
Type: "Schedule";
|
|
79
181
|
};
|
|
80
182
|
/**
|
|
81
183
|
* Type definition for `AWS::CodePipeline::Pipeline.EncryptionKey`.
|
|
184
|
+
* Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key
|
|
82
185
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-encryptionkey.html}
|
|
83
186
|
*/
|
|
84
187
|
export type EncryptionKey = {
|
|
188
|
+
/**
|
|
189
|
+
* The ID used to identify the key. For an AWS KMS key, you can use the key ID, the key ARN, or the alias ARN.
|
|
190
|
+
*/
|
|
85
191
|
Id: string;
|
|
192
|
+
/**
|
|
193
|
+
* The type of encryption key, such as an AWS KMS key. When creating or updating a pipeline, the value must be set to 'KMS'.
|
|
194
|
+
*/
|
|
86
195
|
Type: string;
|
|
87
196
|
};
|
|
88
197
|
/**
|
|
89
198
|
* Type definition for `AWS::CodePipeline::Pipeline.FailureConditions`.
|
|
199
|
+
* The configuration that specifies the result, such as rollback, to occur upon stage failure
|
|
90
200
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-failureconditions.html}
|
|
91
201
|
*/
|
|
92
202
|
export type FailureConditions = {
|
|
93
|
-
|
|
203
|
+
/**
|
|
204
|
+
* The specified result for when the failure conditions are met, such as rolling back the stage
|
|
205
|
+
*/
|
|
206
|
+
Result?: "ROLLBACK";
|
|
94
207
|
};
|
|
95
208
|
/**
|
|
96
209
|
* Type definition for `AWS::CodePipeline::Pipeline.GitBranchFilterCriteria`.
|
|
210
|
+
* The Git repository branches specified as filter criteria to start the pipeline.
|
|
97
211
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitbranchfiltercriteria.html}
|
|
98
212
|
*/
|
|
99
213
|
export type GitBranchFilterCriteria = {
|
|
214
|
+
/**
|
|
215
|
+
* The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline.
|
|
216
|
+
*/
|
|
100
217
|
Excludes?: string[];
|
|
218
|
+
/**
|
|
219
|
+
* The list of patterns of Git branches that, when a commit is pushed, are to be included as criteria that starts the pipeline.
|
|
220
|
+
*/
|
|
101
221
|
Includes?: string[];
|
|
102
222
|
};
|
|
103
223
|
/**
|
|
104
224
|
* Type definition for `AWS::CodePipeline::Pipeline.GitConfiguration`.
|
|
225
|
+
* A type of trigger configuration for Git-based source actions.
|
|
105
226
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitconfiguration.html}
|
|
106
227
|
*/
|
|
107
228
|
export type GitConfiguration = {
|
|
229
|
+
/**
|
|
230
|
+
* The field where the repository event that will start the pipeline is specified as pull requests.
|
|
231
|
+
*/
|
|
108
232
|
PullRequest?: GitPullRequestFilter[];
|
|
233
|
+
/**
|
|
234
|
+
* The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details.
|
|
235
|
+
*/
|
|
109
236
|
Push?: GitPushFilter[];
|
|
237
|
+
/**
|
|
238
|
+
* The name of the pipeline source action where the trigger configuration, such as Git tags, is specified. The trigger configuration will start the pipeline upon the specified change only.
|
|
239
|
+
*/
|
|
110
240
|
SourceActionName: string;
|
|
111
241
|
};
|
|
112
242
|
/**
|
|
113
243
|
* Type definition for `AWS::CodePipeline::Pipeline.GitFilePathFilterCriteria`.
|
|
244
|
+
* The Git repository file paths specified as filter criteria to start the pipeline.
|
|
114
245
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitfilepathfiltercriteria.html}
|
|
115
246
|
*/
|
|
116
247
|
export type GitFilePathFilterCriteria = {
|
|
248
|
+
/**
|
|
249
|
+
* The list of patterns of Git repository file paths that, when a commit is pushed, are to be excluded from starting the pipeline.
|
|
250
|
+
*/
|
|
117
251
|
Excludes?: string[];
|
|
252
|
+
/**
|
|
253
|
+
* The list of patterns of Git repository file paths that, when a commit is pushed, are to be included as criteria that starts the pipeline.
|
|
254
|
+
*/
|
|
118
255
|
Includes?: string[];
|
|
119
256
|
};
|
|
120
257
|
/**
|
|
121
258
|
* Type definition for `AWS::CodePipeline::Pipeline.GitPullRequestFilter`.
|
|
259
|
+
* The event criteria for the pull request trigger configuration, such as the lists of branches or file paths to include and exclude.
|
|
122
260
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitpullrequestfilter.html}
|
|
123
261
|
*/
|
|
124
262
|
export type GitPullRequestFilter = {
|
|
263
|
+
/**
|
|
264
|
+
* The Git repository branches specified as filter criteria to start the pipeline.
|
|
265
|
+
*/
|
|
125
266
|
Branches?: GitBranchFilterCriteria;
|
|
267
|
+
/**
|
|
268
|
+
* The field that specifies which pull request events to filter on (opened, updated, closed) for the trigger configuration.
|
|
269
|
+
*/
|
|
126
270
|
Events?: string[];
|
|
271
|
+
/**
|
|
272
|
+
* The Git repository file paths specified as filter criteria to start the pipeline.
|
|
273
|
+
*/
|
|
127
274
|
FilePaths?: GitFilePathFilterCriteria;
|
|
128
275
|
};
|
|
129
276
|
/**
|
|
130
277
|
* Type definition for `AWS::CodePipeline::Pipeline.GitPushFilter`.
|
|
278
|
+
* The event criteria that specify when a specified repository event will start the pipeline for the specified trigger configuration, such as the lists of Git tags to include and exclude.
|
|
131
279
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gitpushfilter.html}
|
|
132
280
|
*/
|
|
133
281
|
export type GitPushFilter = {
|
|
282
|
+
/**
|
|
283
|
+
* The Git repository branches specified as filter criteria to start the pipeline.
|
|
284
|
+
*/
|
|
134
285
|
Branches?: GitBranchFilterCriteria;
|
|
286
|
+
/**
|
|
287
|
+
* The Git repository file paths specified as filter criteria to start the pipeline.
|
|
288
|
+
*/
|
|
135
289
|
FilePaths?: GitFilePathFilterCriteria;
|
|
290
|
+
/**
|
|
291
|
+
* The Git tags specified as filter criteria for whether a Git tag repository event will start the pipeline.
|
|
292
|
+
*/
|
|
136
293
|
Tags?: GitTagFilterCriteria;
|
|
137
294
|
};
|
|
138
295
|
/**
|
|
139
296
|
* Type definition for `AWS::CodePipeline::Pipeline.GitTagFilterCriteria`.
|
|
297
|
+
* The Git tags specified as filter criteria for whether a Git tag repository event will start the pipeline.
|
|
140
298
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-gittagfiltercriteria.html}
|
|
141
299
|
*/
|
|
142
300
|
export type GitTagFilterCriteria = {
|
|
301
|
+
/**
|
|
302
|
+
* The list of patterns of Git tags that, when pushed, are to be excluded from starting the pipeline.
|
|
303
|
+
*/
|
|
143
304
|
Excludes?: string[];
|
|
305
|
+
/**
|
|
306
|
+
* The list of patterns of Git tags that, when pushed, are to be included as criteria that starts the pipeline.
|
|
307
|
+
*/
|
|
144
308
|
Includes?: string[];
|
|
145
309
|
};
|
|
146
310
|
/**
|
|
147
311
|
* Type definition for `AWS::CodePipeline::Pipeline.InputArtifact`.
|
|
312
|
+
* Represents information about an artifact to be worked on, such as a test or build artifact.
|
|
148
313
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-inputartifact.html}
|
|
149
314
|
*/
|
|
150
315
|
export type InputArtifact = {
|
|
316
|
+
/**
|
|
317
|
+
* The name of the artifact to be worked on (for example, "My App").
|
|
318
|
+
*/
|
|
151
319
|
Name: string;
|
|
152
320
|
};
|
|
153
321
|
/**
|
|
154
322
|
* Type definition for `AWS::CodePipeline::Pipeline.OutputArtifact`.
|
|
323
|
+
* Represents information about the output of an action.
|
|
155
324
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-outputartifact.html}
|
|
156
325
|
*/
|
|
157
326
|
export type OutputArtifact = {
|
|
327
|
+
/**
|
|
328
|
+
* The name of the output of an artifact, such as "My App".
|
|
329
|
+
*/
|
|
158
330
|
Name: string;
|
|
159
331
|
};
|
|
160
332
|
/**
|
|
161
333
|
* Type definition for `AWS::CodePipeline::Pipeline.PipelineTriggerDeclaration`.
|
|
334
|
+
* Represents information about the specified trigger configuration, such as the filter criteria and the source stage for the action that contains the trigger.
|
|
162
335
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-pipelinetriggerdeclaration.html}
|
|
163
336
|
*/
|
|
164
337
|
export type PipelineTriggerDeclaration = {
|
|
338
|
+
/**
|
|
339
|
+
* A type of trigger configuration for Git-based source actions.
|
|
340
|
+
*/
|
|
165
341
|
GitConfiguration?: GitConfiguration;
|
|
166
|
-
|
|
342
|
+
/**
|
|
343
|
+
* The source provider for the event, such as connections configured for a repository with Git tags, for the specified trigger configuration.
|
|
344
|
+
*/
|
|
345
|
+
ProviderType: "CodeStarSourceConnection";
|
|
167
346
|
};
|
|
168
347
|
/**
|
|
169
348
|
* Type definition for `AWS::CodePipeline::Pipeline.StageDeclaration`.
|
|
349
|
+
* Represents information about a stage and its definition.
|
|
170
350
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stagedeclaration.html}
|
|
171
351
|
*/
|
|
172
352
|
export type StageDeclaration = {
|
|
173
353
|
Actions: ActionDeclaration[];
|
|
174
354
|
Blockers?: BlockerDeclaration[];
|
|
355
|
+
/**
|
|
356
|
+
* The name of the stage.
|
|
357
|
+
*/
|
|
175
358
|
Name: string;
|
|
359
|
+
/**
|
|
360
|
+
* The method to use when a stage has not completed successfully
|
|
361
|
+
*/
|
|
176
362
|
OnFailure?: FailureConditions;
|
|
177
363
|
};
|
|
178
364
|
/**
|
|
179
365
|
* Type definition for `AWS::CodePipeline::Pipeline.StageTransition`.
|
|
366
|
+
* The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
|
|
180
367
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stagetransition.html}
|
|
181
368
|
*/
|
|
182
369
|
export type StageTransition = {
|
|
370
|
+
/**
|
|
371
|
+
* The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
|
|
372
|
+
*/
|
|
183
373
|
Reason: string;
|
|
374
|
+
/**
|
|
375
|
+
* The name of the stage where you want to disable the inbound or outbound transition of artifacts.
|
|
376
|
+
*/
|
|
184
377
|
StageName: string;
|
|
185
378
|
};
|
|
186
379
|
/**
|
|
187
380
|
* Type definition for `AWS::CodePipeline::Pipeline.Tag`.
|
|
381
|
+
* A tag is a key-value pair that is used to manage the resource.
|
|
188
382
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-tag.html}
|
|
189
383
|
*/
|
|
190
384
|
export type Tag = {
|
|
385
|
+
/**
|
|
386
|
+
* The tag's key.
|
|
387
|
+
*/
|
|
191
388
|
Key: string;
|
|
389
|
+
/**
|
|
390
|
+
* The tag's value.
|
|
391
|
+
*/
|
|
192
392
|
Value: string;
|
|
193
393
|
};
|
|
194
394
|
/**
|
|
195
395
|
* Type definition for `AWS::CodePipeline::Pipeline.VariableDeclaration`.
|
|
396
|
+
* A variable declared at the pipeline level.
|
|
196
397
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-variabledeclaration.html}
|
|
197
398
|
*/
|
|
198
399
|
export type VariableDeclaration = {
|
|
400
|
+
/**
|
|
401
|
+
* The value of a pipeline-level variable.
|
|
402
|
+
*/
|
|
199
403
|
DefaultValue?: string;
|
|
404
|
+
/**
|
|
405
|
+
* The description of a pipeline-level variable. It's used to add additional context about the variable, and not being used at time when pipeline executes.
|
|
406
|
+
*/
|
|
200
407
|
Description?: string;
|
|
408
|
+
/**
|
|
409
|
+
* The name of a pipeline-level variable.
|
|
410
|
+
*/
|
|
201
411
|
Name: string;
|
|
202
412
|
};
|
|
203
413
|
/**
|
|
204
|
-
*
|
|
414
|
+
* The AWS::CodePipeline::Pipeline resource creates a CodePipeline pipeline that describes how software changes go through a release process.
|
|
205
415
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html}
|
|
206
416
|
*/
|
|
207
417
|
export declare class CodePipelinePipeline extends $Resource<"AWS::CodePipeline::Pipeline", CodePipelinePipelineProperties, CodePipelinePipelineAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* The AWS::CodePipeline::Pipeline resource creates a CodePipeline pipeline that describes how software changes go through a release process.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html}
|
|
5
5
|
*/
|
|
6
6
|
export class CodePipelinePipeline extends $Resource {
|
|
@@ -5,29 +5,14 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-meteredproduct.html}
|
|
6
6
|
*/
|
|
7
7
|
export type DeadlineMeteredProductProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* @minLength `1`
|
|
10
|
-
* @maxLength `64`
|
|
11
|
-
*/
|
|
12
|
-
Family?: string;
|
|
13
8
|
/**
|
|
14
9
|
* @pattern `^le-[0-9a-f]{32}$`
|
|
15
10
|
*/
|
|
16
11
|
LicenseEndpointId?: string;
|
|
17
|
-
/**
|
|
18
|
-
* @min `1024`
|
|
19
|
-
* @max `65535`
|
|
20
|
-
*/
|
|
21
|
-
Port?: number;
|
|
22
12
|
/**
|
|
23
13
|
* @pattern `^[0-9a-z]{1,32}-[.0-9a-z]{1,32}$`
|
|
24
14
|
*/
|
|
25
15
|
ProductId?: string;
|
|
26
|
-
/**
|
|
27
|
-
* @minLength `1`
|
|
28
|
-
* @maxLength `64`
|
|
29
|
-
*/
|
|
30
|
-
Vendor?: string;
|
|
31
16
|
};
|
|
32
17
|
/**
|
|
33
18
|
* Attribute type definition for `AWS::Deadline::MeteredProduct`.
|
|
@@ -38,6 +23,21 @@ export type DeadlineMeteredProductAttributes = {
|
|
|
38
23
|
* @pattern `^arn:(aws[a-zA-Z-]*):deadline:[a-z0-9-]+:[0-9]{12}:license-endpoint/le-[0-9a-z]{32}/metered-product/[0-9a-z]{1,32}-[.0-9a-z]{1,32}`
|
|
39
24
|
*/
|
|
40
25
|
Arn: string;
|
|
26
|
+
/**
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
* @maxLength `64`
|
|
29
|
+
*/
|
|
30
|
+
Family: string;
|
|
31
|
+
/**
|
|
32
|
+
* @min `1024`
|
|
33
|
+
* @max `65535`
|
|
34
|
+
*/
|
|
35
|
+
Port: number;
|
|
36
|
+
/**
|
|
37
|
+
* @minLength `1`
|
|
38
|
+
* @maxLength `64`
|
|
39
|
+
*/
|
|
40
|
+
Vendor: string;
|
|
41
41
|
};
|
|
42
42
|
/**
|
|
43
43
|
* Definition of AWS::Deadline::MeteredProduct Resource Type
|
|
@@ -33,7 +33,7 @@ export type ECSTaskDefinitionProperties = {
|
|
|
33
33
|
*/
|
|
34
34
|
EphemeralStorage?: EphemeralStorage;
|
|
35
35
|
/**
|
|
36
|
-
* The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent permission to make AWS API calls on your behalf.
|
|
36
|
+
* The Amazon Resource Name (ARN) of the task execution role that grants the Amazon ECS container agent permission to make AWS API calls on your behalf. For informationabout the required IAM roles for Amazon ECS, see [IAM roles for Amazon ECS](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/security-ecs-iam-role-overview.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
37
37
|
*/
|
|
38
38
|
ExecutionRoleArn?: string;
|
|
39
39
|
/**
|
|
@@ -122,9 +122,8 @@ export type ECSTaskDefinitionProperties = {
|
|
|
122
122
|
*/
|
|
123
123
|
Tags?: Tag[];
|
|
124
124
|
/**
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
*/
|
|
125
|
+
* The short name or full Amazon Resource Name (ARN) of the IAMlong role that grants containers in the task permission to call AWS APIs on your behalf. For informationabout the required IAM roles for Amazon ECS, see [IAM roles for Amazon ECS](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/security-ecs-iam-role-overview.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
126
|
+
*/
|
|
128
127
|
TaskRoleArn?: string;
|
|
129
128
|
/**
|
|
130
129
|
* The list of data volume definitions for the task. For more information, see [Using data volumes in tasks](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/using_data_volumes.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
@@ -169,9 +168,10 @@ export type ContainerDefinition = {
|
|
|
169
168
|
This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level ``cpu`` value.
|
|
170
169
|
You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the [Amazon EC2 Instances](https://docs.aws.amazon.com/ec2/instance-types/) detail page by 1,024.
|
|
171
170
|
Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that's the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task is guaranteed a minimum of 512 CPU units when needed. Moreover, each container could float to higher CPU usage if the other container was not using it. If both tasks were 100% active all of the time, they would be limited to 512 CPU units.
|
|
172
|
-
On Linux container instances, the Docker daemon on the container instance uses the CPU value to calculate the relative CPU share ratios for running containers. For more information, see [CPU share constraint](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/#cpu-share-constraint) in the Docker documentation. The minimum valid CPU share value that the Linux kernel allows is 2. However, the CPU parameter isn't required, and you can use CPU values below 2 in your container definitions. For CPU values below 2 (including null), the behavior varies based on your Amazon ECS container agent version:
|
|
171
|
+
On Linux container instances, the Docker daemon on the container instance uses the CPU value to calculate the relative CPU share ratios for running containers. For more information, see [CPU share constraint](https://docs.aws.amazon.com/https://docs.docker.com/engine/reference/run/#cpu-share-constraint) in the Docker documentation. The minimum valid CPU share value that the Linux kernel allows is 2, and the maximum valid CPU share value that the Linux kernel allows is 262144. However, the CPU parameter isn't required, and you can use CPU values below 2 or above 262144 in your container definitions. For CPU values below 2 (including null) or above 262144, the behavior varies based on your Amazon ECS container agent version:
|
|
173
172
|
+ *Agent versions less than or equal to 1.1.0:* Null and zero CPU values are passed to Docker as 0, which Docker then converts to 1,024 CPU shares. CPU values of 1 are passed to Docker as 1, which the Linux kernel converts to two CPU shares.
|
|
174
173
|
+ *Agent versions greater than or equal to 1.2.0:* Null, zero, and CPU values of 1 are passed to Docker as 2.
|
|
174
|
+
+ *Agent versions greater than or equal to 1.84.0:* CPU values greater than 256 vCPU are passed to Docker as 256, which is equivalent to 262144 CPU shares.
|
|
175
175
|
|
|
176
176
|
On Windows container instances, the CPU limit is enforced as an absolute limit, or a quota. Windows containers only have access to the specified amount of CPU that's described in the task definition. A null or zero CPU value is passed to Docker as ``0``, which Windows interprets as 1% of one CPU.
|
|
177
177
|
*/
|
|
@@ -1041,7 +1041,7 @@ export type Tmpfs = {
|
|
|
1041
1041
|
/**
|
|
1042
1042
|
* Type definition for `AWS::ECS::TaskDefinition.Ulimit`.
|
|
1043
1043
|
* The ``ulimit`` settings to pass to the container.
|
|
1044
|
-
Amazon ECS tasks hosted on FARGATElong use the default resource limit values set by the operating system with the exception of the ``nofile`` resource limit parameter which FARGATElong overrides. The ``nofile`` resource limit sets a restriction on the number of open files that a container can use. The default ``nofile`` soft limit is ``
|
|
1044
|
+
Amazon ECS tasks hosted on FARGATElong use the default resource limit values set by the operating system with the exception of the ``nofile`` resource limit parameter which FARGATElong overrides. The ``nofile`` resource limit sets a restriction on the number of open files that a container can use. The default ``nofile`` soft limit is ``65535`` and the default hard limit is ``65535``.
|
|
1045
1045
|
You can specify the ``ulimit`` settings for a container in a task definition.
|
|
1046
1046
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-ulimit.html}
|
|
1047
1047
|
*/
|
|
@@ -59,13 +59,29 @@ export type EntityResolutionIdMappingWorkflowAttributes = {
|
|
|
59
59
|
*/
|
|
60
60
|
WorkflowArn: string;
|
|
61
61
|
};
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingRuleBasedProperties`.
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingrulebasedproperties.html}
|
|
65
|
+
*/
|
|
66
|
+
export type IdMappingRuleBasedProperties = {
|
|
67
|
+
AttributeMatchingModel: "ONE_TO_ONE" | "MANY_TO_MANY";
|
|
68
|
+
RecordMatchingModel: "ONE_SOURCE_TO_ONE_TARGET" | "MANY_SOURCE_TO_ONE_TARGET";
|
|
69
|
+
RuleDefinitionType?: "SOURCE" | "TARGET";
|
|
70
|
+
/**
|
|
71
|
+
* @minLength `1`
|
|
72
|
+
* @maxLength `25`
|
|
73
|
+
*/
|
|
74
|
+
Rules?: Rule[];
|
|
75
|
+
};
|
|
62
76
|
/**
|
|
63
77
|
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingTechniques`.
|
|
64
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-idmappingtechniques.html}
|
|
65
79
|
*/
|
|
66
80
|
export type IdMappingTechniques = {
|
|
67
|
-
IdMappingType?: "PROVIDER";
|
|
81
|
+
IdMappingType?: "PROVIDER" | "RULE_BASED";
|
|
82
|
+
NormalizationVersion?: string;
|
|
68
83
|
ProviderProperties?: ProviderProperties;
|
|
84
|
+
RuleBasedProperties?: IdMappingRuleBasedProperties;
|
|
69
85
|
};
|
|
70
86
|
/**
|
|
71
87
|
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.IdMappingWorkflowInputSource`.
|
|
@@ -73,8 +89,8 @@ export type IdMappingTechniques = {
|
|
|
73
89
|
*/
|
|
74
90
|
export type IdMappingWorkflowInputSource = {
|
|
75
91
|
/**
|
|
76
|
-
* An Glue table ARN for the input source table or IdNamespace ARN
|
|
77
|
-
* @pattern
|
|
92
|
+
* An Glue table ARN for the input source table, MatchingWorkflow arn or IdNamespace ARN
|
|
93
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(idnamespace/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(matchingworkflow/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):glue:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(table/[a-zA-Z_0-9-]{1,255}/[a-zA-Z_0-9-]{1,255})$`
|
|
78
94
|
*/
|
|
79
95
|
InputSourceARN: string;
|
|
80
96
|
/**
|
|
@@ -125,6 +141,23 @@ export type ProviderProperties = {
|
|
|
125
141
|
*/
|
|
126
142
|
ProviderServiceArn: string;
|
|
127
143
|
};
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.Rule`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-idmappingworkflow-rule.html}
|
|
147
|
+
*/
|
|
148
|
+
export type Rule = {
|
|
149
|
+
/**
|
|
150
|
+
* @minLength `1`
|
|
151
|
+
* @maxLength `15`
|
|
152
|
+
*/
|
|
153
|
+
MatchingKeys: string[];
|
|
154
|
+
/**
|
|
155
|
+
* @minLength `0`
|
|
156
|
+
* @maxLength `255`
|
|
157
|
+
* @pattern `^[a-zA-Z_0-9- \t]*$`
|
|
158
|
+
*/
|
|
159
|
+
RuleName: string;
|
|
160
|
+
};
|
|
128
161
|
/**
|
|
129
162
|
* Type definition for `AWS::EntityResolution::IdMappingWorkflow.Tag`.
|
|
130
163
|
* A key-value pair to associate with a resource
|