@awboost/cfn-resource-types 0.1.38 → 0.1.39
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-DynamoDB-Table.d.ts +4 -3
- package/lib/AWS-DynamoDB-Table.js +1 -1
- package/lib/AWS-ECR-RegistryPolicy.d.ts +5 -3
- package/lib/AWS-ECR-RegistryPolicy.js +2 -1
- package/lib/AWS-ECR-Repository.d.ts +35 -36
- package/lib/AWS-ECR-Repository.js +1 -1
- package/lib/AWS-InternetMonitor-Monitor.d.ts +7 -0
- package/lib/AWS-OSIS-Pipeline.d.ts +6 -6
- package/lib/AWS-SSMContacts-Contact.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
You should be aware of the following behaviors when working with DDB tables:
|
|
6
6
|
+ CFNlong typically creates DDB tables in parallel. However, if your template includes multiple DDB tables with indexes, you must declare dependencies so that the tables are created sequentially. DDBlong limits the number of tables with secondary indexes that are in the creating state. If you create multiple tables with indexes at the same time, DDB returns an error and the stack operation fails. For an example, see [DynamoDB Table with a DependsOn Attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#aws-resource-dynamodb-table--examples--DynamoDB_Table_with_a_DependsOn_Attribute).
|
|
7
7
|
|
|
8
|
-
Our guidance is to use the latest schema documented here for
|
|
8
|
+
Our guidance is to use the latest schema documented here for your CFNlong templates. This schema supports the provisioning of all table settings below. When using this schema in your CFNlong templates, please ensure that your Identity and Access Management (IAM) policies are updated with appropriate permissions to allow for the authorization of these setting changes.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html}
|
|
10
10
|
*/
|
|
11
11
|
export type DynamoDBTableProperties = {
|
|
@@ -37,7 +37,8 @@ export type DynamoDBTableProperties = {
|
|
|
37
37
|
If you update a table to include a new global secondary index, CFNlong initiates the index creation and then proceeds with the stack update. CFNlong doesn't wait for the index to complete creation because the backfilling phase can take a long time, depending on the size of the table. You can't use the index or update the table until the index's status is ``ACTIVE``. You can track its status by using the DynamoDB [DescribeTable](https://docs.aws.amazon.com/cli/latest/reference/dynamodb/describe-table.html) command.
|
|
38
38
|
If you add or delete an index during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new index, you must manually delete the index.
|
|
39
39
|
Updates are not supported. The following are exceptions:
|
|
40
|
-
+ If you update either the contributor insights specification or the provisioned throughput
|
|
40
|
+
+ If you update either the contributor insights specification or the provisioned throughput values of global secondary indexes, you can update the table without interruption.
|
|
41
|
+
+ You can delete or add one global secondary index without interruption. If you do both in the same update (for example, by changing the index's logical ID), the update fails.
|
|
41
42
|
*/
|
|
42
43
|
GlobalSecondaryIndexes?: GlobalSecondaryIndex[];
|
|
43
44
|
/**
|
|
@@ -417,7 +418,7 @@ export type TimeToLiveSpecification = {
|
|
|
417
418
|
You should be aware of the following behaviors when working with DDB tables:
|
|
418
419
|
+ CFNlong typically creates DDB tables in parallel. However, if your template includes multiple DDB tables with indexes, you must declare dependencies so that the tables are created sequentially. DDBlong limits the number of tables with secondary indexes that are in the creating state. If you create multiple tables with indexes at the same time, DDB returns an error and the stack operation fails. For an example, see [DynamoDB Table with a DependsOn Attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#aws-resource-dynamodb-table--examples--DynamoDB_Table_with_a_DependsOn_Attribute).
|
|
419
420
|
|
|
420
|
-
Our guidance is to use the latest schema documented here for
|
|
421
|
+
Our guidance is to use the latest schema documented here for your CFNlong templates. This schema supports the provisioning of all table settings below. When using this schema in your CFNlong templates, please ensure that your Identity and Access Management (IAM) policies are updated with appropriate permissions to allow for the authorization of these setting changes.
|
|
421
422
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html}
|
|
422
423
|
*/
|
|
423
424
|
export declare class DynamoDBTable extends $Resource<"AWS::DynamoDB::Table", DynamoDBTableProperties, DynamoDBTableAttributes> {
|
|
@@ -4,7 +4,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
4
4
|
You should be aware of the following behaviors when working with DDB tables:
|
|
5
5
|
+ CFNlong typically creates DDB tables in parallel. However, if your template includes multiple DDB tables with indexes, you must declare dependencies so that the tables are created sequentially. DDBlong limits the number of tables with secondary indexes that are in the creating state. If you create multiple tables with indexes at the same time, DDB returns an error and the stack operation fails. For an example, see [DynamoDB Table with a DependsOn Attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#aws-resource-dynamodb-table--examples--DynamoDB_Table_with_a_DependsOn_Attribute).
|
|
6
6
|
|
|
7
|
-
Our guidance is to use the latest schema documented here for
|
|
7
|
+
Our guidance is to use the latest schema documented here for your CFNlong templates. This schema supports the provisioning of all table settings below. When using this schema in your CFNlong templates, please ensure that your Identity and Access Management (IAM) policies are updated with appropriate permissions to allow for the authorization of these setting changes.
|
|
8
8
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html}
|
|
9
9
|
*/
|
|
10
10
|
export class DynamoDBTable 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::RegistryPolicy
|
|
4
|
+
* The ``AWS::ECR::RegistryPolicy`` resource creates or updates the permissions policy for a private registry.
|
|
5
|
+
A private registry policy is used to specify permissions for another AWS-account and is used when configuring cross-account replication. For more information, see [Registry permissions](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry-permissions.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registrypolicy.html}
|
|
6
7
|
*/
|
|
7
8
|
export type ECRRegistryPolicyProperties = {
|
|
8
9
|
/**
|
|
9
|
-
* The JSON policy text
|
|
10
|
+
* The JSON policy text for your registry.
|
|
10
11
|
*/
|
|
11
12
|
PolicyText: Record<string, any>;
|
|
12
13
|
};
|
|
@@ -24,7 +25,8 @@ export type ECRRegistryPolicyAttributes = {
|
|
|
24
25
|
RegistryId: string;
|
|
25
26
|
};
|
|
26
27
|
/**
|
|
27
|
-
* The AWS::ECR::RegistryPolicy
|
|
28
|
+
* The ``AWS::ECR::RegistryPolicy`` resource creates or updates the permissions policy for a private registry.
|
|
29
|
+
A private registry policy is used to specify permissions for another AWS-account and is used when configuring cross-account replication. For more information, see [Registry permissions](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry-permissions.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
28
30
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registrypolicy.html}
|
|
29
31
|
*/
|
|
30
32
|
export declare class ECRRegistryPolicy extends $Resource<"AWS::ECR::RegistryPolicy", ECRRegistryPolicyProperties, ECRRegistryPolicyAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* The AWS::ECR::RegistryPolicy
|
|
3
|
+
* The ``AWS::ECR::RegistryPolicy`` resource creates or updates the permissions policy for a private registry.
|
|
4
|
+
A private registry policy is used to specify permissions for another AWS-account and is used when configuring cross-account replication. For more information, see [Registry permissions](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry-permissions.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-registrypolicy.html}
|
|
5
6
|
*/
|
|
6
7
|
export class ECRRegistryPolicy extends $Resource {
|
|
@@ -1,43 +1,41 @@
|
|
|
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::Repository resource specifies an Amazon Elastic Container Registry (Amazon ECR) repository, where users can push and pull Docker images. For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html
|
|
4
|
+
* The ``AWS::ECR::Repository`` resource specifies an Amazon Elastic Container Registry (Amazon ECR) repository, where users can push and pull Docker images, Open Container Initiative (OCI) images, and OCI compatible artifacts. For more information, see [Amazon ECR private repositories](https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html) in the *Amazon ECR User Guide*.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ECRRepositoryProperties = {
|
|
8
8
|
/**
|
|
9
|
-
* If true, deleting the repository force deletes the contents of the repository.
|
|
9
|
+
* If true, deleting the repository force deletes the contents of the repository. If false, the repository must be empty before attempting to delete it.
|
|
10
10
|
*/
|
|
11
11
|
EmptyOnDelete?: boolean;
|
|
12
12
|
/**
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
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 AES-256 encryption algorithm. This does not require any action on your part.
|
|
16
|
-
|
|
17
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
|
|
18
|
-
*/
|
|
13
|
+
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
14
|
+
*/
|
|
19
15
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
20
16
|
/**
|
|
21
|
-
* The image scanning configuration for the repository. This
|
|
17
|
+
* The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
|
|
22
18
|
*/
|
|
23
19
|
ImageScanningConfiguration?: ImageScanningConfiguration;
|
|
24
20
|
/**
|
|
25
|
-
* The
|
|
21
|
+
* The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
|
|
26
22
|
*/
|
|
27
23
|
ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
|
|
28
24
|
/**
|
|
29
|
-
*
|
|
25
|
+
* Creates or updates a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html).
|
|
30
26
|
*/
|
|
31
27
|
LifecyclePolicy?: LifecyclePolicy;
|
|
32
28
|
/**
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
29
|
+
* The name to use for the 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).
|
|
30
|
+
The repository name must start with a letter and can only contain lowercase letters, numbers, hyphens, underscores, and forward slashes.
|
|
31
|
+
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.
|
|
32
|
+
* @minLength `2`
|
|
33
|
+
* @maxLength `256`
|
|
34
|
+
* @pattern `^(?=.{2,256}$)((?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)*)$`
|
|
35
|
+
*/
|
|
38
36
|
RepositoryName?: string;
|
|
39
37
|
/**
|
|
40
|
-
* The JSON repository policy text to apply to the repository. For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/
|
|
38
|
+
* The JSON repository policy text to apply to the repository. For more information, see [Amazon ECR repository policies](https://docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policy-examples.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
41
39
|
*/
|
|
42
40
|
RepositoryPolicyText?: Record<string, any> | string;
|
|
43
41
|
/**
|
|
@@ -57,19 +55,19 @@ export type ECRRepositoryAttributes = {
|
|
|
57
55
|
/**
|
|
58
56
|
* Type definition for `AWS::ECR::Repository.EncryptionConfiguration`.
|
|
59
57
|
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
|
|
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 AES-256 encryption algorithm. This does not require any action on your part.
|
|
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*.
|
|
64
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-encryptionconfiguration.html}
|
|
65
61
|
*/
|
|
66
62
|
export type EncryptionConfiguration = {
|
|
67
63
|
/**
|
|
68
|
-
|
|
69
|
-
|
|
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. For more information, see [Protecting data using server-side encryption with an key stored in (SSE-KMS)](https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html) in the *Amazon Simple Storage Service Console Developer Guide*.
|
|
66
|
+
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 AES-256 encryption algorithm. For more information, see [Protecting data using server-side encryption with Amazon S3-managed encryption keys (SSE-S3)](https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html) in the *Ama
|
|
67
|
+
*/
|
|
70
68
|
EncryptionType: EncryptionType;
|
|
71
69
|
/**
|
|
72
|
-
* If you use the KMS encryption type, specify the
|
|
70
|
+
* If you use the ``KMS`` encryption type, specify the KMS key to use for encryption. The alias, key ID, or full ARN of the KMS key can be specified. The key must exist in the same Region as the repository. If no key is specified, the default AWS managed KMS key for Amazon ECR will be used.
|
|
73
71
|
* @minLength `1`
|
|
74
72
|
* @maxLength `2048`
|
|
75
73
|
*/
|
|
@@ -83,18 +81,18 @@ export type EncryptionConfiguration = {
|
|
|
83
81
|
export type EncryptionType = "AES256" | "KMS";
|
|
84
82
|
/**
|
|
85
83
|
* Type definition for `AWS::ECR::Repository.ImageScanningConfiguration`.
|
|
86
|
-
* The image scanning configuration for
|
|
84
|
+
* The image scanning configuration for a repository.
|
|
87
85
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagescanningconfiguration.html}
|
|
88
86
|
*/
|
|
89
87
|
export type ImageScanningConfiguration = {
|
|
90
88
|
/**
|
|
91
|
-
* The setting that determines whether images are scanned after being pushed to a repository.
|
|
89
|
+
* The setting that determines whether images are scanned after being pushed to a repository. If set to ``true``, images will be scanned after being pushed. If this parameter is not specified, it will default to ``false`` and images will not be scanned unless a scan is manually started.
|
|
92
90
|
*/
|
|
93
91
|
ScanOnPush?: boolean;
|
|
94
92
|
};
|
|
95
93
|
/**
|
|
96
94
|
* Type definition for `AWS::ECR::Repository.LifecyclePolicy`.
|
|
97
|
-
* The LifecyclePolicy property type specifies a lifecycle policy. For information about lifecycle policy syntax, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html
|
|
95
|
+
* The ``LifecyclePolicy`` property type specifies a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html) in the *Amazon ECR User Guide*.
|
|
98
96
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html}
|
|
99
97
|
*/
|
|
100
98
|
export type LifecyclePolicy = {
|
|
@@ -105,34 +103,35 @@ export type LifecyclePolicy = {
|
|
|
105
103
|
*/
|
|
106
104
|
LifecyclePolicyText?: string;
|
|
107
105
|
/**
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
106
|
+
* The AWS account ID associated with the registry that contains the repository. If you do
|
|
107
|
+
not specify a registry, the default registry is assumed.
|
|
108
|
+
* @minLength `12`
|
|
109
|
+
* @maxLength `12`
|
|
110
|
+
* @pattern `^[0-9]{12}$`
|
|
111
|
+
*/
|
|
113
112
|
RegistryId?: string;
|
|
114
113
|
};
|
|
115
114
|
/**
|
|
116
115
|
* Type definition for `AWS::ECR::Repository.Tag`.
|
|
117
|
-
*
|
|
116
|
+
* 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.
|
|
118
117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-tag.html}
|
|
119
118
|
*/
|
|
120
119
|
export type Tag = {
|
|
121
120
|
/**
|
|
122
|
-
*
|
|
121
|
+
* 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.
|
|
123
122
|
* @minLength `1`
|
|
124
123
|
* @maxLength `127`
|
|
125
124
|
*/
|
|
126
125
|
Key: string;
|
|
127
126
|
/**
|
|
128
|
-
*
|
|
127
|
+
* A ``value`` acts as a descriptor within a tag category (key).
|
|
129
128
|
* @minLength `1`
|
|
130
129
|
* @maxLength `255`
|
|
131
130
|
*/
|
|
132
131
|
Value: string;
|
|
133
132
|
};
|
|
134
133
|
/**
|
|
135
|
-
* The AWS::ECR::Repository resource specifies an Amazon Elastic Container Registry (Amazon ECR) repository, where users can push and pull Docker images. For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html
|
|
134
|
+
* The ``AWS::ECR::Repository`` resource specifies an Amazon Elastic Container Registry (Amazon ECR) repository, where users can push and pull Docker images, Open Container Initiative (OCI) images, and OCI compatible artifacts. For more information, see [Amazon ECR private repositories](https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html) in the *Amazon ECR User Guide*.
|
|
136
135
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html}
|
|
137
136
|
*/
|
|
138
137
|
export declare class ECRRepository extends $Resource<"AWS::ECR::Repository", ECRRepositoryProperties, ECRRepositoryAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* The AWS::ECR::Repository resource specifies an Amazon Elastic Container Registry (Amazon ECR) repository, where users can push and pull Docker images. For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html
|
|
3
|
+
* The ``AWS::ECR::Repository`` resource specifies an Amazon Elastic Container Registry (Amazon ECR) repository, where users can push and pull Docker images, Open Container Initiative (OCI) images, and OCI compatible artifacts. For more information, see [Amazon ECR private repositories](https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html) in the *Amazon ECR User Guide*.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html}
|
|
5
5
|
*/
|
|
6
6
|
export class ECRRepository extends $Resource {
|
|
@@ -7,7 +7,14 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
*/
|
|
8
8
|
export type InternetMonitorMonitorProperties = {
|
|
9
9
|
HealthEventsConfig?: HealthEventsConfig;
|
|
10
|
+
IncludeLinkedAccounts?: boolean;
|
|
10
11
|
InternetMeasurementsLogDelivery?: InternetMeasurementsLogDelivery;
|
|
12
|
+
/**
|
|
13
|
+
* @minLength `12`
|
|
14
|
+
* @maxLength `12`
|
|
15
|
+
* @pattern `^(\d{12})$`
|
|
16
|
+
*/
|
|
17
|
+
LinkedAccountId?: string;
|
|
11
18
|
/**
|
|
12
19
|
* @min `1`
|
|
13
20
|
* @max `500000`
|
|
@@ -19,21 +19,21 @@ export type OSISPipelineProperties = {
|
|
|
19
19
|
*/
|
|
20
20
|
LogPublishingOptions?: LogPublishingOptions;
|
|
21
21
|
/**
|
|
22
|
-
* The maximum pipeline capacity, in Ingestion Compute Units (
|
|
22
|
+
* The maximum pipeline capacity, in Ingestion OpenSearch Compute Units (OCUs).
|
|
23
23
|
* @min `1`
|
|
24
|
-
* @max `
|
|
24
|
+
* @max `384`
|
|
25
25
|
*/
|
|
26
26
|
MaxUnits: number;
|
|
27
27
|
/**
|
|
28
|
-
* The minimum pipeline capacity, in Ingestion Compute Units (
|
|
28
|
+
* The minimum pipeline capacity, in Ingestion OpenSearch Compute Units (OCUs).
|
|
29
29
|
* @min `1`
|
|
30
|
-
* @max `
|
|
30
|
+
* @max `384`
|
|
31
31
|
*/
|
|
32
32
|
MinUnits: number;
|
|
33
33
|
/**
|
|
34
|
-
* The Data Prepper pipeline configuration
|
|
34
|
+
* The Data Prepper pipeline configuration.
|
|
35
35
|
* @minLength `1`
|
|
36
|
-
* @maxLength `
|
|
36
|
+
* @maxLength `24000`
|
|
37
37
|
*/
|
|
38
38
|
PipelineConfigurationBody: string;
|
|
39
39
|
/**
|
|
@@ -26,7 +26,7 @@ export type SSMContactsContactProperties = {
|
|
|
26
26
|
/**
|
|
27
27
|
* Contact type, which specify type of contact. Currently supported values: “PERSONAL”, “SHARED”, “OTHER“.
|
|
28
28
|
*/
|
|
29
|
-
Type: "PERSONAL" | "
|
|
29
|
+
Type: "PERSONAL" | "ESCALATION" | "ONCALL_SCHEDULE";
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
32
|
* Attribute type definition for `AWS::SSMContacts::Contact`.
|