@awboost/cfn-resource-types 0.1.33 → 0.1.35

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.
@@ -1,73 +1,105 @@
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
- * Resource Type definition for AWS::SQS::Queue
4
+ * The ``AWS::SQS::Queue`` resource creates an SQS standard or FIFO queue.
5
+ Keep the following caveats in mind:
6
+ + If you don't specify the ``FifoQueue`` property, SQS creates a standard queue.
7
+ You can't change the queue type after you create it and you can't convert an existing standard queue into a FIFO queue. You must either create a new FIFO queue for your application or delete your existing standard queue and recreate it as a FIFO queue. For more information, see [Moving from a standard queue to a FIFO queue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues-moving.html) in the *Developer Guide*.
8
+ + If you don't provide a value for a property, the queue is created with the default value for the property.
9
+ + If you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.
10
+ + To successfully create a new queue, you must provide a queue name that adheres to the [limits related to queues](https://docs.aw
5
11
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html}
6
12
  */
7
13
  export type SQSQueueProperties = {
8
14
  /**
9
- * For first-in-first-out (FIFO) queues, specifies whether to enable content-based deduplication. During the deduplication interval, Amazon SQS treats messages that are sent with identical content as duplicates and delivers only one copy of the message.
15
+ * For first-in-first-out (FIFO) queues, specifies whether to enable content-based deduplication. During the deduplication interval, SQS treats messages that are sent with identical content as duplicates and delivers only one copy of the message. For more information, see the ``ContentBasedDeduplication`` attribute for the ``CreateQueue`` action in the *API Reference*.
10
16
  */
11
17
  ContentBasedDeduplication?: boolean;
12
18
  /**
13
- * Specifies whether message deduplication occurs at the message group or queue level. Valid values are messageGroup and queue.
14
- */
19
+ * For high throughput for FIFO queues, specifies whether message deduplication occurs at the message group or queue level. Valid values are ``messageGroup`` and ``queue``.
20
+ To enable high throughput for a FIFO queue, set this attribute to ``messageGroup`` *and* set the ``FifoThroughputLimit`` attribute to ``perMessageGroupId``. If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see [High throughput for FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html) and [Quotas related to messages](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html) in the *Developer Guide*.
21
+ */
15
22
  DeduplicationScope?: string;
16
23
  /**
17
- * The time in seconds for which the delivery of all messages in the queue is delayed. You can specify an integer value of 0 to 900 (15 minutes). The default value is 0.
24
+ * The time in seconds for which the delivery of all messages in the queue is delayed. You can specify an integer value of ``0`` to ``900`` (15 minutes). The default value is ``0``.
18
25
  */
19
26
  DelaySeconds?: number;
20
27
  /**
21
- * If set to true, creates a FIFO queue. If you don't specify this property, Amazon SQS creates a standard queue.
28
+ * If set to true, creates a FIFO queue. If you don't specify this property, SQS creates a standard queue. For more information, see [FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html) in the *Developer Guide*.
22
29
  */
23
30
  FifoQueue?: boolean;
24
31
  /**
25
- * Specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are perQueue and perMessageGroupId. The perMessageGroupId value is allowed only when the value for DeduplicationScope is messageGroup.
26
- */
32
+ * For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are ``perQueue`` and ``perMessageGroupId``.
33
+ To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId`` *and* set the ``DeduplicationScope`` attribute to ``messageGroup``. If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see [High throughput for FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html) and [Quotas related to messages](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html) in the *Developer Guide*.
34
+ */
27
35
  FifoThroughputLimit?: string;
28
36
  /**
29
- * The length of time in seconds for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes).
30
- */
37
+ * The length of time in seconds for which SQS can reuse a data key to encrypt or decrypt messages before calling KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes).
38
+ A shorter time period provides better security, but results in more calls to KMS, which might incur charges after Free Tier. For more information, see [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work) in the *Developer Guide*.
39
+ */
31
40
  KmsDataKeyReusePeriodSeconds?: number;
32
41
  /**
33
- * The ID of an AWS managed customer master key (CMK) for Amazon SQS or a custom CMK. To use the AWS managed CMK for Amazon SQS, specify the (default) alias alias/aws/sqs.
34
- */
42
+ * The ID of an AWS Key Management Service (KMS) for SQS, or a custom KMS. To use the AWS managed KMS for SQS, specify a (default) alias ARN, alias name (e.g. ``alias/aws/sqs``), key ARN, or key ID. For more information, see the following:
43
+ + [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html) in the *Developer Guide*
44
+ + [CreateQueue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html) in the *API Reference*
45
+ + [Request Parameters](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters) in the *Key Management Service API Reference*
46
+ + The Key Management Service (KMS) section of the [Best Practices](https://docs.aws.amazon.com/https://d0.awsstatic.com/whitepapers/aws-kms-best-practices.pdf) whitepaper
47
+ */
35
48
  KmsMasterKeyId?: string;
36
49
  /**
37
- * The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer value from 1,024 bytes (1 KiB) to 262,144 bytes (256 KiB). The default value is 262,144 (256 KiB).
50
+ * The limit of how many bytes that a message can contain before SQS rejects it. You can specify an integer value from ``1,024`` bytes (1 KiB) to ``262,144`` bytes (256 KiB). The default value is ``262,144`` (256 KiB).
38
51
  */
39
52
  MaximumMessageSize?: number;
40
53
  /**
41
- * The number of seconds that Amazon SQS retains a message. You can specify an integer value from 60 seconds (1 minute) to 1,209,600 seconds (14 days). The default value is 345,600 seconds (4 days).
54
+ * The number of seconds that SQS retains a message. You can specify an integer value from ``60`` seconds (1 minute) to ``1,209,600`` seconds (14 days). The default value is ``345,600`` seconds (4 days).
42
55
  */
43
56
  MessageRetentionPeriod?: number;
44
57
  /**
45
- * A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the .fifo suffix.
46
- */
58
+ * A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see [FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html) in the *Developer Guide*.
59
+ If you don't specify a name, CFN generates a unique physical ID and uses that ID for the queue name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) in the *User Guide*.
60
+ If you specify a name, you can't 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.
61
+ */
47
62
  QueueName?: string;
48
63
  /**
49
- * Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, rather than returning an empty response if a message isn't yet available. You can specify an integer from 1 to 20. Short polling is used as the default or when you specify 0 for this property.
64
+ * Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, rather than returning an empty response if a message isn't yet available. You can specify an integer from 1 to 20. Short polling is used as the default or when you specify 0 for this property. For more information, see [Consuming messages using long polling](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-short-and-long-polling.html#sqs-long-polling) in the *Developer Guide*.
50
65
  */
51
66
  ReceiveMessageWaitTimeSeconds?: number;
52
67
  /**
53
- * The string that includes the parameters for the permissions for the dead-letter queue redrive permission and which source queues can specify dead-letter queues as a JSON object.
54
- */
68
+ * The string that includes the parameters for the permissions for the dead-letter queue redrive permission and which source queues can specify dead-letter queues as a JSON object. The parameters are as follows:
69
+ + ``redrivePermission``: The permission type that defines which source queues can specify the current queue as the dead-letter queue. Valid values are:
70
+ + ``allowAll``: (Default) Any source queues in this AWS account in the same Region can specify this queue as the dead-letter queue.
71
+ + ``denyAll``: No source queues can specify this queue as the dead-letter queue.
72
+ + ``byQueue``: Only queues specified by the ``sourceQueueArns`` parameter can specify this queue as the dead-letter queue.
73
+
74
+ + ``sourceQueueArns``: The Amazon Resource Names (ARN)s of the source queues that can specify this queue as the dead-letter queue and redrive messages. You can specify this parameter only when the ``redrivePermission`` parameter is set to ``byQueue``. You can specify up to 10 source q
75
+ */
55
76
  RedriveAllowPolicy?: Record<string, any> | string;
56
77
  /**
57
- * A string that includes the parameters for the dead-letter queue functionality (redrive policy) of the source queue.
58
- */
78
+ * The string that includes the parameters for the dead-letter queue functionality of the source queue as a JSON object. The parameters are as follows:
79
+ + ``deadLetterTargetArn``: The Amazon Resource Name (ARN) of the dead-letter queue to which SQS moves messages after the value of ``maxReceiveCount`` is exceeded.
80
+ + ``maxReceiveCount``: The number of times a message is delivered to the source queue before being moved to the dead-letter queue. When the ``ReceiveCount`` for a message exceeds the ``maxReceiveCount`` for a queue, SQS moves the message to the dead-letter-queue.
81
+
82
+ The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue.
83
+ *JSON*
84
+ ``{ "deadLetterTargetArn" : String, "maxReceiveCount" : Integer }``
85
+ *YAML*
86
+ ``deadLetterTargetArn : String``
87
+ ``maxReceiveCount : Integer``
88
+ */
59
89
  RedrivePolicy?: Record<string, any> | string;
60
90
  /**
61
- * Enables server-side queue encryption using SQS owned encryption keys. Only one server-side encryption option is supported per queue (e.g. SSE-KMS or SSE-SQS ).
91
+ * Enables server-side queue encryption using SQS owned encryption keys. Only one server-side encryption option is supported per queue (for example, [SSE-KMS](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-configure-sse-existing-queue.html) or [SSE-SQS](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-configure-sqs-sse-queue.html)). When ``SqsManagedSseEnabled`` is not defined, ``SSE-SQS`` encryption is enabled by default.
62
92
  */
63
93
  SqsManagedSseEnabled?: boolean;
64
94
  /**
65
- * The tags that you attach to this queue.
95
+ * The tags that you attach to this queue. For more information, see [Resource tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) in the *User Guide*.
66
96
  */
67
97
  Tags?: Tag[];
68
98
  /**
69
- * The length of time during which a message will be unavailable after a message is delivered from the queue. This blocks other components from receiving the same message and gives the initial component time to process and delete the message from the queue. Values must be from 0 to 43,200 seconds (12 hours). If you don't specify a value, AWS CloudFormation uses the default value of 30 seconds.
70
- */
99
+ * The length of time during which a message will be unavailable after a message is delivered from the queue. This blocks other components from receiving the same message and gives the initial component time to process and delete the message from the queue.
100
+ Values must be from 0 to 43,200 seconds (12 hours). If you don't specify a value, AWS CloudFormation uses the default value of 30 seconds.
101
+ For more information about SQS queue visibility timeouts, see [Visibility timeout](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-visibility-timeout.html) in the *Developer Guide*.
102
+ */
71
103
  VisibilityTimeout?: number;
72
104
  };
