@awboost/cfn-resource-types 0.1.152 → 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.
@@ -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`
@@ -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[];
@@ -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> {
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.152",
3
+ "version": "0.1.153",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },