@awboost/cfn-resource-types 0.1.107 → 0.1.108

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.
Files changed (33) hide show
  1. package/lib/AWS-CloudFormation-StackSet.d.ts +10 -0
  2. package/lib/AWS-CodePipeline-Pipeline.d.ts +220 -10
  3. package/lib/AWS-CodePipeline-Pipeline.js +1 -1
  4. package/lib/AWS-Deadline-MeteredProduct.d.ts +15 -15
  5. package/lib/AWS-ECS-TaskDefinition.d.ts +6 -6
  6. package/lib/AWS-LaunchWizard-Deployment.d.ts +109 -0
  7. package/lib/AWS-LaunchWizard-Deployment.js +12 -0
  8. package/lib/AWS-RDS-DBCluster.d.ts +448 -161
  9. package/lib/AWS-RDS-DBCluster.js +17 -1
  10. package/lib/AWS-RDS-DBClusterParameterGroup.d.ts +29 -11
  11. package/lib/AWS-RDS-DBClusterParameterGroup.js +4 -1
  12. package/lib/AWS-RDS-DBInstance.d.ts +9 -1
  13. package/lib/AWS-RDS-EventSubscription.d.ts +29 -17
  14. package/lib/AWS-RDS-EventSubscription.js +1 -1
  15. package/lib/AWS-RDS-OptionGroup.d.ts +36 -15
  16. package/lib/AWS-RDS-OptionGroup.js +1 -1
  17. package/lib/AWS-S3-Bucket.d.ts +1 -1
  18. package/lib/AWS-SES-MailManagerAddonInstance.d.ts +60 -0
  19. package/lib/AWS-SES-MailManagerAddonInstance.js +12 -0
  20. package/lib/AWS-SES-MailManagerAddonSubscription.d.ts +54 -0
  21. package/lib/AWS-SES-MailManagerAddonSubscription.js +12 -0
  22. package/lib/AWS-SES-MailManagerArchive.d.ts +81 -0
  23. package/lib/AWS-SES-MailManagerArchive.js +12 -0
  24. package/lib/AWS-SES-MailManagerIngressPoint.d.ts +105 -0
  25. package/lib/AWS-SES-MailManagerIngressPoint.js +12 -0
  26. package/lib/AWS-SES-MailManagerRelay.d.ts +88 -0
  27. package/lib/AWS-SES-MailManagerRelay.js +12 -0
  28. package/lib/AWS-SES-MailManagerRuleSet.d.ts +447 -0
  29. package/lib/AWS-SES-MailManagerRuleSet.js +12 -0
  30. package/lib/AWS-SES-MailManagerTrafficPolicy.d.ts +212 -0
  31. package/lib/AWS-SES-MailManagerTrafficPolicy.js +12 -0
  32. package/lib/AWS-WorkSpacesThinClient-Environment.d.ts +5 -0
  33. package/package.json +1 -1
@@ -1,6 +1,22 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * The AWS::RDS::DBCluster resource creates an Amazon Aurora DB cluster.
3
+ * The ``AWS::RDS::DBCluster`` resource creates an Amazon Aurora DB cluster or Multi-AZ DB cluster.
4
+ For more information about creating an Aurora DB cluster, see [Creating an Amazon Aurora DB cluster](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.CreateInstance.html) in the *Amazon Aurora User Guide*.
5
+ For more information about creating a Multi-AZ DB cluster, see [Creating a Multi-AZ DB cluster](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/create-multi-az-db-cluster.html) in the *Amazon RDS User Guide*.
6
+ You can only create this resource in AWS Regions where Amazon Aurora or Multi-AZ DB clusters are supported.
7
+ *Updating DB clusters*
8
+ When properties labeled "*Update requires:* [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement)" are updated, AWS CloudFormation first creates a replacement DB cluster, then changes references from other dependent resources to point to the replacement DB cluster, and finally deletes the old DB cluster.
9
+ We highly recommend that you take a snapshot of the database before updating the stack. If you don't, you lose the data when AWS CloudFormation replaces your DB cluster. To preserve your data, perform the following procedure:
10
+ 1. Deactivate any applications that are using the DB cluster so that there's no activity on the DB instance.
11
+ 1. Create a snapshot of the DB cluster. For more information, see [Creating a DB Cluster Snapshot](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_CreateSnapshotCluster.html).
12
+ 1. If you want to restore your DB cluster using a DB cluster snapshot, modify the updated template with your DB cluster changes and add the ``SnapshotIdentifier`` property with the ID of the DB cluster snapshot that you want to use.
13
+ After you restore a DB cluster with a ``SnapshotIdentifier`` property, you must specify the same ``SnapshotIdentifier`` property for any future updates to the DB cluster. When you specify this property for an update, the DB cluster is not restored from the DB cluster snapshot again, and the data in the database is not changed. However, if you don't specify the ``SnapshotIdentifier`` property, an empty DB cluster is created, and the original DB cluster is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB cluster is restored from the specified ``SnapshotIdentifier`` property, and the original DB cluster is deleted.
14
+ 1. Update the stack.
15
+
16
+ Currently, when you are updating the stack for an Aurora Serverless DB cluster, you can't include changes to any other properties when you specify one of the following properties: ``PreferredBackupWindow``, ``PreferredMaintenanceWindow``, and ``Port``. This limitation doesn't apply to provisioned DB clusters.
17
+ For more information about updating other properties of this resource, see ``ModifyDBCluster``. For more information about updating stacks, see [CloudFormation Stacks Updates](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks.html).
18
+ *Deleting DB clusters*
19
+ The default ``DeletionPolicy`` for ``AWS::RDS::DBCluster`` resources is ``Snapshot``. For more information about how AWS CloudFormation deletes resources, see [DeletionPolicy Attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html).
4
20
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html}
5
21
  */
6
22
  export class RDSDBCluster extends $Resource {
@@ -1,53 +1,71 @@
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::RDS::DBClusterParameterGroup resource creates a new Amazon RDS DB cluster parameter group. For more information, see Managing an Amazon Aurora DB Cluster in the Amazon Aurora User Guide.
4
+ * The ``AWS::RDS::DBClusterParameterGroup`` resource creates a new Amazon RDS DB cluster parameter group.
5
+ For information about configuring parameters for Amazon Aurora DB clusters, see [Working with parameter groups](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html) in the *Amazon Aurora User Guide*.
6
+ If you apply a parameter group to a DB cluster, then its DB instances might need to reboot. This can result in an outage while the DB instances are rebooting.
7
+ If you apply a change to parameter group associated with a stopped DB cluster, then the update stack waits until the DB cluster is started.
5
8
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html}
6
9
  */
7
10
  export type RDSDBClusterParameterGroupProperties = {
8
11
  /**
9
- * @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9])*$`
10
- */
12
+ * The name of the DB cluster parameter group.
13
+ Constraints:
14
+ + Must not match the name of an existing DB cluster parameter group.
15
+
16
+ If you don't specify a value for ``DBClusterParameterGroupName`` property, a name is automatically created for the DB cluster parameter group.
17
+ This value is stored as a lowercase string.
18
+ * @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9])*$`
19
+ */
11
20
  DBClusterParameterGroupName?: string;
12
21
  /**
13
22
  * A friendly description for this DB cluster parameter group.
14
23
  */
15
24
  Description: string;
16
25
  /**
17
- * The DB cluster parameter group family name. A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a DB engine and engine version compatible with that DB cluster parameter group family.
18
- */
26
+ * The DB cluster parameter group family name. A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a DB engine and engine version compatible with that DB cluster parameter group family.
27
+ The DB cluster parameter group family can't be changed when updating a DB cluster parameter group.
28
+ To list all of the available parameter group families, use the following command:
29
+ ``aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"``
30
+ The output contains duplicates.
31
+ For more information, see ``CreateDBClusterParameterGroup``.
32
+ */
19
33
  Family: string;
20
34
  /**
21
- * An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
35
+ * Provides a list of parameters for the DB cluster parameter group.
22
36
  */
23
37
  Parameters: Record<string, any>;
24
38
  /**
25
- * The list of tags for the cluster parameter group.
39
+ * An optional array of key-value pairs to apply to this DB cluster parameter group.
26
40
  * @maxLength `50`
27
41
  */
28
42
  Tags?: Tag[];
29
43
  };
30
44
  /**
31
45
  * Type definition for `AWS::RDS::DBClusterParameterGroup.Tag`.
32
- * A key-value pair to associate with a resource.
46
+ * Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
47
+ For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
33
48
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbclusterparametergroup-tag.html}
34
49
  */
35
50
  export type Tag = {
36
51
  /**
37
- * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
52
+ * A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
38
53
  * @minLength `1`
39
54
  * @maxLength `128`
40
55
  */
41
56
  Key: string;
42
57
  /**
43
- * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
58
+ * A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
44
59
  * @minLength `0`
45
60
  * @maxLength `256`
46
61
  */
47
62
  Value?: string;
48
63
  };
49
64
  /**
50
- * The AWS::RDS::DBClusterParameterGroup resource creates a new Amazon RDS DB cluster parameter group. For more information, see Managing an Amazon Aurora DB Cluster in the Amazon Aurora User Guide.
65
+ * The ``AWS::RDS::DBClusterParameterGroup`` resource creates a new Amazon RDS DB cluster parameter group.
66
+ For information about configuring parameters for Amazon Aurora DB clusters, see [Working with parameter groups](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html) in the *Amazon Aurora User Guide*.
67
+ If you apply a parameter group to a DB cluster, then its DB instances might need to reboot. This can result in an outage while the DB instances are rebooting.
68
+ If you apply a change to parameter group associated with a stopped DB cluster, then the update stack waits until the DB cluster is started.
51
69
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html}
52
70
  */
53
71
  export declare class RDSDBClusterParameterGroup extends $Resource<"AWS::RDS::DBClusterParameterGroup", RDSDBClusterParameterGroupProperties, Record<string, never>> {
@@ -1,6 +1,9 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * The AWS::RDS::DBClusterParameterGroup resource creates a new Amazon RDS DB cluster parameter group. For more information, see Managing an Amazon Aurora DB Cluster in the Amazon Aurora User Guide.
3
+ * The ``AWS::RDS::DBClusterParameterGroup`` resource creates a new Amazon RDS DB cluster parameter group.
4
+ For information about configuring parameters for Amazon Aurora DB clusters, see [Working with parameter groups](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html) in the *Amazon Aurora User Guide*.
5
+ If you apply a parameter group to a DB cluster, then its DB instances might need to reboot. This can result in an outage while the DB instances are rebooting.
6
+ If you apply a change to parameter group associated with a stopped DB cluster, then the update stack waits until the DB cluster is started.
4
7
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html}
5
8
  */
6
9
  export class RDSDBClusterParameterGroup extends $Resource {
@@ -412,6 +412,14 @@ export type RDSDBInstanceProperties = {
412
412
  + ``sqlserver-web``
413
413
  */
414
414
  Engine?: string;
415
+ /**
416
+ * The life cycle type for this DB instance.
417
+ By default, this value is set to ``open-source-rds-extended-support``, which enrolls your DB instance into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to ``open-source-rds-extended-support-disabled``. In this case, creating the DB instance will fail if the DB major version is past its end of standard support date.
418
+ This setting applies only to RDS for MySQL and RDS for PostgreSQL. For Amazon Aurora DB instances, the life cycle type is managed by the DB cluster.
419
+ You can use this setting to enroll your DB instance into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your DB instance past the end of standard support for that engine version. For more information, see [Using Amazon RDS Extended Support](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html) in the *Amazon RDS User Guide*.
420
+ Valid Values: ``open-source-rds-extended-support | open-source-rds-extended-support-disabled``
421
+ Default: ``open-source-rds-extended-support``
422
+ */
415
423
  EngineLifecycleSupport?: string;
416
424
  /**
417
425
  * The version number of the database engine to use.
@@ -859,7 +867,7 @@ export type ProcessorFeature = {
859
867
  */
860
868
  Name?: "coreCount" | "threadsPerCore";
861
869
  /**
862
- * The value of a processor feature name.
870
+ * The value of a processor feature.
863
871
  */
864
872
  Value?: string;
865
873
  };
@@ -1,62 +1,74 @@
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::RDS::EventSubscription resource allows you to receive notifications for Amazon Relational Database Service events through the Amazon Simple Notification Service (Amazon SNS). For more information, see Using Amazon RDS Event Notification in the Amazon RDS User Guide.
4
+ * The ``AWS::RDS::EventSubscription`` resource allows you to receive notifications for Amazon Relational Database Service events through the Amazon Simple Notification Service (Amazon SNS). For more information, see [Using Amazon RDS Event Notification](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html) in the *Amazon RDS User Guide*.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html}
6
6
  */
7
7
  export type RDSEventSubscriptionProperties = {
8
8
  /**
9
- * A Boolean value; set to true to activate the subscription, set to false to create the subscription but not active it.
9
+ * Specifies whether to activate the subscription. If the event notification subscription isn't activated, the subscription is created but not active.
10
10
  */
11
11
  Enabled?: boolean;
12
12
  /**
13
- * A list of event categories for a SourceType that you want to subscribe to. You can see a list of the categories for a given SourceType in the Events topic in the Amazon RDS User Guide or by using the DescribeEventCategories action.
13
+ * A list of event categories for a particular source type (``SourceType``) that you want to subscribe to. You can see a list of the categories for a given source type in the "Amazon RDS event categories and event messages" section of the [Amazon RDS User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Messages.html) or the [Amazon Aurora User Guide](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Messages.html). You can also see this list by using the ``DescribeEventCategories`` operation.
14
14
  */
15
15
  EventCategories?: string[];
16
16
  /**
17
- * The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
18
- */
17
+ * The Amazon Resource Name (ARN) of the SNS topic created for event notification. SNS automatically creates the ARN when you create a topic and subscribe to it.
18
+ RDS doesn't support FIFO (first in, first out) topics. For more information, see [Message ordering and deduplication (FIFO topics)](https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html) in the *Amazon Simple Notification Service Developer Guide*.
19
+ */
19
20
  SnsTopicArn: string;
20
21
  /**
21
- * The list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it cannot end with a hyphen or contain two consecutive hyphens.
22
- */
22
+ * The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens. It can't end with a hyphen or contain two consecutive hyphens.
23
+ Constraints:
24
+ + If a ``SourceIds`` value is supplied, ``SourceType`` must also be provided.
25
+ + If the source type is a DB instance, a ``DBInstanceIdentifier`` value must be supplied.
26
+ + If the source type is a DB cluster, a ``DBClusterIdentifier`` value must be supplied.
27
+ + If the source type is a DB parameter group, a ``DBParameterGroupName`` value must be supplied.
28
+ + If the source type is a DB security group, a ``DBSecurityGroupName`` value must be supplied.
29
+ + If the source type is a DB snapshot, a ``DBSnapshotIdentifier`` value must be supplied.
30
+ + If the source type is a DB cluster snapshot, a ``DBClusterSnapshotIdentifier`` value must be supplied.
31
+ */
23
32
  SourceIds?: string[];
24
33
  /**
25
- * The type of source that will be generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. if this value is not specified, all events are returned.
26
- */
34
+ * The type of source that is generating the events. For example, if you want to be notified of events generated by a DB instance, set this parameter to ``db-instance``. If this value isn't specified, all events are returned.
35
+ Valid values: ``db-instance`` | ``db-cluster`` | ``db-parameter-group`` | ``db-security-group`` | ``db-snapshot`` | ``db-cluster-snapshot``
36
+ */
27
37
  SourceType?: string;
28
38
  /**
29
- * The name of the subscription.
30
- * @maxLength `255`
31
- */
39
+ * The name of the subscription.
40
+ Constraints: The name must be less than 255 characters.
41
+ * @maxLength `255`
42
+ */
32
43
  SubscriptionName?: string;
33
44
  /**
34
- * An array of key-value pairs to apply to this resource.
45
+ * An optional array of key-value pairs to apply to this subscription.
35
46
  * @maxLength `50`
36
47
  */
37
48
  Tags?: Tag[];
38
49
  };
39
50
  /**
40
51
  * Type definition for `AWS::RDS::EventSubscription.Tag`.
41
- * A key-value pair to associate with a resource.
52
+ * Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
53
+ For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
42
54
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-eventsubscription-tag.html}
43
55
  */
44
56
  export type Tag = {
45
57
  /**
46
- * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
58
+ * A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
47
59
  * @minLength `1`
48
60
  * @maxLength `128`
49
61
  */
50
62
  Key: string;
51
63
  /**
52
- * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
64
+ * A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
53
65
  * @minLength `0`
54
66
  * @maxLength `256`
55
67
  */
56
68
  Value?: string;
57
69
  };
58
70
  /**
59
- * The AWS::RDS::EventSubscription resource allows you to receive notifications for Amazon Relational Database Service events through the Amazon Simple Notification Service (Amazon SNS). For more information, see Using Amazon RDS Event Notification in the Amazon RDS User Guide.
71
+ * The ``AWS::RDS::EventSubscription`` resource allows you to receive notifications for Amazon Relational Database Service events through the Amazon Simple Notification Service (Amazon SNS). For more information, see [Using Amazon RDS Event Notification](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html) in the *Amazon RDS User Guide*.
60
72
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html}
61
73
  */
62
74
  export declare class RDSEventSubscription extends $Resource<"AWS::RDS::EventSubscription", RDSEventSubscriptionProperties, 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::RDS::EventSubscription resource allows you to receive notifications for Amazon Relational Database Service events through the Amazon Simple Notification Service (Amazon SNS). For more information, see Using Amazon RDS Event Notification in the Amazon RDS User Guide.
3
+ * The ``AWS::RDS::EventSubscription`` resource allows you to receive notifications for Amazon Relational Database Service events through the Amazon Simple Notification Service (Amazon SNS). For more information, see [Using Amazon RDS Event Notification](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html) in the *Amazon RDS User Guide*.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html}
5
5
  */
6
6
  export class RDSEventSubscription extends $Resource {
@@ -1,38 +1,58 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * The AWS::RDS::OptionGroup resource creates an option group, to enable and configure features that are specific to a particular DB engine.
4
+ * The ``AWS::RDS::OptionGroup`` resource creates or updates an option group, to enable and configure features that are specific to a particular DB engine.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html}
6
6
  */
7
7
  export type RDSOptionGroupProperties = {
8
8
  /**
9
- * Indicates the name of the engine that this option group can be applied to.
10
- */
9
+ * Specifies the name of the engine that this option group should be associated with.
10
+ Valid Values:
11
+ + ``mariadb``
12
+ + ``mysql``
13
+ + ``oracle-ee``
14
+ + ``oracle-ee-cdb``
15
+ + ``oracle-se2``
16
+ + ``oracle-se2-cdb``
17
+ + ``postgres``
18
+ + ``sqlserver-ee``
19
+ + ``sqlserver-se``
20
+ + ``sqlserver-ex``
21
+ + ``sqlserver-web``
22
+ */
11
23
  EngineName: string;
12
24
  /**
13
- * Indicates the major engine version associated with this option group.
25
+ * Specifies the major version of the engine that this option group should be associated with.
14
26
  */
15
27
  MajorEngineVersion: string;
16
28
  /**
17
- * Indicates what options are available in the option group.
29
+ * A list of options and the settings for each option.
18
30
  */
19
31
  OptionConfigurations?: OptionConfiguration[];
20
32
  /**
21
- * Provides a description of the option group.
33
+ * The description of the option group.
22
34
  */
23
35
  OptionGroupDescription: string;
24
36
  /**
25
- * Specifies the name of the option group.
26
- */
37
+ * The name of the option group to be created.
38
+ Constraints:
39
+ + Must be 1 to 255 letters, numbers, or hyphens
40
+ + First character must be a letter
41
+ + Can't end with a hyphen or contain two consecutive hyphens
42
+
43
+ Example: ``myoptiongroup``
44
+ If you don't specify a value for ``OptionGroupName`` property, a name is automatically created for the option group.
45
+ This value is stored as a lowercase string.
46
+ */
27
47
  OptionGroupName?: string;
28
48
  /**
29
- * An array of key-value pairs to apply to this resource.
49
+ * An optional array of key-value pairs to apply to this option group.
30
50
  */
31
51
  Tags?: Tag[];
32
52
  };
33
53
  /**
34
54
  * Type definition for `AWS::RDS::OptionGroup.OptionConfiguration`.
35
- * The OptionConfiguration property type specifies an individual option, and its settings, within an AWS::RDS::OptionGroup resource.
55
+ * The ``OptionConfiguration`` property type specifies an individual option, and its settings, within an ``AWS::RDS::OptionGroup`` resource.
36
56
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfiguration.html}
37
57
  */
38
58
  export type OptionConfiguration = {
@@ -63,7 +83,7 @@ export type OptionConfiguration = {
63
83
  };
64
84
  /**
65
85
  * Type definition for `AWS::RDS::OptionGroup.OptionSetting`.
66
- * The OptionSetting property type specifies the value for an option within an OptionSetting property.
86
+ * The ``OptionSetting`` property type specifies the value for an option within an ``OptionSetting`` property.
67
87
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionsetting.html}
68
88
  */
69
89
  export type OptionSetting = {
@@ -78,25 +98,26 @@ export type OptionSetting = {
78
98
  };
79
99
  /**
80
100
  * Type definition for `AWS::RDS::OptionGroup.Tag`.
81
- * A key-value pair to associate with a resource.
101
+ * Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
102
+ For more information, see [Tagging Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html) in the *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS Resources](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html) in the *Amazon Aurora User Guide*.
82
103
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-tag.html}
83
104
  */
84
105
  export type Tag = {
85
106
  /**
86
- * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
107
+ * A key is the required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
87
108
  * @minLength `1`
88
109
  * @maxLength `128`
89
110
  */
90
111
  Key: string;
91
112
  /**
92
- * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
113
+ * A value is the optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with ``aws:`` or ``rds:``. The string can only contain only the set of Unicode letters, digits, white-space, '_', '.', ':', '/', '=', '+', '-', '@' (Java regex: "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$").
93
114
  * @minLength `0`
94
115
  * @maxLength `256`
95
116
  */
96
117
  Value?: string;
97
118
  };
98
119
  /**
99
- * The AWS::RDS::OptionGroup resource creates an option group, to enable and configure features that are specific to a particular DB engine.
120
+ * The ``AWS::RDS::OptionGroup`` resource creates or updates an option group, to enable and configure features that are specific to a particular DB engine.
100
121
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html}
101
122
  */
102
123
  export declare class RDSOptionGroup extends $Resource<"AWS::RDS::OptionGroup", RDSOptionGroupProperties, 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::RDS::OptionGroup resource creates an option group, to enable and configure features that are specific to a particular DB engine.
3
+ * The ``AWS::RDS::OptionGroup`` resource creates or updates an option group, to enable and configure features that are specific to a particular DB engine.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html}
5
5
  */
6
6
  export class RDSOptionGroup extends $Resource {
@@ -242,7 +242,7 @@ export type DataExport = {
242
242
  };
243
243
  /**
244
244
  * Type definition for `AWS::S3::Bucket.DefaultRetention`.
245
- * The container element for specifying the default Object Lock retention settings for new objects placed in the specified bucket.
245
+ * The container element for optionally specifying the default Object Lock retention settings for new objects placed in the specified bucket.
246
246
  + The ``DefaultRetention`` settings require both a mode and a period.
247
247
  + The ``DefaultRetention`` period can be either ``Days`` or ``Years`` but you must select one. You cannot specify ``Days`` and ``Years`` at the same time.
248
248
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-defaultretention.html}
@@ -0,0 +1,60 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::SES::MailManagerAddonInstance Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddoninstance.html}
6
+ */
7
+ export type SESMailManagerAddonInstanceProperties = {
8
+ /**
9
+ * @minLength `4`
10
+ * @maxLength `67`
11
+ * @pattern `^as-[a-zA-Z0-9]{1,64}$`
12
+ */
13
+ AddonSubscriptionId: string;
14
+ /**
15
+ * @minLength `0`
16
+ * @maxLength `200`
17
+ */
18
+ Tags?: Tag[];
19
+ };
20
+ /**
21
+ * Attribute type definition for `AWS::SES::MailManagerAddonInstance`.
22
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddoninstance.html#aws-resource-ses-mailmanageraddoninstance-return-values}
23
+ */
24
+ export type SESMailManagerAddonInstanceAttributes = {
25
+ AddonInstanceArn: string;
26
+ /**
27
+ * @minLength `4`
28
+ * @maxLength `67`
29
+ * @pattern `^ai-[a-zA-Z0-9]{1,64}$`
30
+ */
31
+ AddonInstanceId: string;
32
+ AddonName: string;
33
+ };
34
+ /**
35
+ * Type definition for `AWS::SES::MailManagerAddonInstance.Tag`.
36
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageraddoninstance-tag.html}
37
+ */
38
+ export type Tag = {
39
+ /**
40
+ * @minLength `1`
41
+ * @maxLength `128`
42
+ * @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
43
+ */
44
+ Key: string;
45
+ /**
46
+ * @minLength `0`
47
+ * @maxLength `256`
48
+ * @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
49
+ */
50
+ Value: string;
51
+ };
52
+ /**
53
+ * Definition of AWS::SES::MailManagerAddonInstance Resource Type
54
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddoninstance.html}
55
+ */
56
+ export declare class SESMailManagerAddonInstance extends $Resource<"AWS::SES::MailManagerAddonInstance", SESMailManagerAddonInstanceProperties, SESMailManagerAddonInstanceAttributes> {
57
+ static readonly Type = "AWS::SES::MailManagerAddonInstance";
58
+ constructor(logicalId: string, properties: SESMailManagerAddonInstanceProperties, options?: $ResourceOptions);
59
+ }
60
+ //# sourceMappingURL=AWS-SES-MailManagerAddonInstance.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::SES::MailManagerAddonInstance Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddoninstance.html}
5
+ */
6
+ export class SESMailManagerAddonInstance extends $Resource {
7
+ static Type = "AWS::SES::MailManagerAddonInstance";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SESMailManagerAddonInstance.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SES-MailManagerAddonInstance.js.map
@@ -0,0 +1,54 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::SES::MailManagerAddonSubscription Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddonsubscription.html}
6
+ */
7
+ export type SESMailManagerAddonSubscriptionProperties = {
8
+ AddonName: string;
9
+ /**
10
+ * @minLength `0`
11
+ * @maxLength `200`
12
+ */
13
+ Tags?: Tag[];
14
+ };
15
+ /**
16
+ * Attribute type definition for `AWS::SES::MailManagerAddonSubscription`.
17
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddonsubscription.html#aws-resource-ses-mailmanageraddonsubscription-return-values}
18
+ */
19
+ export type SESMailManagerAddonSubscriptionAttributes = {
20
+ AddonSubscriptionArn: string;
21
+ /**
22
+ * @minLength `4`
23
+ * @maxLength `67`
24
+ * @pattern `^as-[a-zA-Z0-9]{1,64}$`
25
+ */
26
+ AddonSubscriptionId: string;
27
+ };
28
+ /**
29
+ * Type definition for `AWS::SES::MailManagerAddonSubscription.Tag`.
30
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageraddonsubscription-tag.html}
31
+ */
32
+ export type Tag = {
33
+ /**
34
+ * @minLength `1`
35
+ * @maxLength `128`
36
+ * @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
37
+ */
38
+ Key: string;
39
+ /**
40
+ * @minLength `0`
41
+ * @maxLength `256`
42
+ * @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
43
+ */
44
+ Value: string;
45
+ };
46
+ /**
47
+ * Definition of AWS::SES::MailManagerAddonSubscription Resource Type
48
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddonsubscription.html}
49
+ */
50
+ export declare class SESMailManagerAddonSubscription extends $Resource<"AWS::SES::MailManagerAddonSubscription", SESMailManagerAddonSubscriptionProperties, SESMailManagerAddonSubscriptionAttributes> {
51
+ static readonly Type = "AWS::SES::MailManagerAddonSubscription";
52
+ constructor(logicalId: string, properties: SESMailManagerAddonSubscriptionProperties, options?: $ResourceOptions);
53
+ }
54
+ //# sourceMappingURL=AWS-SES-MailManagerAddonSubscription.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::SES::MailManagerAddonSubscription Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanageraddonsubscription.html}
5
+ */
6
+ export class SESMailManagerAddonSubscription extends $Resource {
7
+ static Type = "AWS::SES::MailManagerAddonSubscription";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SESMailManagerAddonSubscription.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SES-MailManagerAddonSubscription.js.map
@@ -0,0 +1,81 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Definition of AWS::SES::MailManagerArchive Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerarchive.html}
6
+ */
7
+ export type SESMailManagerArchiveProperties = {
8
+ /**
9
+ * @minLength `1`
10
+ * @maxLength `64`
11
+ * @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*[a-zA-Z0-9]$`
12
+ */
13
+ ArchiveName?: string;
14
+ /**
15
+ * @pattern `^arn:aws(|-cn|-us-gov):kms:[a-z0-9-]{1,20}:[0-9]{12}:(key|alias)/.+$`
16
+ */
17
+ KmsKeyArn?: string;
18
+ Retention?: ArchiveRetention;
19
+ /**
20
+ * @minLength `0`
21
+ * @maxLength `200`
22
+ */
23
+ Tags?: Tag[];
24
+ };
25
+ /**
26
+ * Attribute type definition for `AWS::SES::MailManagerArchive`.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerarchive.html#aws-resource-ses-mailmanagerarchive-return-values}
28
+ */
29
+ export type SESMailManagerArchiveAttributes = {
30
+ ArchiveArn: string;
31
+ /**
32
+ * @minLength `1`
33
+ * @maxLength `66`
34
+ */
35
+ ArchiveId: string;
36
+ ArchiveState: ArchiveState;
37
+ };
38
+ /**
39
+ * Type definition for `AWS::SES::MailManagerArchive.ArchiveRetention`.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerarchive-archiveretention.html}
41
+ */
42
+ export type ArchiveRetention = {
43
+ RetentionPeriod: RetentionPeriod;
44
+ };
45
+ /**
46
+ * Type definition for `AWS::SES::MailManagerArchive.ArchiveState`.
47
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerarchive-archivestate.html}
48
+ */
49
+ export type ArchiveState = "ACTIVE" | "PENDING_DELETION";
50
+ /**
51
+ * Type definition for `AWS::SES::MailManagerArchive.RetentionPeriod`.
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerarchive-retentionperiod.html}
53
+ */
54
+ export type RetentionPeriod = "THREE_MONTHS" | "SIX_MONTHS" | "NINE_MONTHS" | "ONE_YEAR" | "EIGHTEEN_MONTHS" | "TWO_YEARS" | "THIRTY_MONTHS" | "THREE_YEARS" | "FOUR_YEARS" | "FIVE_YEARS" | "SIX_YEARS" | "SEVEN_YEARS" | "EIGHT_YEARS" | "NINE_YEARS" | "TEN_YEARS" | "PERMANENT";
55
+ /**
56
+ * Type definition for `AWS::SES::MailManagerArchive.Tag`.
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerarchive-tag.html}
58
+ */
59
+ export type Tag = {
60
+ /**
61
+ * @minLength `1`
62
+ * @maxLength `128`
63
+ * @pattern `^[a-zA-Z0-9/_\+=\.:@\-]+$`
64
+ */
65
+ Key: string;
66
+ /**
67
+ * @minLength `0`
68
+ * @maxLength `256`
69
+ * @pattern `^[a-zA-Z0-9/_\+=\.:@\-]*$`
70
+ */
71
+ Value: string;
72
+ };
73
+ /**
74
+ * Definition of AWS::SES::MailManagerArchive Resource Type
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-mailmanagerarchive.html}
76
+ */
77
+ export declare class SESMailManagerArchive extends $Resource<"AWS::SES::MailManagerArchive", SESMailManagerArchiveProperties, SESMailManagerArchiveAttributes> {
78
+ static readonly Type = "AWS::SES::MailManagerArchive";
79
+ constructor(logicalId: string, properties: SESMailManagerArchiveProperties, options?: $ResourceOptions);
80
+ }
81
+ //# sourceMappingURL=AWS-SES-MailManagerArchive.d.ts.map