73
105
  /**
@@ -75,13 +107,7 @@ export type SQSQueueProperties = {
75
107
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html#aws-resource-sqs-queue-return-values}
76
108
  */
77
109
  export type SQSQueueAttributes = {
78
- /**
79
- * Amazon Resource Name (ARN) of the queue.
80
- */
81
110
  Arn: string;
82
- /**
83
- * URL of the source queue.
84
- */
85
111
  QueueUrl: string;
86
112
  };
87
113
  /**
@@ -99,7 +125,13 @@ export type Tag = {
99
125
  Value: string;
100
126
  };
101
127
  /**
102
- * Resource Type definition for AWS::SQS::Queue
128
+ * The ``AWS::SQS::Queue`` resource creates an SQS standard or FIFO queue.
129
+ Keep the following caveats in mind:
130
+ + If you don't specify the ``FifoQueue`` property, SQS creates a standard queue.
131
+ You can't change the queue type after you create it and you can't convert an existing standard queue into a FIFO queue. You must either create a new FIFO queue for your application or delete your existing standard queue and recreate it as a FIFO queue. For more information, see [Moving from a standard queue to a FIFO queue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues-moving.html) in the *Developer Guide*.
132
+ + If you don't provide a value for a property, the queue is created with the default value for the property.
133
+ + If you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.
134
+ + To successfully create a new queue, you must provide a queue name that adheres to the [limits related to queues](https://docs.aw
103
135
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html}
104
136
  */
