@awboost/cfn-resource-types 0.1.95 → 0.1.96
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-Cognito-UserPoolResourceServer.d.ts +1 -8
- package/lib/AWS-EC2-CustomerGateway.d.ts +9 -5
- package/lib/AWS-KMS-Key.d.ts +1 -1
- package/lib/AWS-MediaPackageV2-Channel.d.ts +1 -0
- package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +3 -0
- package/lib/AWS-RDS-DBCluster.d.ts +4 -0
- package/lib/AWS-RDS-DBInstance.d.ts +8 -4
- package/lib/AWS-RDS-DBParameterGroup.d.ts +1 -1
- package/lib/AWS-RDS-DBSubnetGroup.d.ts +1 -2
- package/package.json +1 -1
|
@@ -10,13 +10,6 @@ export type CognitoUserPoolResourceServerProperties = {
|
|
|
10
10
|
Scopes?: ResourceServerScopeType[];
|
|
11
11
|
UserPoolId: string;
|
|
12
12
|
};
|
|
13
|
-
/**
|
|
14
|
-
* Attribute type definition for `AWS::Cognito::UserPoolResourceServer`.
|
|
15
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html#aws-resource-cognito-userpoolresourceserver-return-values}
|
|
16
|
-
*/
|
|
17
|
-
export type CognitoUserPoolResourceServerAttributes = {
|
|
18
|
-
Id: string;
|
|
19
|
-
};
|
|
20
13
|
/**
|
|
21
14
|
* Type definition for `AWS::Cognito::UserPoolResourceServer.ResourceServerScopeType`.
|
|
22
15
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html}
|
|
@@ -29,7 +22,7 @@ export type ResourceServerScopeType = {
|
|
|
29
22
|
* Resource Type definition for AWS::Cognito::UserPoolResourceServer
|
|
30
23
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html}
|
|
31
24
|
*/
|
|
32
|
-
export declare class CognitoUserPoolResourceServer extends $Resource<"AWS::Cognito::UserPoolResourceServer", CognitoUserPoolResourceServerProperties,
|
|
25
|
+
export declare class CognitoUserPoolResourceServer extends $Resource<"AWS::Cognito::UserPoolResourceServer", CognitoUserPoolResourceServerProperties, Record<string, never>> {
|
|
33
26
|
static readonly Type = "AWS::Cognito::UserPoolResourceServer";
|
|
34
27
|
constructor(logicalId: string, properties: CognitoUserPoolResourceServerProperties, options?: $ResourceOptions);
|
|
35
28
|
}
|
|
@@ -7,16 +7,20 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
*/
|
|
8
8
|
export type EC2CustomerGatewayProperties = {
|
|
9
9
|
/**
|
|
10
|
-
* For devices that support BGP, the customer gateway
|
|
10
|
+
* For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647``, you must use ``BgpAsnExtended``.
|
|
11
11
|
Default: 65000
|
|
12
|
+
Valid values: ``1`` to ``2,147,483,647``
|
|
12
13
|
*/
|
|
13
14
|
BgpAsn?: number;
|
|
14
15
|
/**
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
* For customer gateway devices that support BGP, specify the device's ASN. You must specify either ``BgpAsn`` or ``BgpAsnExtended`` when creating the customer gateway. If the ASN is larger than ``2,147,483,647``, you must use ``BgpAsnExtended``.
|
|
17
|
+
Valid values: ``2,147,483,648`` to ``4,294,967,295``
|
|
18
|
+
* @min `2147483648`
|
|
19
|
+
* @max `4294967294`
|
|
20
|
+
*/
|
|
18
21
|
BgpAsnExtended?: number;
|
|
19
22
|
/**
|
|
23
|
+
* The Amazon Resource Name (ARN) for the customer gateway certificate.
|
|
20
24
|
* @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\d{1}:\d{12}:certificate\/[a-zA-Z0-9-_]+$`
|
|
21
25
|
*/
|
|
22
26
|
CertificateArn?: string;
|
|
@@ -25,7 +29,7 @@ export type EC2CustomerGatewayProperties = {
|
|
|
25
29
|
*/
|
|
26
30
|
DeviceName?: string;
|
|
27
31
|
/**
|
|
28
|
-
* IPv4 address for the customer gateway device's outside interface. The address must be static.
|
|
32
|
+
* IPv4 address for the customer gateway device's outside interface. The address must be static. If ``OutsideIpAddressType`` in your VPN connection options is set to ``PrivateIpv4``, you can use an RFC6598 or RFC1918 private IPv4 address. If ``OutsideIpAddressType`` is set to ``PublicIpv4``, you can use a public IPv4 address.
|
|
29
33
|
*/
|
|
30
34
|
IpAddress: string;
|
|
31
35
|
/**
|
package/lib/AWS-KMS-Key.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ export type KMSKeyProperties = {
|
|
|
99
99
|
+ For asymmetric KMS keys with SM2 (China Regions only) key material, specify ``ENCRYPT_DECRYPT`` or ``SIGN_VERIFY``.
|
|
100
100
|
+ For HMAC KMS keys, specify ``GENERATE_VERIFY_MAC``.
|
|
101
101
|
*/
|
|
102
|
-
KeyUsage?: "ENCRYPT_DECRYPT" | "SIGN_VERIFY" | "GENERATE_VERIFY_MAC";
|
|
102
|
+
KeyUsage?: "ENCRYPT_DECRYPT" | "SIGN_VERIFY" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT";
|
|
103
103
|
/**
|
|
104
104
|
* Creates a multi-Region primary key that you can replicate in other AWS-Regions. You can't change the ``MultiRegion`` value after the KMS key is created.
|
|
105
105
|
For a list of AWS-Regions in which multi-Region keys are supported, see [Multi-Region keys in](https://docs.aws.amazon.com/kms/latest/developerguide/multi-region-keys-overview.html) in the **.
|
|
@@ -68,6 +68,8 @@ export type MediaPackageV2OriginEndpointAttributes = {
|
|
|
68
68
|
* <p>The date and time the origin endpoint was created.</p>
|
|
69
69
|
*/
|
|
70
70
|
CreatedAt: string;
|
|
71
|
+
DashManifestUrls: string[];
|
|
72
|
+
HlsManifestUrls: string[];
|
|
71
73
|
/**
|
|
72
74
|
* <p>An HTTP live streaming (HLS) manifest configuration.</p>
|
|
73
75
|
*/
|
|
@@ -77,6 +79,7 @@ export type MediaPackageV2OriginEndpointAttributes = {
|
|
|
77
79
|
*/
|
|
78
80
|
Url: string;
|
|
79
81
|
}[];
|
|
82
|
+
LowLatencyHlsManifestUrls: string[];
|
|
80
83
|
/**
|
|
81
84
|
* <p>A low-latency HLS manifest configuration.</p>
|
|
82
85
|
*/
|
|
@@ -98,6 +98,10 @@ export type RDSDBClusterProperties = {
|
|
|
98
98
|
* The name of the database engine to be used for this DB cluster. Valid Values: aurora (for MySQL 5.6-compatible Aurora), aurora-mysql (for MySQL 5.7-compatible Aurora), and aurora-postgresql
|
|
99
99
|
*/
|
|
100
100
|
Engine?: string;
|
|
101
|
+
/**
|
|
102
|
+
* The life cycle type of the DB cluster. You can use this setting to enroll your DB cluster into Amazon RDS Extended Support.
|
|
103
|
+
*/
|
|
104
|
+
EngineLifecycleSupport?: string;
|
|
101
105
|
/**
|
|
102
106
|
* The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.
|
|
103
107
|
*/
|
|
@@ -412,6 +412,7 @@ export type RDSDBInstanceProperties = {
|
|
|
412
412
|
+ ``sqlserver-web``
|
|
413
413
|
*/
|
|
414
414
|
Engine?: string;
|
|
415
|
+
EngineLifecycleSupport?: string;
|
|
415
416
|
/**
|
|
416
417
|
* The version number of the database engine to use.
|
|
417
418
|
For a list of valid engine versions, use the ``DescribeDBEngineVersions`` action.
|
|
@@ -443,7 +444,8 @@ export type RDSDBInstanceProperties = {
|
|
|
443
444
|
Iops?: number;
|
|
444
445
|
/**
|
|
445
446
|
* The ARN of the AWS KMS key that's used to encrypt the DB instance, such as ``arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef``. If you enable the StorageEncrypted property but don't specify this property, AWS CloudFormation uses the default KMS key. If you specify this property, you must set the StorageEncrypted property to true.
|
|
446
|
-
If you specify the ``SourceDBInstanceIdentifier`` property,
|
|
447
|
+
If you specify the ``SourceDBInstanceIdentifier`` or ``SourceDbiResourceId`` property, don't specify this property. The value is inherited from the source DB instance, and if the DB instance is encrypted, the specified ``KmsKeyId`` property is used. However, if the source DB instance is in a different AWS Region, you must specify a KMS key ID.
|
|
448
|
+
If you specify the ``SourceDBInstanceAutomatedBackupsArn`` property, don't specify this property. The value is inherited from the source DB instance automated backup, and if the automated backup is encrypted, the specified ``KmsKeyId`` property is used.
|
|
447
449
|
If you create an encrypted read replica in a different AWS Region, then you must specify a KMS key for the destination AWS Region. KMS encryption keys are specific to the region that they're created in, and you can't use encryption keys from one region in another region.
|
|
448
450
|
If you specify the ``DBSnapshotIdentifier`` property, don't specify this property. The ``StorageEncrypted`` property value is inherited from the snapshot. If the DB instance is encrypted, the specified ``KmsKeyId`` property is also inherited from the snapshot.
|
|
449
451
|
If you specify ``DBSecurityGroups``, AWS CloudFormation ignores this property. To specify both a security group and this property, you must use a VPC security group. For more information about Amazon RDS and VPC, see [Using Amazon RDS with Amazon VPC](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.html) in the *Amazon RDS User Guide*.
|
|
@@ -689,7 +691,8 @@ export type RDSDBInstanceProperties = {
|
|
|
689
691
|
/**
|
|
690
692
|
* If you want to create a read replica DB instance, specify the ID of the source DB instance. Each DB instance can have a limited number of read replicas. For more information, see [Working with Read Replicas](https://docs.aws.amazon.com/AmazonRDS/latest/DeveloperGuide/USER_ReadRepl.html) in the *Amazon RDS User Guide*.
|
|
691
693
|
For information about constraints that apply to DB instance identifiers, see [Naming constraints in Amazon RDS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Limits.html#RDS_Limits.Constraints) in the *Amazon RDS User Guide*.
|
|
692
|
-
The ``SourceDBInstanceIdentifier`` property determines whether a DB instance is a read replica. If you remove the ``SourceDBInstanceIdentifier`` property from your template and then update your stack, AWS CloudFormation promotes the
|
|
694
|
+
The ``SourceDBInstanceIdentifier`` property determines whether a DB instance is a read replica. If you remove the ``SourceDBInstanceIdentifier`` property from your template and then update your stack, AWS CloudFormation promotes the read replica to a standalone DB instance.
|
|
695
|
+
If you specify the ``UseLatestRestorableTime`` or ``RestoreTime`` properties in conjunction with the ``SourceDBInstanceIdentifier`` property, RDS restores the DB instance to the requested point in time, thereby creating a new DB instance.
|
|
693
696
|
+ If you specify a source DB instance that uses VPC security groups, we recommend that you specify the ``VPCSecurityGroups`` property. If you don't specify the property, the read replica inherits the value of the ``VPCSecurityGroups`` property from the source DB when you create the replica. However, if you update the stack, AWS CloudFormation reverts the replica's ``VPCSecurityGroups`` property to the default value because it's not defined in the stack's template. This change might cause unexpected issues.
|
|
694
697
|
+ Read replicas don't support deletion policies. AWS CloudFormation ignores any deletion policy that's associated with a read replica.
|
|
695
698
|
+ If you specify ``SourceDBInstanceIdentifier``, don't specify the ``DBSnapshotIdentifier`` property. You can't create a read replica from a snapshot.
|
|
@@ -709,7 +712,8 @@ export type RDSDBInstanceProperties = {
|
|
|
709
712
|
/**
|
|
710
713
|
* A value that indicates whether the DB instance is encrypted. By default, it isn't encrypted.
|
|
711
714
|
If you specify the ``KmsKeyId`` property, then you must enable encryption.
|
|
712
|
-
If you specify the ``SourceDBInstanceIdentifier`` property, don't specify this property. The value is inherited from the source DB instance, and if the DB instance is encrypted, the specified ``KmsKeyId`` property is used.
|
|
715
|
+
If you specify the ``SourceDBInstanceIdentifier`` or ``SourceDbiResourceId`` property, don't specify this property. The value is inherited from the source DB instance, and if the DB instance is encrypted, the specified ``KmsKeyId`` property is used.
|
|
716
|
+
If you specify the ``SourceDBInstanceAutomatedBackupsArn`` property, don't specify this property. The value is inherited from the source DB instance automated backup.
|
|
713
717
|
If you specify ``DBSnapshotIdentifier`` property, don't specify this property. The value is inherited from the snapshot.
|
|
714
718
|
*Amazon Aurora*
|
|
715
719
|
Not applicable. The encryption for DB instances is managed by the DB cluster.
|
|
@@ -862,7 +866,7 @@ export type ProcessorFeature = {
|
|
|
862
866
|
/**
|
|
863
867
|
* Type definition for `AWS::RDS::DBInstance.Tag`.
|
|
864
868
|
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
|
865
|
-
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
|
|
869
|
+
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*.
|
|
866
870
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-tag.html}
|
|
867
871
|
*/
|
|
868
872
|
export type Tag = {
|
|
@@ -52,7 +52,7 @@ export type RDSDBParameterGroupProperties = {
|
|
|
52
52
|
/**
|
|
53
53
|
* Type definition for `AWS::RDS::DBParameterGroup.Tag`.
|
|
54
54
|
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
|
55
|
-
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
|
|
55
|
+
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*.
|
|
56
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup-tag.html}
|
|
57
57
|
*/
|
|
58
58
|
export type Tag = {
|
|
@@ -14,7 +14,6 @@ export type RDSDBSubnetGroupProperties = {
|
|
|
14
14
|
* The name for the DB subnet group. This value is stored as a lowercase string.
|
|
15
15
|
Constraints: Must contain no more than 255 lowercase alphanumeric characters or hyphens. Must not be "Default".
|
|
16
16
|
Example: ``mysubnetgroup``
|
|
17
|
-
* @pattern `^(?!default$)[a-zA-Z]{1}[a-zA-Z0-9-_\.\s]{0,254}$`
|
|
18
17
|
*/
|
|
19
18
|
DBSubnetGroupName?: string;
|
|
20
19
|
/**
|
|
@@ -30,7 +29,7 @@ export type RDSDBSubnetGroupProperties = {
|
|
|
30
29
|
/**
|
|
31
30
|
* Type definition for `AWS::RDS::DBSubnetGroup.Tag`.
|
|
32
31
|
* Metadata assigned to an Amazon RDS resource consisting of a key-value pair.
|
|
33
|
-
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
|
|
32
|
+
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*.
|
|
34
33
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbsubnetgroup-tag.html}
|
|
35
34
|
*/
|
|
36
35
|
export type Tag = {
|