@awboost/cfn-resource-types 0.1.272 → 0.1.274
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-Bedrock-Flow.d.ts +3 -3
- package/lib/AWS-Bedrock-FlowVersion.d.ts +5 -5
- package/lib/AWS-Bedrock-Prompt.d.ts +29 -2
- package/lib/AWS-Bedrock-PromptVersion.d.ts +50 -2
- package/lib/AWS-ECR-PublicRepository.d.ts +13 -12
- package/lib/AWS-ECR-PublicRepository.js +1 -1
- package/lib/AWS-ECR-PullThroughCacheRule.d.ts +6 -6
- package/lib/AWS-ECR-PullThroughCacheRule.js +1 -1
- package/lib/AWS-ECR-ReplicationConfiguration.d.ts +16 -17
- package/lib/AWS-ECR-ReplicationConfiguration.js +2 -1
- package/lib/AWS-ECR-Repository.d.ts +5 -3
- package/lib/AWS-ECS-Cluster.d.ts +7 -5
- package/lib/AWS-IoTSiteWise-Gateway.d.ts +0 -4
- package/lib/AWS-QuickSight-Analysis.d.ts +17 -9
- package/lib/AWS-QuickSight-Dashboard.d.ts +19 -157
- package/lib/AWS-RDS-GlobalCluster.d.ts +13 -2
- package/package.json +1 -1
|
@@ -246,12 +246,12 @@ export type FlowDataConnectionConfiguration = {
|
|
|
246
246
|
export type FlowDefinition = {
|
|
247
247
|
/**
|
|
248
248
|
* List of connections
|
|
249
|
-
* @maxLength `
|
|
249
|
+
* @maxLength `100`
|
|
250
250
|
*/
|
|
251
251
|
Connections?: FlowConnection[];
|
|
252
252
|
/**
|
|
253
253
|
* List of nodes in a flow
|
|
254
|
-
* @maxLength `
|
|
254
|
+
* @maxLength `40`
|
|
255
255
|
*/
|
|
256
256
|
Nodes?: FlowNode[];
|
|
257
257
|
};
|
|
@@ -743,7 +743,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
743
743
|
/**
|
|
744
744
|
* List of input variables
|
|
745
745
|
* @minLength `0`
|
|
746
|
-
* @maxLength `
|
|
746
|
+
* @maxLength `20`
|
|
747
747
|
*/
|
|
748
748
|
InputVariables?: PromptInputVariable[];
|
|
749
749
|
/**
|
|
@@ -39,7 +39,7 @@ export type BedrockFlowVersionAttributes = {
|
|
|
39
39
|
Definition: {
|
|
40
40
|
/**
|
|
41
41
|
* List of connections
|
|
42
|
-
* @maxLength `
|
|
42
|
+
* @maxLength `100`
|
|
43
43
|
*/
|
|
44
44
|
Connections: {
|
|
45
45
|
/**
|
|
@@ -68,7 +68,7 @@ export type BedrockFlowVersionAttributes = {
|
|
|
68
68
|
}[];
|
|
69
69
|
/**
|
|
70
70
|
* List of nodes in a flow
|
|
71
|
-
* @maxLength `
|
|
71
|
+
* @maxLength `40`
|
|
72
72
|
*/
|
|
73
73
|
Nodes: {
|
|
74
74
|
/**
|
|
@@ -287,12 +287,12 @@ export type FlowDataConnectionConfiguration = {
|
|
|
287
287
|
export type FlowDefinition = {
|
|
288
288
|
/**
|
|
289
289
|
* List of connections
|
|
290
|
-
* @maxLength `
|
|
290
|
+
* @maxLength `100`
|
|
291
291
|
*/
|
|
292
292
|
Connections?: FlowConnection[];
|
|
293
293
|
/**
|
|
294
294
|
* List of nodes in a flow
|
|
295
|
-
* @maxLength `
|
|
295
|
+
* @maxLength `40`
|
|
296
296
|
*/
|
|
297
297
|
Nodes?: FlowNode[];
|
|
298
298
|
};
|
|
@@ -741,7 +741,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
741
741
|
/**
|
|
742
742
|
* List of input variables
|
|
743
743
|
* @minLength `0`
|
|
744
|
-
* @maxLength `
|
|
744
|
+
* @maxLength `20`
|
|
745
745
|
*/
|
|
746
746
|
InputVariables?: PromptInputVariable[];
|
|
747
747
|
/**
|
|
@@ -116,7 +116,7 @@ export type ChatPromptTemplateConfiguration = {
|
|
|
116
116
|
/**
|
|
117
117
|
* List of input variables
|
|
118
118
|
* @minLength `0`
|
|
119
|
-
* @maxLength `
|
|
119
|
+
* @maxLength `20`
|
|
120
120
|
*/
|
|
121
121
|
InputVariables?: PromptInputVariable[];
|
|
122
122
|
/**
|
|
@@ -218,6 +218,27 @@ export type PromptInputVariable = {
|
|
|
218
218
|
*/
|
|
219
219
|
Name?: string;
|
|
220
220
|
};
|
|
221
|
+
/**
|
|
222
|
+
* Type definition for `AWS::Bedrock::Prompt.PromptMetadataEntry`.
|
|
223
|
+
* Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptmetadataentry.html}
|
|
225
|
+
*/
|
|
226
|
+
export type PromptMetadataEntry = {
|
|
227
|
+
/**
|
|
228
|
+
* The key of a metadata tag for a prompt variant.
|
|
229
|
+
* @minLength `1`
|
|
230
|
+
* @maxLength `128`
|
|
231
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
232
|
+
*/
|
|
233
|
+
Key: string;
|
|
234
|
+
/**
|
|
235
|
+
* The value of a metadata tag for a prompt variant.
|
|
236
|
+
* @minLength `1`
|
|
237
|
+
* @maxLength `1024`
|
|
238
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
239
|
+
*/
|
|
240
|
+
Value: string;
|
|
241
|
+
};
|
|
221
242
|
/**
|
|
222
243
|
* Type definition for `AWS::Bedrock::Prompt.PromptModelInferenceConfiguration`.
|
|
223
244
|
* Prompt model inference configuration
|
|
@@ -283,6 +304,12 @@ export type PromptVariant = {
|
|
|
283
304
|
AdditionalModelRequestFields?: AdditionalModelRequestFields;
|
|
284
305
|
GenAiResource?: PromptGenAiResource;
|
|
285
306
|
InferenceConfiguration?: PromptInferenceConfiguration;
|
|
307
|
+
/**
|
|
308
|
+
* List of metadata to associate with the prompt variant.
|
|
309
|
+
* @minLength `0`
|
|
310
|
+
* @maxLength `50`
|
|
311
|
+
*/
|
|
312
|
+
Metadata?: PromptMetadataEntry[];
|
|
286
313
|
/**
|
|
287
314
|
* ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
|
|
288
315
|
* @minLength `1`
|
|
@@ -354,7 +381,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
354
381
|
/**
|
|
355
382
|
* List of input variables
|
|
356
383
|
* @minLength `0`
|
|
357
|
-
* @maxLength `
|
|
384
|
+
* @maxLength `20`
|
|
358
385
|
*/
|
|
359
386
|
InputVariables?: PromptInputVariable[];
|
|
360
387
|
/**
|
|
@@ -119,6 +119,27 @@ export type BedrockPromptVersionAttributes = {
|
|
|
119
119
|
TopP: number;
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
+
/**
|
|
123
|
+
* List of metadata to associate with the prompt variant.
|
|
124
|
+
* @minLength `0`
|
|
125
|
+
* @maxLength `50`
|
|
126
|
+
*/
|
|
127
|
+
Metadata: {
|
|
128
|
+
/**
|
|
129
|
+
* The key of a metadata tag for a prompt variant.
|
|
130
|
+
* @minLength `1`
|
|
131
|
+
* @maxLength `128`
|
|
132
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
133
|
+
*/
|
|
134
|
+
Key: string;
|
|
135
|
+
/**
|
|
136
|
+
* The value of a metadata tag for a prompt variant.
|
|
137
|
+
* @minLength `1`
|
|
138
|
+
* @maxLength `1024`
|
|
139
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
140
|
+
*/
|
|
141
|
+
Value: string;
|
|
142
|
+
}[];
|
|
122
143
|
/**
|
|
123
144
|
* ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
|
|
124
145
|
* @minLength `1`
|
|
@@ -192,7 +213,7 @@ export type ChatPromptTemplateConfiguration = {
|
|
|
192
213
|
/**
|
|
193
214
|
* List of input variables
|
|
194
215
|
* @minLength `0`
|
|
195
|
-
* @maxLength `
|
|
216
|
+
* @maxLength `20`
|
|
196
217
|
*/
|
|
197
218
|
InputVariables?: PromptInputVariable[];
|
|
198
219
|
/**
|
|
@@ -294,6 +315,27 @@ export type PromptInputVariable = {
|
|
|
294
315
|
*/
|
|
295
316
|
Name?: string;
|
|
296
317
|
};
|
|
318
|
+
/**
|
|
319
|
+
* Type definition for `AWS::Bedrock::PromptVersion.PromptMetadataEntry`.
|
|
320
|
+
* Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.
|
|
321
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptmetadataentry.html}
|
|
322
|
+
*/
|
|
323
|
+
export type PromptMetadataEntry = {
|
|
324
|
+
/**
|
|
325
|
+
* The key of a metadata tag for a prompt variant.
|
|
326
|
+
* @minLength `1`
|
|
327
|
+
* @maxLength `128`
|
|
328
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
329
|
+
*/
|
|
330
|
+
Key: string;
|
|
331
|
+
/**
|
|
332
|
+
* The value of a metadata tag for a prompt variant.
|
|
333
|
+
* @minLength `1`
|
|
334
|
+
* @maxLength `1024`
|
|
335
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
336
|
+
*/
|
|
337
|
+
Value: string;
|
|
338
|
+
};
|
|
297
339
|
/**
|
|
298
340
|
* Type definition for `AWS::Bedrock::PromptVersion.PromptModelInferenceConfiguration`.
|
|
299
341
|
* Prompt model inference configuration
|
|
@@ -359,6 +401,12 @@ export type PromptVariant = {
|
|
|
359
401
|
AdditionalModelRequestFields?: AdditionalModelRequestFields;
|
|
360
402
|
GenAiResource?: PromptGenAiResource;
|
|
361
403
|
InferenceConfiguration?: PromptInferenceConfiguration;
|
|
404
|
+
/**
|
|
405
|
+
* List of metadata to associate with the prompt variant.
|
|
406
|
+
* @minLength `0`
|
|
407
|
+
* @maxLength `50`
|
|
408
|
+
*/
|
|
409
|
+
Metadata?: PromptMetadataEntry[];
|
|
362
410
|
/**
|
|
363
411
|
* ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
|
|
364
412
|
* @minLength `1`
|
|
@@ -430,7 +478,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
430
478
|
/**
|
|
431
479
|
* List of input variables
|
|
432
480
|
* @minLength `0`
|
|
433
|
-
* @maxLength `
|
|
481
|
+
* @maxLength `20`
|
|
434
482
|
*/
|
|
435
483
|
InputVariables?: PromptInputVariable[];
|
|
436
484
|
/**
|
|
@@ -1,12 +1,12 @@
|
|
|
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
|
-
* The AWS::ECR::PublicRepository resource specifies an Amazon Elastic Container Public
|
|
4
|
+
* The ``AWS::ECR::PublicRepository`` resource specifies an Amazon Elastic Container Registry Public (Amazon ECR Public) repository, where users can push and pull Docker images, Open Container Initiative (OCI) images, and OCI compatible artifacts. For more information, see [Amazon ECR public repositories](https://docs.aws.amazon.com/AmazonECR/latest/public/public-repositories.html) in the *Amazon ECR Public User Guide*.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-publicrepository.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ECRPublicRepositoryProperties = {
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The details about the repository that are publicly visible in the Amazon ECR Public Gallery. For more information, see [Amazon ECR Public repository catalog data](https://docs.aws.amazon.com/AmazonECR/latest/public/public-repository-catalog-data.html) in the *Amazon ECR Public User Guide*.
|
|
10
10
|
*/
|
|
11
11
|
RepositoryCatalogData?: {
|
|
12
12
|
/**
|
|
@@ -36,14 +36,15 @@ export type ECRPublicRepositoryProperties = {
|
|
|
36
36
|
UsageText?: string;
|
|
37
37
|
};
|
|
38
38
|
/**
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
* The name to use for the public repository. The repository name may be specified on its own (such as ``nginx-web-app``) or it can be prepended with a namespace to group the repository into a category (such as ``project-a/nginx-web-app``). If you don't specify a name, CFNlong generates a unique physical ID and uses that ID for the repository name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
|
|
40
|
+
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
41
|
+
* @minLength `2`
|
|
42
|
+
* @maxLength `256`
|
|
43
|
+
* @pattern `^(?=.{2,256}$)((?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)*)$`
|
|
44
|
+
*/
|
|
44
45
|
RepositoryName?: string;
|
|
45
46
|
/**
|
|
46
|
-
* The JSON repository policy text to apply to the repository. For more information, see https://docs.aws.amazon.com/AmazonECR/latest/
|
|
47
|
+
* The JSON repository policy text to apply to the public repository. For more information, see [Amazon ECR Public repository policies](https://docs.aws.amazon.com/AmazonECR/latest/public/public-repository-policies.html) in the *Amazon ECR Public User Guide*.
|
|
47
48
|
*/
|
|
48
49
|
RepositoryPolicyText?: Record<string, any> | string;
|
|
49
50
|
/**
|
|
@@ -61,25 +62,25 @@ export type ECRPublicRepositoryAttributes = {
|
|
|
61
62
|
};
|
|
62
63
|
/**
|
|
63
64
|
* Type definition for `AWS::ECR::PublicRepository.Tag`.
|
|
64
|
-
*
|
|
65
|
+
* The metadata to apply to a resource to help you categorize and organize them. Each tag consists of a key and a value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
|
65
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-publicrepository-tag.html}
|
|
66
67
|
*/
|
|
67
68
|
export type Tag = {
|
|
68
69
|
/**
|
|
69
|
-
*
|
|
70
|
+
* One part of a key-value pair that make up a tag. A ``key`` is a general label that acts like a category for more specific tag values.
|
|
70
71
|
* @minLength `1`
|
|
71
72
|
* @maxLength `127`
|
|
72
73
|
*/
|
|
73
74
|
Key: string;
|
|
74
75
|
/**
|
|
75
|
-
*
|
|
76
|
+
* A ``value`` acts as a descriptor within a tag category (key).
|
|
76
77
|
* @minLength `1`
|
|
77
78
|
* @maxLength `255`
|
|
78
79
|
*/
|
|
79
80
|
Value: string;
|
|
80
81
|
};
|
|
81
82
|
/**
|
|
82
|
-
* The AWS::ECR::PublicRepository resource specifies an Amazon Elastic Container Public
|
|
83
|
+
* The ``AWS::ECR::PublicRepository`` resource specifies an Amazon Elastic Container Registry Public (Amazon ECR Public) repository, where users can push and pull Docker images, Open Container Initiative (OCI) images, and OCI compatible artifacts. For more information, see [Amazon ECR public repositories](https://docs.aws.amazon.com/AmazonECR/latest/public/public-repositories.html) in the *Amazon ECR Public User Guide*.
|
|
83
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-publicrepository.html}
|
|
84
85
|
*/
|
|
85
86
|
export declare class ECRPublicRepository extends $Resource<"AWS::ECR::PublicRepository", ECRPublicRepositoryProperties, ECRPublicRepositoryAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* The AWS::ECR::PublicRepository resource specifies an Amazon Elastic Container Public
|
|
3
|
+
* The ``AWS::ECR::PublicRepository`` resource specifies an Amazon Elastic Container Registry Public (Amazon ECR Public) repository, where users can push and pull Docker images, Open Container Initiative (OCI) images, and OCI compatible artifacts. For more information, see [Amazon ECR public repositories](https://docs.aws.amazon.com/AmazonECR/latest/public/public-repositories.html) in the *Amazon ECR Public User Guide*.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-publicrepository.html}
|
|
5
5
|
*/
|
|
6
6
|
export class ECRPublicRepository extends $Resource {
|
|
@@ -1,35 +1,35 @@
|
|
|
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
|
-
* The AWS::ECR::PullThroughCacheRule resource
|
|
4
|
+
* The ``AWS::ECR::PullThroughCacheRule`` resource creates or updates a pull through cache rule. A pull through cache rule provides a way to cache images from an upstream registry in your Amazon ECR private registry.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pullthroughcacherule.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ECRPullThroughCacheRuleProperties = {
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The ARN of the Secrets Manager secret associated with the pull through cache rule.
|
|
10
10
|
* @minLength `50`
|
|
11
11
|
* @maxLength `612`
|
|
12
12
|
* @pattern `^arn:aws:secretsmanager:[a-zA-Z0-9-:]+:secret:ecr\-pullthroughcache\/[a-zA-Z0-9\/_+=.@-]+$`
|
|
13
13
|
*/
|
|
14
14
|
CredentialArn?: string;
|
|
15
15
|
/**
|
|
16
|
-
* The
|
|
16
|
+
* The Amazon ECR repository prefix associated with the pull through cache rule.
|
|
17
17
|
* @minLength `2`
|
|
18
18
|
* @maxLength `30`
|
|
19
19
|
* @pattern `(?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)*`
|
|
20
20
|
*/
|
|
21
21
|
EcrRepositoryPrefix?: string;
|
|
22
22
|
/**
|
|
23
|
-
* The name of the upstream registry.
|
|
23
|
+
* The name of the upstream source registry associated with the pull through cache rule.
|
|
24
24
|
*/
|
|
25
25
|
UpstreamRegistry?: string;
|
|
26
26
|
/**
|
|
27
|
-
* The
|
|
27
|
+
* The upstream registry URL associated with the pull through cache rule.
|
|
28
28
|
*/
|
|
29
29
|
UpstreamRegistryUrl?: string;
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* The AWS::ECR::PullThroughCacheRule resource
|
|
32
|
+
* The ``AWS::ECR::PullThroughCacheRule`` resource creates or updates a pull through cache rule. A pull through cache rule provides a way to cache images from an upstream registry in your Amazon ECR private registry.
|
|
33
33
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pullthroughcacherule.html}
|
|
34
34
|
*/
|
|
35
35
|
export declare class ECRPullThroughCacheRule extends $Resource<"AWS::ECR::PullThroughCacheRule", ECRPullThroughCacheRuleProperties, Record<string, never>> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* The AWS::ECR::PullThroughCacheRule resource
|
|
3
|
+
* The ``AWS::ECR::PullThroughCacheRule`` resource creates or updates a pull through cache rule. A pull through cache rule provides a way to cache images from an upstream registry in your Amazon ECR private registry.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pullthroughcacherule.html}
|
|
5
5
|
*/
|
|
6
6
|
export class ECRPullThroughCacheRule extends $Resource {
|
|
@@ -1,12 +1,13 @@
|
|
|
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
|
-
* The AWS::ECR::ReplicationConfiguration resource
|
|
4
|
+
* The ``AWS::ECR::ReplicationConfiguration`` resource creates or updates the replication configuration for a private registry. The first time a replication configuration is applied to a private registry, a service-linked IAM role is created in your account for the replication process. For more information, see [Using Service-Linked Roles for Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/using-service-linked-roles.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
5
|
+
When configuring cross-account replication, the destination account must grant the source account permission to replicate. This permission is controlled using a private registry permissions policy. For more information, see ``AWS::ECR::RegistryPolicy``.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-replicationconfiguration.html}
|
|
6
7
|
*/
|
|
7
8
|
export type ECRReplicationConfigurationProperties = {
|
|
8
9
|
/**
|
|
9
|
-
*
|
|
10
|
+
* The replication configuration for a registry.
|
|
10
11
|
*/
|
|
11
12
|
ReplicationConfiguration: ReplicationConfiguration;
|
|
12
13
|
};
|
|
@@ -15,9 +16,6 @@ export type ECRReplicationConfigurationProperties = {
|
|
|
15
16
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-replicationconfiguration.html#aws-resource-ecr-replicationconfiguration-return-values}
|
|
16
17
|
*/
|
|
17
18
|
export type ECRReplicationConfigurationAttributes = {
|
|
18
|
-
/**
|
|
19
|
-
* The RegistryId associated with the aws account.
|
|
20
|
-
*/
|
|
21
19
|
RegistryId: string;
|
|
22
20
|
};
|
|
23
21
|
/**
|
|
@@ -28,12 +26,12 @@ export type ECRReplicationConfigurationAttributes = {
|
|
|
28
26
|
export type FilterType = "PREFIX_MATCH";
|
|
29
27
|
/**
|
|
30
28
|
* Type definition for `AWS::ECR::ReplicationConfiguration.ReplicationConfiguration`.
|
|
31
|
-
*
|
|
29
|
+
* The replication configuration for a registry.
|
|
32
30
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-replicationconfiguration.html}
|
|
33
31
|
*/
|
|
34
32
|
export type ReplicationConfiguration = {
|
|
35
33
|
/**
|
|
36
|
-
* An array of objects representing the replication
|
|
34
|
+
* An array of objects representing the replication destinations and repository filters for a replication configuration.
|
|
37
35
|
* @minLength `0`
|
|
38
36
|
* @maxLength `10`
|
|
39
37
|
*/
|
|
@@ -41,35 +39,35 @@ export type ReplicationConfiguration = {
|
|
|
41
39
|
};
|
|
42
40
|
/**
|
|
43
41
|
* Type definition for `AWS::ECR::ReplicationConfiguration.ReplicationDestination`.
|
|
44
|
-
* An array of objects representing the
|
|
42
|
+
* An array of objects representing the destination for a replication rule.
|
|
45
43
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-replicationdestination.html}
|
|
46
44
|
*/
|
|
47
45
|
export type ReplicationDestination = {
|
|
48
46
|
/**
|
|
49
|
-
*
|
|
47
|
+
* The Region to replicate to.
|
|
50
48
|
* @pattern `[0-9a-z-]{2,25}`
|
|
51
49
|
*/
|
|
52
50
|
Region: string;
|
|
53
51
|
/**
|
|
54
|
-
* The account ID of the
|
|
52
|
+
* The AWS account ID of the Amazon ECR private registry to replicate to. When configuring cross-Region replication within your own registry, specify your own account ID.
|
|
55
53
|
* @pattern `^[0-9]{12}$`
|
|
56
54
|
*/
|
|
57
55
|
RegistryId: string;
|
|
58
56
|
};
|
|
59
57
|
/**
|
|
60
58
|
* Type definition for `AWS::ECR::ReplicationConfiguration.ReplicationRule`.
|
|
61
|
-
* An array of objects representing the
|
|
59
|
+
* An array of objects representing the replication destinations and repository filters for a replication configuration.
|
|
62
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-replicationrule.html}
|
|
63
61
|
*/
|
|
64
62
|
export type ReplicationRule = {
|
|
65
63
|
/**
|
|
66
|
-
* An array of objects representing the
|
|
64
|
+
* An array of objects representing the destination for a replication rule.
|
|
67
65
|
* @minLength `1`
|
|
68
66
|
* @maxLength `25`
|
|
69
67
|
*/
|
|
70
68
|
Destinations: ReplicationDestination[];
|
|
71
69
|
/**
|
|
72
|
-
* An array of objects representing the
|
|
70
|
+
* An array of objects representing the filters for a replication rule. Specifying a repository filter for a replication rule provides a method for controlling which repositories in a private registry are replicated.
|
|
73
71
|
* @minLength `0`
|
|
74
72
|
* @maxLength `100`
|
|
75
73
|
*/
|
|
@@ -77,22 +75,23 @@ export type ReplicationRule = {
|
|
|
77
75
|
};
|
|
78
76
|
/**
|
|
79
77
|
* Type definition for `AWS::ECR::ReplicationConfiguration.RepositoryFilter`.
|
|
80
|
-
*
|
|
78
|
+
* The filter settings used with image replication. Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no filters are added, the contents of all repositories are replicated.
|
|
81
79
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-repositoryfilter.html}
|
|
82
80
|
*/
|
|
83
81
|
export type RepositoryFilter = {
|
|
84
82
|
/**
|
|
85
|
-
* The repository filter
|
|
83
|
+
* The repository filter details. When the ``PREFIX_MATCH`` filter type is specified, this value is required and should be the repository name prefix to configure replication for.
|
|
86
84
|
* @pattern `^(?:[a-z0-9]+(?:[._-][a-z0-9]*)/*)*[a-z0-9]*(?:[._-][a-z0-9]*)*$`
|
|
87
85
|
*/
|
|
88
86
|
Filter: string;
|
|
89
87
|
/**
|
|
90
|
-
*
|
|
88
|
+
* The repository filter type. The only supported value is ``PREFIX_MATCH``, which is a repository name prefix specified with the ``filter`` parameter.
|
|
91
89
|
*/
|
|
92
90
|
FilterType: FilterType;
|
|
93
91
|
};
|
|
94
92
|
/**
|
|
95
|
-
* The AWS::ECR::ReplicationConfiguration resource
|
|
93
|
+
* The ``AWS::ECR::ReplicationConfiguration`` resource creates or updates the replication configuration for a private registry. The first time a replication configuration is applied to a private registry, a service-linked IAM role is created in your account for the replication process. For more information, see [Using Service-Linked Roles for Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/using-service-linked-roles.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
94
|
+
When configuring cross-account replication, the destination account must grant the source account permission to replicate. This permission is controlled using a private registry permissions policy. For more information, see ``AWS::ECR::RegistryPolicy``.
|
|
96
95
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-replicationconfiguration.html}
|
|
97
96
|
*/
|
|
98
97
|
export declare class ECRReplicationConfiguration extends $Resource<"AWS::ECR::ReplicationConfiguration", ECRReplicationConfigurationProperties, ECRReplicationConfigurationAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* The AWS::ECR::ReplicationConfiguration resource
|
|
3
|
+
* The ``AWS::ECR::ReplicationConfiguration`` resource creates or updates the replication configuration for a private registry. The first time a replication configuration is applied to a private registry, a service-linked IAM role is created in your account for the replication process. For more information, see [Using Service-Linked Roles for Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/using-service-linked-roles.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
4
|
+
When configuring cross-account replication, the destination account must grant the source account permission to replicate. This permission is controlled using a private registry permissions policy. For more information, see ``AWS::ECR::RegistryPolicy``.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-replicationconfiguration.html}
|
|
5
6
|
*/
|
|
6
7
|
export class ECRReplicationConfiguration extends $Resource {
|
|
@@ -55,15 +55,17 @@ export type ECRRepositoryAttributes = {
|
|
|
55
55
|
/**
|
|
56
56
|
* Type definition for `AWS::ECR::Repository.EncryptionConfiguration`.
|
|
57
57
|
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
58
|
-
By default, when no encryption configuration is set or the ``AES256`` encryption type is used, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts your data at rest using an
|
|
58
|
+
By default, when no encryption configuration is set or the ``AES256`` encryption type is used, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts your data at rest using an AES256 encryption algorithm. This does not require any action on your part.
|
|
59
59
|
For more control over the encryption of the contents of your repository, you can use server-side encryption with KMSlong key stored in KMSlong (KMS) to encrypt your images. For more information, see [Amazon ECR encryption at rest](https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
60
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-encryptionconfiguration.html}
|
|
61
61
|
*/
|
|
62
62
|
export type EncryptionConfiguration = {
|
|
63
63
|
/**
|
|
64
64
|
* The encryption type to use.
|
|
65
|
-
If you use the ``KMS`` encryption type, the contents of the repository will be encrypted using server-side encryption with KMSlong key stored in KMS. When you use KMS to encrypt your data, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you already created.
|
|
66
|
-
If you use the ``
|
|
65
|
+
If you use the ``KMS`` encryption type, the contents of the repository will be encrypted using server-side encryption with KMSlong key stored in KMS. When you use KMS to encrypt your data, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you already created.
|
|
66
|
+
If you use the ``KMS_DSSE`` encryption type, the contents of the repository will be encrypted with two layers of encryption using server-side encryption with the KMS Management Service key stored in KMS. Similar to the ``KMS`` encryption type, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you've already created.
|
|
67
|
+
If you use the ``AES256`` encryption type, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts the images in the repository using an AES256 encryption algorithm.
|
|
68
|
+
For more information, see [Amazon ECR encryption at rest](https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
67
69
|
*/
|
|
68
70
|
EncryptionType: EncryptionType;
|
|
69
71
|
/**
|
package/lib/AWS-ECS-Cluster.d.ts
CHANGED
|
@@ -169,12 +169,14 @@ export type ExecuteCommandLogConfiguration = {
|
|
|
169
169
|
*/
|
|
170
170
|
export type ManagedStorageConfiguration = {
|
|
171
171
|
/**
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
* Specify the KMSlong key ID for the Fargate ephemeral storage.
|
|
173
|
+
The key must be a single Region key.
|
|
174
|
+
*/
|
|
174
175
|
FargateEphemeralStorageKmsKeyId?: string;
|
|
175
176
|
/**
|
|
176
|
-
|
|
177
|
-
|
|
177
|
+
* Specify a KMSlong key ID to encrypt the managed storage.
|
|
178
|
+
The key must be a single Region key.
|
|
179
|
+
*/
|
|
178
180
|
KmsKeyId?: string;
|
|
179
181
|
};
|
|
180
182
|
/**
|
|
@@ -185,7 +187,7 @@ export type ManagedStorageConfiguration = {
|
|
|
185
187
|
*/
|
|
186
188
|
export type ServiceConnectDefaults = {
|
|
187
189
|
/**
|
|
188
|
-
* The namespace name or full Amazon Resource Name (ARN) of the CMAPlong namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include
|
|
190
|
+
* The namespace name or full Amazon Resource Name (ARN) of the CMAPlong namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include greater than (>), less than (<), double quotation marks ("), or slash (/).
|
|
189
191
|
If you enter an existing namespace name or ARN, then that namespace will be used. Any namespace type is supported. The namespace must be in this account and this AWS Region.
|
|
190
192
|
If you enter a new name, a CMAPlong namespace will be created. Amazon ECS creates a CMAP namespace with the "API calls" method of instance discovery only. This instance discovery method is the "HTTP" namespace type in the CLIlong. Other types of instance discovery aren't used by Service Connect.
|
|
191
193
|
If you update the cluster with an empty string ``""`` for the namespace name, the cluster configuration for Service Connect is removed. Note that the namespace will remain in CMAP and must be deleted separately.
|
|
@@ -57,10 +57,6 @@ export type GatewayCapabilitySummary = {
|
|
|
57
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-gateway-gatewayplatform.html}
|
|
58
58
|
*/
|
|
59
59
|
export type GatewayPlatform = {
|
|
60
|
-
/**
|
|
61
|
-
* A gateway that runs on AWS IoT Greengrass V1.
|
|
62
|
-
*/
|
|
63
|
-
Greengrass?: any;
|
|
64
60
|
/**
|
|
65
61
|
* A gateway that runs on AWS IoT Greengrass V2.
|
|
66
62
|
*/
|
|
@@ -1426,6 +1426,11 @@ export type CustomValuesConfiguration = {
|
|
|
1426
1426
|
CustomValues: CustomParameterValues;
|
|
1427
1427
|
IncludeNullValue?: boolean;
|
|
1428
1428
|
};
|
|
1429
|
+
/**
|
|
1430
|
+
* Type definition for `AWS::QuickSight::Analysis.DashboardBehavior`.
|
|
1431
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-dashboardbehavior.html}
|
|
1432
|
+
*/
|
|
1433
|
+
export type DashboardBehavior = "ENABLED" | "DISABLED";
|
|
1429
1434
|
/**
|
|
1430
1435
|
* Type definition for `AWS::QuickSight::Analysis.DataBarsOptions`.
|
|
1431
1436
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-databarsoptions.html}
|
|
@@ -3217,7 +3222,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3217
3222
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
|
3218
3223
|
*/
|
|
3219
3224
|
export type GeospatialLayerMapConfiguration = {
|
|
3220
|
-
Interactions?:
|
|
3225
|
+
Interactions?: VisualInteractionOptions;
|
|
3221
3226
|
Legend?: LegendOptions;
|
|
3222
3227
|
MapLayers?: GeospatialLayerItem[];
|
|
3223
3228
|
MapState?: GeospatialMapState;
|
|
@@ -3287,7 +3292,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3287
3292
|
*/
|
|
3288
3293
|
export type GeospatialMapConfiguration = {
|
|
3289
3294
|
FieldWells?: GeospatialMapFieldWells;
|
|
3290
|
-
Interactions?:
|
|
3295
|
+
Interactions?: VisualInteractionOptions;
|
|
3291
3296
|
Legend?: LegendOptions;
|
|
3292
3297
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3293
3298
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -3825,7 +3830,7 @@ export type ImageInteractionOptions = {
|
|
|
3825
3830
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
|
3826
3831
|
*/
|
|
3827
3832
|
export type ImageMenuOption = {
|
|
3828
|
-
AvailabilityStatus?:
|
|
3833
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
3829
3834
|
};
|
|
3830
3835
|
/**
|
|
3831
3836
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
|
@@ -4672,7 +4677,7 @@ export type NumberFormatConfiguration = {
|
|
|
4672
4677
|
* Type definition for `AWS::QuickSight::Analysis.NumberScale`.
|
|
4673
4678
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numberscale.html}
|
|
4674
4679
|
*/
|
|
4675
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
4680
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
4676
4681
|
/**
|
|
4677
4682
|
* Type definition for `AWS::QuickSight::Analysis.NumericalAggregationFunction`.
|
|
4678
4683
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numericalaggregationfunction.html}
|
|
@@ -6480,11 +6485,6 @@ export type ShapeConditionalFormat = {
|
|
|
6480
6485
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
|
|
6481
6486
|
*/
|
|
6482
6487
|
export type Sheet = {
|
|
6483
|
-
/**
|
|
6484
|
-
* @minLength `0`
|
|
6485
|
-
* @maxLength `10`
|
|
6486
|
-
*/
|
|
6487
|
-
Images?: SheetImage[];
|
|
6488
6488
|
/**
|
|
6489
6489
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
6490
6490
|
console.</p>
|
|
@@ -7907,6 +7907,14 @@ export type VisualCustomActionOperation = {
|
|
|
7907
7907
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualcustomactiontrigger.html}
|
|
7908
7908
|
*/
|
|
7909
7909
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
7910
|
+
/**
|
|
7911
|
+
* Type definition for `AWS::QuickSight::Analysis.VisualInteractionOptions`.
|
|
7912
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html}
|
|
7913
|
+
*/
|
|
7914
|
+
export type VisualInteractionOptions = {
|
|
7915
|
+
ContextMenuOption?: any;
|
|
7916
|
+
VisualMenuOption?: any;
|
|
7917
|
+
};
|
|
7910
7918
|
/**
|
|
7911
7919
|
* Type definition for `AWS::QuickSight::Analysis.VisualPalette`.
|
|
7912
7920
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualpalette.html}
|
|
@@ -142,154 +142,6 @@ export type QuickSightDashboardAttributes = {
|
|
|
142
142
|
* @maxLength `20`
|
|
143
143
|
*/
|
|
144
144
|
Sheets: {
|
|
145
|
-
/**
|
|
146
|
-
* @minLength `0`
|
|
147
|
-
* @maxLength `10`
|
|
148
|
-
*/
|
|
149
|
-
Images: {
|
|
150
|
-
/**
|
|
151
|
-
* @minLength `0`
|
|
152
|
-
* @maxLength `10`
|
|
153
|
-
*/
|
|
154
|
-
Actions: {
|
|
155
|
-
/**
|
|
156
|
-
* @minLength `1`
|
|
157
|
-
* @maxLength `2`
|
|
158
|
-
*/
|
|
159
|
-
ActionOperations: {
|
|
160
|
-
NavigationOperation: {
|
|
161
|
-
LocalNavigationConfiguration: {
|
|
162
|
-
/**
|
|
163
|
-
* @minLength `1`
|
|
164
|
-
* @maxLength `512`
|
|
165
|
-
* @pattern `^[\w\-]+$`
|
|
166
|
-
*/
|
|
167
|
-
TargetSheetId: string;
|
|
168
|
-
};
|
|
169
|
-
};
|
|
170
|
-
SetParametersOperation: {
|
|
171
|
-
/**
|
|
172
|
-
* @minLength `1`
|
|
173
|
-
* @maxLength `200`
|
|
174
|
-
*/
|
|
175
|
-
ParameterValueConfigurations: {
|
|
176
|
-
/**
|
|
177
|
-
* @minLength `1`
|
|
178
|
-
* @maxLength `2048`
|
|
179
|
-
* @pattern `^[a-zA-Z0-9]+$`
|
|
180
|
-
*/
|
|
181
|
-
DestinationParameterName: string;
|
|
182
|
-
Value: {
|
|
183
|
-
CustomValuesConfiguration: {
|
|
184
|
-
CustomValues: {
|
|
185
|
-
/**
|
|
186
|
-
* @minLength `0`
|
|
187
|
-
* @maxLength `50000`
|
|
188
|
-
*/
|
|
189
|
-
DateTimeValues: string[];
|
|
190
|
-
/**
|
|
191
|
-
* @minLength `0`
|
|
192
|
-
* @maxLength `50000`
|
|
193
|
-
*/
|
|
194
|
-
DecimalValues: number[];
|
|
195
|
-
/**
|
|
196
|
-
* @minLength `0`
|
|
197
|
-
* @maxLength `50000`
|
|
198
|
-
*/
|
|
199
|
-
IntegerValues: number[];
|
|
200
|
-
/**
|
|
201
|
-
* @minLength `0`
|
|
202
|
-
* @maxLength `50000`
|
|
203
|
-
*/
|
|
204
|
-
StringValues: string[];
|
|
205
|
-
};
|
|
206
|
-
IncludeNullValue: boolean;
|
|
207
|
-
};
|
|
208
|
-
SelectAllValueOptions: SelectAllValueOptions;
|
|
209
|
-
SourceColumn: {
|
|
210
|
-
/**
|
|
211
|
-
* @minLength `1`
|
|
212
|
-
* @maxLength `127`
|
|
213
|
-
*/
|
|
214
|
-
ColumnName: string;
|
|
215
|
-
/**
|
|
216
|
-
* @minLength `1`
|
|
217
|
-
* @maxLength `2048`
|
|
218
|
-
*/
|
|
219
|
-
DataSetIdentifier: string;
|
|
220
|
-
};
|
|
221
|
-
/**
|
|
222
|
-
* @minLength `1`
|
|
223
|
-
* @maxLength `512`
|
|
224
|
-
*/
|
|
225
|
-
SourceField: string;
|
|
226
|
-
SourceParameterName: string;
|
|
227
|
-
};
|
|
228
|
-
}[];
|
|
229
|
-
};
|
|
230
|
-
URLOperation: {
|
|
231
|
-
URLTarget: URLTargetConfiguration;
|
|
232
|
-
/**
|
|
233
|
-
* @minLength `1`
|
|
234
|
-
* @maxLength `2048`
|
|
235
|
-
*/
|
|
236
|
-
URLTemplate: string;
|
|
237
|
-
};
|
|
238
|
-
}[];
|
|
239
|
-
/**
|
|
240
|
-
* @minLength `1`
|
|
241
|
-
* @maxLength `512`
|
|
242
|
-
* @pattern `^[\w\-]+$`
|
|
243
|
-
*/
|
|
244
|
-
CustomActionId: string;
|
|
245
|
-
/**
|
|
246
|
-
* @minLength `1`
|
|
247
|
-
* @maxLength `256`
|
|
248
|
-
*/
|
|
249
|
-
Name: string;
|
|
250
|
-
Status: WidgetStatus;
|
|
251
|
-
Trigger: ImageCustomActionTrigger;
|
|
252
|
-
}[];
|
|
253
|
-
/**
|
|
254
|
-
* @minLength `1`
|
|
255
|
-
* @maxLength `1024`
|
|
256
|
-
*/
|
|
257
|
-
ImageContentAltText: string;
|
|
258
|
-
Interactions: {
|
|
259
|
-
ImageMenuOption: {
|
|
260
|
-
AvailabilityStatus: DashboardBehavior;
|
|
261
|
-
};
|
|
262
|
-
};
|
|
263
|
-
Scaling: {
|
|
264
|
-
ScalingType: SheetImageScalingType;
|
|
265
|
-
};
|
|
266
|
-
/**
|
|
267
|
-
* @minLength `1`
|
|
268
|
-
* @maxLength `512`
|
|
269
|
-
* @pattern `^[\w\-]+$`
|
|
270
|
-
*/
|
|
271
|
-
SheetImageId: string;
|
|
272
|
-
Source: {
|
|
273
|
-
SheetImageStaticFileSource: {
|
|
274
|
-
/**
|
|
275
|
-
* @minLength `1`
|
|
276
|
-
* @maxLength `512`
|
|
277
|
-
* @pattern `^[\w\-]+$`
|
|
278
|
-
*/
|
|
279
|
-
StaticFileId: string;
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
Tooltip: {
|
|
283
|
-
TooltipText: {
|
|
284
|
-
/**
|
|
285
|
-
* @minLength `1`
|
|
286
|
-
* @maxLength `1024`
|
|
287
|
-
*/
|
|
288
|
-
PlainText: string;
|
|
289
|
-
};
|
|
290
|
-
Visibility: Visibility;
|
|
291
|
-
};
|
|
292
|
-
}[];
|
|
293
145
|
/**
|
|
294
146
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
295
147
|
console.</p>
|
|
@@ -1636,7 +1488,7 @@ export type DashboardPublishOptions = {
|
|
|
1636
1488
|
*/
|
|
1637
1489
|
SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
|
|
1638
1490
|
VisualAxisSortOption?: VisualAxisSortOption;
|
|
1639
|
-
VisualMenuOption?:
|
|
1491
|
+
VisualMenuOption?: VisualMenuOption;
|
|
1640
1492
|
/**
|
|
1641
1493
|
* <p>The visual publish options of a visual in a dashboard</p>
|
|
1642
1494
|
*/
|
|
@@ -3620,7 +3472,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3620
3472
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
|
3621
3473
|
*/
|
|
3622
3474
|
export type GeospatialLayerMapConfiguration = {
|
|
3623
|
-
Interactions?:
|
|
3475
|
+
Interactions?: VisualInteractionOptions;
|
|
3624
3476
|
Legend?: LegendOptions;
|
|
3625
3477
|
MapLayers?: GeospatialLayerItem[];
|
|
3626
3478
|
MapState?: GeospatialMapState;
|
|
@@ -3690,7 +3542,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3690
3542
|
*/
|
|
3691
3543
|
export type GeospatialMapConfiguration = {
|
|
3692
3544
|
FieldWells?: GeospatialMapFieldWells;
|
|
3693
|
-
Interactions?:
|
|
3545
|
+
Interactions?: VisualInteractionOptions;
|
|
3694
3546
|
Legend?: LegendOptions;
|
|
3695
3547
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3696
3548
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -5086,7 +4938,7 @@ export type NumberFormatConfiguration = {
|
|
|
5086
4938
|
* Type definition for `AWS::QuickSight::Dashboard.NumberScale`.
|
|
5087
4939
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numberscale.html}
|
|
5088
4940
|
*/
|
|
5089
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
4941
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
5090
4942
|
/**
|
|
5091
4943
|
* Type definition for `AWS::QuickSight::Dashboard.NumericalAggregationFunction`.
|
|
5092
4944
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericalaggregationfunction.html}
|
|
@@ -6882,11 +6734,6 @@ export type ShapeConditionalFormat = {
|
|
|
6882
6734
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html}
|
|
6883
6735
|
*/
|
|
6884
6736
|
export type Sheet = {
|
|
6885
|
-
/**
|
|
6886
|
-
* @minLength `0`
|
|
6887
|
-
* @maxLength `10`
|
|
6888
|
-
*/
|
|
6889
|
-
Images?: SheetImage[];
|
|
6890
6737
|
/**
|
|
6891
6738
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
6892
6739
|
console.</p>
|
|
@@ -8332,6 +8179,21 @@ export type VisualCustomActionOperation = {
|
|
|
8332
8179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
|
8333
8180
|
*/
|
|
8334
8181
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
8182
|
+
/**
|
|
8183
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualInteractionOptions`.
|
|
8184
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html}
|
|
8185
|
+
*/
|
|
8186
|
+
export type VisualInteractionOptions = {
|
|
8187
|
+
ContextMenuOption?: any;
|
|
8188
|
+
VisualMenuOption?: VisualMenuOption;
|
|
8189
|
+
};
|
|
8190
|
+
/**
|
|
8191
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
|
8192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
|
8193
|
+
*/
|
|
8194
|
+
export type VisualMenuOption = {
|
|
8195
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
8196
|
+
};
|
|
8335
8197
|
/**
|
|
8336
8198
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
|
8337
8199
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
|
@@ -29,7 +29,6 @@ export type RDSGlobalClusterProperties = {
|
|
|
29
29
|
* @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
|
|
30
30
|
*/
|
|
31
31
|
GlobalClusterIdentifier?: string;
|
|
32
|
-
GlobalEndpoint?: GlobalEndpoint;
|
|
33
32
|
/**
|
|
34
33
|
* The Amazon Resource Name (ARN) to use as the primary cluster of the global database. This parameter is optional. This parameter is stored as a lowercase string.
|
|
35
34
|
*/
|
|
@@ -45,6 +44,18 @@ export type RDSGlobalClusterProperties = {
|
|
|
45
44
|
*/
|
|
46
45
|
Tags?: Tag[];
|
|
47
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* Attribute type definition for `AWS::RDS::GlobalCluster`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#aws-resource-rds-globalcluster-return-values}
|
|
50
|
+
*/
|
|
51
|
+
export type RDSGlobalClusterAttributes = {
|
|
52
|
+
GlobalEndpoint: {
|
|
53
|
+
/**
|
|
54
|
+
* The writer endpoint for the global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
|
55
|
+
*/
|
|
56
|
+
Address: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
48
59
|
/**
|
|
49
60
|
* Type definition for `AWS::RDS::GlobalCluster.GlobalEndpoint`.
|
|
50
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-globalendpoint.html}
|
|
@@ -78,7 +89,7 @@ export type Tag = {
|
|
|
78
89
|
* Resource Type definition for AWS::RDS::GlobalCluster
|
|
79
90
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html}
|
|
80
91
|
*/
|
|
81
|
-
export declare class RDSGlobalCluster extends $Resource<"AWS::RDS::GlobalCluster", RDSGlobalClusterProperties,
|
|
92
|
+
export declare class RDSGlobalCluster extends $Resource<"AWS::RDS::GlobalCluster", RDSGlobalClusterProperties, RDSGlobalClusterAttributes> {
|
|
82
93
|
static readonly Type = "AWS::RDS::GlobalCluster";
|
|
83
94
|
constructor(logicalId: string, properties: RDSGlobalClusterProperties, options?: $ResourceOptions);
|
|
84
95
|
}
|