105
137
  export declare class SQSQueue extends $Resource<"AWS::SQS::Queue", SQSQueueProperties, SQSQueueAttributes> {
@@ -1,6 +1,12 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::SQS::Queue
3
+ * The ``AWS::SQS::Queue`` resource creates an SQS standard or FIFO queue.
4
+ Keep the following caveats in mind:
5
+ + If you don't specify the ``FifoQueue`` property, SQS creates a standard queue.
6
+ You can't change the queue type after you create it and you can't convert an existing standard queue into a FIFO queue. You must either create a new FIFO queue for your application or delete your existing standard queue and recreate it as a FIFO queue. For more information, see [Moving from a standard queue to a FIFO queue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues-moving.html) in the *Developer Guide*.
7
+ + If you don't provide a value for a property, the queue is created with the default value for the property.
8
+ + If you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.
9
+ + To successfully create a new queue, you must provide a queue name that adheres to the [limits related to queues](https://docs.aw
4
10
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html}
5
11
  */
6
12
  export class SQSQueue extends $Resource {
@@ -9,7 +9,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
9
9
  */
10
10
  export type SSMParameterProperties = {
11
11
  /**
12
- * A regular expression used to validate the parameter value. For example, for String types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\d+$``
12
+ * A regular expression used to validate the parameter value. For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\d+$``
13
13
  */
14
14
  AllowedPattern?: string;
15
15
  /**
@@ -6,7 +6,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  For RDS master user credentials, see [AWS::RDS::DBCluster MasterUserSecret](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-masterusersecret.html).
7
7
  To retrieve a secret in a CFNshort template, use a *dynamic reference*. For more information, see [Retrieve a secret in an resource](https://docs.aws.amazon.com/secretsmanager/latest/userguide/cfn-example_reference-secret.html).
8
8
  A common scenario is to first create a secret with ``GenerateSecretString``, which generates a password, and then use a dynamic reference to retrieve the username and password from the secret to use as credentials for a new database. See the example *Creating a Redshift cluster and a secret for the admin credentials*.
9
- For information about creating a secret in the c
9
+ For information about creating a secret in the console, see [Create a secret](https://docs.aws.amazon.com/secretsmanager/latest/userguide/manage_create-basic-secret.html). For information about creating a secret using the CLI or SDK, see [CreateSecret](https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_CreateSecret.html).
10
+ For information about retrieving a secret in code, see [Retrieve secrets from Secrets Manager](https://docs.aws.amazon.com/secretsmanager/latest/userguide/retrieving-secrets.html).
10
11
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html}
11
12
  */
12
13
  export type SecretsManagerSecretProperties = {
@@ -45,7 +46,15 @@ export type SecretsManagerSecretProperties = {
45
46
  ``[{"Key":"CostCenter","Value":"12345"},{"Key":"environment","Value":"production"}]``
46
47
  Secrets Manager tag key names are case sensitive. A tag with the key "ABC" is a different tag from one with key "abc".
47
48
  Stack-level tags, tags you apply to the CloudFormation stack, are also attached to the secret.
48
- If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns an ``Access Denied`` error. For more information, see [Control access to secrets using tags](https://docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access_examples.html#tag-secrets-abac) and [Limit access to identities with tags that match secrets' tags](https://docs.aws.amazo
49
+ If you check tags in permissions policies as part of your security strategy, then adding or removing a tag can change permissions. If the completion of this operation would result in you losing your permissions for this secret, then Secrets Manager blocks the operation and returns an ``Access Denied`` error. For more information, see [Control access to secrets using tags](https://docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access_examples.html#tag-secrets-abac) and [Limit access to identities with tags that match secrets' tags](https://docs.aws.amazon.com/secretsmanager/latest/userguide/auth-and-access_examples.html#auth-and-access_tags2).
50
+ For information about how to format a JSON parameter for the various command line tool environments, see [Using JSON for Parameters](https://docs.aws.amazon.com/cli/latest/userguide/cli-using-param.html#cli-using-param-json). If your command-line tool or SDK requires quotation marks around the parameter, you should use single quotes to avoid confusion with the double quotes required in the JSON text.
51
+ The following restrictions apply to tags:
52
+ + Maximum number of tags per secret: 50
53
+ + Maximum key length: 127 Unicode characters in UTF-8
54
+ + Maximum value length: 255 Unicode characters in UTF-8
55
+ + Tag keys and values are case sensitive.
56
+ + Do not use the ``aws:`` prefix in your tag names or values because AWS reserves it for AWS use. You can't edit or delete tag names or values with this prefix. Tags with this prefix do not count against your tags per secret limit.
57
+ + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
49
58
  */
50
59
  Tags?: Tag[];
51
60
  };
@@ -140,7 +149,8 @@ export type Tag = {
140
149
  For RDS master user credentials, see [AWS::RDS::DBCluster MasterUserSecret](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-masterusersecret.html).
141
150
  To retrieve a secret in a CFNshort template, use a *dynamic reference*. For more information, see [Retrieve a secret in an resource](https://docs.aws.amazon.com/secretsmanager/latest/userguide/cfn-example_reference-secret.html).
142
151
  A common scenario is to first create a secret with ``GenerateSecretString``, which generates a password, and then use a dynamic reference to retrieve the username and password from the secret to use as credentials for a new database. See the example *Creating a Redshift cluster and a secret for the admin credentials*.
143
- For information about creating a secret in the c
152
+ For information about creating a secret in the console, see [Create a secret](https://docs.aws.amazon.com/secretsmanager/latest/userguide/manage_create-basic-secret.html). For information about creating a secret using the CLI or SDK, see [CreateSecret](https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_CreateSecret.html).
153
+ For information about retrieving a secret in code, see [Retrieve secrets from Secrets Manager](https://docs.aws.amazon.com/secretsmanager/latest/userguide/retrieving-secrets.html).
144
154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html}
145
155
  */
146
156
  export declare class SecretsManagerSecret extends $Resource<"AWS::SecretsManager::Secret", SecretsManagerSecretProperties, SecretsManagerSecretAttributes> {
@@ -5,7 +5,8 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
5
5
  For RDS master user credentials, see [AWS::RDS::DBCluster MasterUserSecret](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-masterusersecret.html).
6
6
  To retrieve a secret in a CFNshort template, use a *dynamic reference*. For more information, see [Retrieve a secret in an resource](https://docs.aws.amazon.com/secretsmanager/latest/userguide/cfn-example_reference-secret.html).
7
7
  A common scenario is to first create a secret with ``GenerateSecretString``, which generates a password, and then use a dynamic reference to retrieve the username and password from the secret to use as credentials for a new database. See the example *Creating a Redshift cluster and a secret for the admin credentials*.
8
- For information about creating a secret in the c
8
+ For information about creating a secret in the console, see [Create a secret](https://docs.aws.amazon.com/secretsmanager/latest/userguide/manage_create-basic-secret.html). For information about creating a secret using the CLI or SDK, see [CreateSecret](https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_CreateSecret.html).
9
+ For information about retrieving a secret in code, see [Retrieve secrets from Secrets Manager](https://docs.aws.amazon.com/secretsmanager/latest/userguide/retrieving-secrets.html).
9
10
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html}
10
11
  */
11
12
  export class SecretsManagerSecret extends $Resource {
@@ -212,7 +212,7 @@ export type CookieMatchPattern = {
212
212
  };
213
213
  /**
214
214
  * Type definition for `AWS::WAFv2::RuleGroup.Cookies`.
215
- * Includes headers of a web request.
215
+ * Includes cookies of a web request.
216
216
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-cookies.html}
217
217
  */
218
218
  export type Cookies = {
@@ -332,13 +332,17 @@ export type FieldToMatch = {
332
332
  */
333
333
  Body?: Body;
334
334
  /**
335
- * Includes headers of a web request.
335
+ * Includes cookies of a web request.
336
336
  */
337
337
  Cookies?: Cookies;
338
338
  /**
339
339
  * Includes headers of a web request.
340
340
  */
341
341
  Headers?: Headers;
342
+ /**
343
+ * Includes the JA3 fingerprint of a web request.
344
+ */
345
+ JA3Fingerprint?: JA3Fingerprint;
342
346
  /**
343
347
  * Inspect the request body as JSON. The request body immediately follows the request headers.
344
348
  */
@@ -460,6 +464,14 @@ export type IPSetReferenceStatement = {
460
464
  Arn: string;
461
465
  IPSetForwardedIPConfig?: IPSetForwardedIPConfiguration;
462
466
  };
467
+ /**
468
+ * Type definition for `AWS::WAFv2::RuleGroup.JA3Fingerprint`.
469
+ * Includes the JA3 fingerprint of a web request.
470
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-ja3fingerprint.html}
471
+ */
472
+ export type JA3Fingerprint = {
473
+ FallbackBehavior: "MATCH" | "NO_MATCH";
474
+ };
463
475
  /**
464
476
  * Type definition for `AWS::WAFv2::RuleGroup.JsonBody`.
465
477
  * Inspect the request body as JSON. The request body immediately follows the request headers.
@@ -266,7 +266,7 @@ export type CookieMatchPattern = {
266
266
  };
267
267
  /**
268
268
  * Type definition for `AWS::WAFv2::WebACL.Cookies`.
269
- * Includes headers of a web request.
269
+ * Includes cookies of a web request.
270
270
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-cookies.html}
271
271
  */
272
272
  export type Cookies = {
@@ -425,13 +425,17 @@ export type FieldToMatch = {
425
425
  */
426
426
  Body?: Body;
427
427
  /**
428
- * Includes headers of a web request.
428
+ * Includes cookies of a web request.
429
429
  */
430
430
  Cookies?: Cookies;
431
431
  /**
432
432
  * Includes headers of a web request.
433
433
  */
434
434
  Headers?: Headers;
435
+ /**
436
+ * Includes the JA3 fingerprint of a web request.
437
+ */
438
+ JA3Fingerprint?: JA3Fingerprint;
435
439
  /**
436
440
  * Inspect the request body as JSON. The request body immediately follows the request headers.
437
441
  */
@@ -553,6 +557,14 @@ export type IPSetReferenceStatement = {
553
557
  Arn: string;
554
558
  IPSetForwardedIPConfig?: IPSetForwardedIPConfiguration;
555
559
  };
560
+ /**
561
+ * Type definition for `AWS::WAFv2::WebACL.JA3Fingerprint`.
562
+ * Includes the JA3 fingerprint of a web request.
563
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-ja3fingerprint.html}
564
+ */
565
+ export type JA3Fingerprint = {
566
+ FallbackBehavior: "MATCH" | "NO_MATCH";
567
+ };
556
568
  /**
557
569
  * Type definition for `AWS::WAFv2::WebACL.JsonBody`.
558
570
  * Inspect the request body as JSON. The request body immediately follows the request headers.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.33",
3
+ "version": "0.1.35",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },