@awboost/cfn-resource-types 0.1.151 → 0.1.153
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-UserPool.d.ts +10 -0
- package/lib/AWS-EC2-TransitGateway.d.ts +1 -0
- package/lib/AWS-EC2-TransitGatewayAttachment.d.ts +4 -0
- package/lib/AWS-EC2-TransitGatewayVpcAttachment.d.ts +4 -0
- package/lib/AWS-IAM-Policy.d.ts +8 -2
- package/lib/AWS-IAM-Policy.js +4 -1
- package/lib/AWS-Route53Profiles-ProfileAssociation.d.ts +1 -1
- package/lib/AWS-SecretsManager-Secret.d.ts +2 -2
- package/lib/AWS-SecretsManager-Secret.js +1 -1
- package/lib/AWS-Wisdom-KnowledgeBase.d.ts +1 -1
- package/package.json +1 -1
|
@@ -11,6 +11,16 @@ export type CognitoUserPoolProperties = {
|
|
|
11
11
|
AutoVerifiedAttributes?: string[];
|
|
12
12
|
DeletionProtection?: string;
|
|
13
13
|
DeviceConfiguration?: DeviceConfiguration;
|
|
14
|
+
/**
|
|
15
|
+
* @minLength `6`
|
|
16
|
+
* @maxLength `20000`
|
|
17
|
+
*/
|
|
18
|
+
EmailAuthenticationMessage?: string;
|
|
19
|
+
/**
|
|
20
|
+
* @minLength `1`
|
|
21
|
+
* @maxLength `140`
|
|
22
|
+
*/
|
|
23
|
+
EmailAuthenticationSubject?: string;
|
|
14
24
|
EmailConfiguration?: EmailConfiguration;
|
|
15
25
|
/**
|
|
16
26
|
* @minLength `6`
|
|
@@ -14,6 +14,7 @@ export type EC2TransitGatewayProperties = {
|
|
|
14
14
|
DnsSupport?: string;
|
|
15
15
|
MulticastSupport?: string;
|
|
16
16
|
PropagationDefaultRouteTableId?: string;
|
|
17
|
+
SecurityGroupReferencingSupport?: string;
|
|
17
18
|
Tags?: Tag[];
|
|
18
19
|
TransitGatewayCidrBlocks?: string[];
|
|
19
20
|
VpnEcmpSupport?: string;
|
|
@@ -21,6 +21,10 @@ export type EC2TransitGatewayAttachmentProperties = {
|
|
|
21
21
|
* Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
|
|
22
22
|
*/
|
|
23
23
|
Ipv6Support?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Indicates whether to enable Security Group referencing support for Vpc Attachment. Valid Values: enable | disable
|
|
26
|
+
*/
|
|
27
|
+
SecurityGroupReferencingSupport?: string;
|
|
24
28
|
};
|
|
25
29
|
SubnetIds: string[];
|
|
26
30
|
Tags?: Tag[];
|
|
@@ -22,6 +22,10 @@ export type EC2TransitGatewayVpcAttachmentProperties = {
|
|
|
22
22
|
* Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
|
|
23
23
|
*/
|
|
24
24
|
Ipv6Support?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Indicates whether to enable Security Group referencing support for Vpc Attachment. Valid values: enable | disable
|
|
27
|
+
*/
|
|
28
|
+
SecurityGroupReferencingSupport?: string;
|
|
25
29
|
};
|
|
26
30
|
RemoveSubnetIds?: string[];
|
|
27
31
|
SubnetIds: string[];
|
package/lib/AWS-IAM-Policy.d.ts
CHANGED
|
@@ -7,7 +7,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
The Groups, Roles, and Users properties are optional. However, you must specify at least one of these properties.
|
|
8
8
|
For information about policy documents see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
9
9
|
For information about limits on the number of inline policies that you can embed in an identity, see [Limitations on Entities](https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html) in the *User Guide*.
|
|
10
|
-
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following
|
|
10
|
+
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following inline policy resource types support drift detection:
|
|
11
|
+
+ [AWS::IAM::GroupPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-grouppolicy.html)
|
|
12
|
+
+ [AWS::IAM::RolePolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-rolepolicy.html)
|
|
13
|
+
+ [AWS::IAM::UserPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-userpolicy.html)
|
|
11
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html}
|
|
12
15
|
*/
|
|
13
16
|
export type IAMPolicyProperties = {
|
|
@@ -58,7 +61,10 @@ export type IAMPolicyAttributes = {
|
|
|
58
61
|
The Groups, Roles, and Users properties are optional. However, you must specify at least one of these properties.
|
|
59
62
|
For information about policy documents see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
60
63
|
For information about limits on the number of inline policies that you can embed in an identity, see [Limitations on Entities](https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html) in the *User Guide*.
|
|
61
|
-
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following
|
|
64
|
+
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following inline policy resource types support drift detection:
|
|
65
|
+
+ [AWS::IAM::GroupPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-grouppolicy.html)
|
|
66
|
+
+ [AWS::IAM::RolePolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-rolepolicy.html)
|
|
67
|
+
+ [AWS::IAM::UserPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-userpolicy.html)
|
|
62
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html}
|
|
63
69
|
*/
|
|
64
70
|
export declare class IAMPolicy extends $Resource<"AWS::IAM::Policy", IAMPolicyProperties, IAMPolicyAttributes> {
|
package/lib/AWS-IAM-Policy.js
CHANGED
|
@@ -6,7 +6,10 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
6
6
|
The Groups, Roles, and Users properties are optional. However, you must specify at least one of these properties.
|
|
7
7
|
For information about policy documents see [Creating policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_create.html) in the *User Guide*.
|
|
8
8
|
For information about limits on the number of inline policies that you can embed in an identity, see [Limitations on Entities](https://docs.aws.amazon.com/IAM/latest/UserGuide/LimitationsOnEntities.html) in the *User Guide*.
|
|
9
|
-
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following
|
|
9
|
+
This resource does not support [drift detection](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-stack-drift.html). The following inline policy resource types support drift detection:
|
|
10
|
+
+ [AWS::IAM::GroupPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-grouppolicy.html)
|
|
11
|
+
+ [AWS::IAM::RolePolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-rolepolicy.html)
|
|
12
|
+
+ [AWS::IAM::UserPolicy](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-userpolicy.html)
|
|
10
13
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-policy.html}
|
|
11
14
|
*/
|
|
12
15
|
export class IAMPolicy extends $Resource {
|
|
@@ -6,7 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
*/
|
|
7
7
|
export type Route53ProfilesProfileAssociationProperties = {
|
|
8
8
|
/**
|
|
9
|
-
* The Amazon Resource Name (ARN) of the
|
|
9
|
+
* The Amazon Resource Name (ARN) of the profile association.
|
|
10
10
|
*/
|
|
11
11
|
Arn?: string;
|
|
12
12
|
/**
|
|
@@ -4,8 +4,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
4
4
|
* Resource type definition for `AWS::SecretsManager::Secret`.
|
|
5
5
|
* Creates a new secret. A *secret* can be a password, a set of credentials such as a user name and password, an OAuth token, or other secret information that you store in an encrypted form in Secrets Manager.
|
|
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
|
+
For RS admin user credentials, see [AWS::Redshift::Cluster](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html).
|
|
7
8
|
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
|
-
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
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
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).
|
|
11
11
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html}
|
|
@@ -147,8 +147,8 @@ export type Tag = {
|
|
|
147
147
|
* Resource type definition for `AWS::SecretsManager::Secret`.
|
|
148
148
|
* Creates a new secret. A *secret* can be a password, a set of credentials such as a user name and password, an OAuth token, or other secret information that you store in an encrypted form in Secrets Manager.
|
|
149
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).
|
|
150
|
+
For RS admin user credentials, see [AWS::Redshift::Cluster](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html).
|
|
150
151
|
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).
|
|
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*.
|
|
152
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
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).
|
|
154
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html}
|
|
@@ -3,8 +3,8 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
3
3
|
* Resource type definition for `AWS::SecretsManager::Secret`.
|
|
4
4
|
* Creates a new secret. A *secret* can be a password, a set of credentials such as a user name and password, an OAuth token, or other secret information that you store in an encrypted form in Secrets Manager.
|
|
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
|
+
For RS admin user credentials, see [AWS::Redshift::Cluster](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html).
|
|
6
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).
|
|
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
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
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).
|
|
10
10
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-secret.html}
|
|
@@ -56,7 +56,7 @@ export type AppIntegrationsConfiguration = {
|
|
|
56
56
|
* Type definition for `AWS::Wisdom::KnowledgeBase.KnowledgeBaseType`.
|
|
57
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-knowledgebasetype.html}
|
|
58
58
|
*/
|
|
59
|
-
export type KnowledgeBaseType = "EXTERNAL" | "CUSTOM";
|
|
59
|
+
export type KnowledgeBaseType = "EXTERNAL" | "CUSTOM" | "MESSAGE_TEMPLATES";
|
|
60
60
|
/**
|
|
61
61
|
* Type definition for `AWS::Wisdom::KnowledgeBase.RenderingConfiguration`.
|
|
62
62
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-knowledgebase-renderingconfiguration.html}
|