@awboost/cfn-resource-types 0.1.536 → 0.1.538

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.
@@ -139,6 +139,14 @@ export type EmailConfiguration = {
139
139
  ReplyToEmailAddress?: string;
140
140
  SourceArn?: string;
141
141
  };
142
+ /**
143
+ * Type definition for `AWS::Cognito::UserPool.InboundFederation`.
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-inboundfederation.html}
145
+ */
146
+ export type InboundFederation = {
147
+ LambdaArn?: string;
148
+ LambdaVersion?: string;
149
+ };
142
150
  /**
143
151
  * Type definition for `AWS::Cognito::UserPool.InviteMessageTemplate`.
144
152
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html}
@@ -158,6 +166,7 @@ export type LambdaConfig = {
158
166
  CustomMessage?: string;
159
167
  CustomSMSSender?: CustomSMSSender;
160
168
  DefineAuthChallenge?: string;
169
+ InboundFederation?: InboundFederation;
161
170
  KMSKeyID?: string;
162
171
  PostAuthentication?: string;
163
172
  PostConfirmation?: string;
@@ -13,7 +13,17 @@ export type EC2NatGatewayProperties = {
13
13
  * [Public NAT gateway only] The allocation ID of the Elastic IP address that's associated with the NAT gateway. This property is required for a public NAT gateway and cannot be specified with a private NAT gateway.
14
14
  */
15
15
  AllocationId?: string;
16
+ /**
17
+ * Indicates whether this is a zonal (single-AZ) or regional (multi-AZ) NAT gateway.
18
+ A zonal NAT gateway is a NAT Gateway that provides redundancy and scalability within a single availability zone. A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
19
+ For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
20
+ */
16
21
  AvailabilityMode?: string;
22
+ /**
23
+ * For regional NAT gateways only: Specifies which Availability Zones you want the NAT gateway to support and the Elastic IP addresses (EIPs) to use in each AZ. The regional NAT gateway uses these EIPs to handle outbound NAT traffic from their respective AZs. If not specified, the NAT gateway will automatically expand to new AZs and associate EIPs upon detection of an elastic network interface. If you specify this parameter, auto-expansion is disabled and you must manually manage AZ coverage.
24
+ A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
25
+ For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
26
+ */
17
27
  AvailabilityZoneAddresses?: AvailabilityZoneAddress[];
18
28
  /**
19
29
  * Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.
@@ -68,11 +78,25 @@ export type EC2NatGatewayAttributes = {
68
78
  };
69
79
  /**
70
80
  * Type definition for `AWS::EC2::NatGateway.AvailabilityZoneAddress`.
81
+ * For regional NAT gateways only: The configuration specifying which Elastic IP address (EIP) to use for handling outbound NAT traffic from a specific Availability Zone.
82
+ A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
83
+ For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
71
84
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-natgateway-availabilityzoneaddress.html}
72
85
  */
73
86
  export type AvailabilityZoneAddress = {
87
+ /**
88
+ * The allocation IDs of the Elastic IP addresses (EIPs) to be used for handling outbound NAT traffic in this specific Availability Zone.
89
+ */
74
90
  AllocationIds: string[];
91
+ /**
92
+ * For regional NAT gateways only: The Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ.
93
+ A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
94
+ */
75
95
  AvailabilityZone?: string;
96
+ /**
97
+ * For regional NAT gateways only: The ID of the Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ. Use this instead of AvailabilityZone for consistent identification of AZs across AWS Regions.
98
+ A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
99
+ */
76
100
  AvailabilityZoneId?: string;
77
101
  };
78
102
  /**
@@ -22,6 +22,10 @@ export type LicenseManagerGrantProperties = {
22
22
  LicenseArn?: string;
23
23
  Principals?: string[];
24
24
  Status?: string;
25
+ /**
26
+ * A list of tags to attach.
27
+ */
28
+ Tags?: Tag[];
25
29
  };
26
30
  /**
27
31
  * Attribute type definition for `AWS::LicenseManager::Grant`.
@@ -38,6 +42,21 @@ export type LicenseManagerGrantAttributes = {
38
42
  */
39
43
  Version: string;
40
44
  };
45
+ /**
46
+ * Type definition for `AWS::LicenseManager::Grant.Tag`.
47
+ * A key-value pair to associate with a resource.
48
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-licensemanager-grant-tag.html}
49
+ */
50
+ export type Tag = {
51
+ /**
52
+ * The key name of the tag.
53
+ */
54
+ Key: string;
55
+ /**
56
+ * The value for the tag.
57
+ */
58
+ Value: string;
59
+ };
41
60
  /**
42
61
  * Resource type definition for `AWS::LicenseManager::Grant`.
43
62
  * An example resource schema demonstrating some basic constructs and validation rules.
@@ -8,7 +8,7 @@ export type LicenseManagerLicenseProperties = {
8
8
  /**
9
9
  * Beneficiary of the license.
10
10
  */
11
- Beneficiary?: string;
11
+ Beneficiary: string;
12
12
  ConsumptionConfiguration: ConsumptionConfiguration;
13
13
  Entitlements: Entitlement[];
14
14
  /**
@@ -30,8 +30,12 @@ export type LicenseManagerLicenseProperties = {
30
30
  * @minLength `1`
31
31
  * @maxLength `1024`
32
32
  */
33
- ProductSKU?: string;
33
+ ProductSKU: string;
34
34
  Status?: string;
35
+ /**
36
+ * A list of tags to attach.
37
+ */
38
+ Tags?: Tag[];
35
39
  Validity: ValidityDateFormat;
36
40
  };
37
41
  /**
@@ -101,6 +105,21 @@ export type Metadata = {
101
105
  export type ProvisionalConfiguration = {
102
106
  MaxTimeToLiveInMinutes: number;
103
107
  };
108
+ /**
109
+ * Type definition for `AWS::LicenseManager::License.Tag`.
110
+ * A key-value pair to associate with a resource.
111
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-licensemanager-license-tag.html}
112
+ */
113
+ export type Tag = {
114
+ /**
115
+ * The key name of the tag.
116
+ */
117
+ Key: string;
118
+ /**
119
+ * The value for the tag.
120
+ */
121
+ Value: string;
122
+ };
104
123
  /**
105
124
  * Type definition for `AWS::LicenseManager::License.ValidityDateFormat`.
106
125
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-licensemanager-license-validitydateformat.html}
@@ -8,13 +8,13 @@ export type NotificationsChannelAssociationProperties = {
8
8
  /**
9
9
  * ARN identifier of the channel.
10
10
  Example: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops
11
- * @pattern `^arn:aws:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
11
+ * @pattern `^arn:[a-z-]{3,10}:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
12
12
  */
13
13
  Arn: string;
14
14
  /**
15
15
  * ARN identifier of the NotificationConfiguration.
16
16
  Example: arn:aws:notifications::123456789012:configuration/a01jes88qxwkbj05xv9c967pgm1
17
- * @pattern `^arn:aws:notifications::[0-9]{12}:configuration\/[a-z0-9]{27}$`
17
+ * @pattern `^arn:[a-z-]{3,10}:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
18
18
  */
19
19
  NotificationConfigurationArn: string;
20
20
  };
@@ -17,7 +17,7 @@ export type NotificationsEventRuleProperties = {
17
17
  */
18
18
  EventType: string;
19
19
  /**
20
- * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
20
+ * @pattern `^arn:[a-z-]{3,10}:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
21
21
  */
22
22
  NotificationConfigurationArn: string;
23
23
  /**
@@ -37,7 +37,7 @@ export type NotificationsEventRuleProperties = {
37
37
  */
38
38
  export type NotificationsEventRuleAttributes = {
39
39
  /**
40
- * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}/rule/[a-z0-9]{27}$`
40
+ * @pattern `^arn:[a-z-]{3,10}:notifications::[0-9]{12}:configuration/[a-z0-9]{27}/rule/[a-z0-9]{27}$`
41
41
  */
42
42
  Arn: string;
43
43
  CreationTime: string;
@@ -12,7 +12,7 @@ export type NotificationsManagedNotificationAccountContactAssociationProperties
12
12
  ContactIdentifier: ContactIdentifier;
13
13
  /**
14
14
  * The managed notification configuration ARN, against which the account contact association will be created
15
- * @pattern `^arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}$`
15
+ * @pattern `^arn:[a-z-]{3,10}:notifications::([0-9]{12}|):managed-notification-configuration/category/[a-zA-Z0-9\-]{3,64}/sub-category/[a-zA-Z0-9\-]{3,64}$`
16
16
  */
17
17
  ManagedNotificationConfigurationArn: string;
18
18
  };
@@ -8,13 +8,13 @@ export type NotificationsManagedNotificationAdditionalChannelAssociationProperti
8
8
  /**
9
9
  * ARN identifier of the channel.
10
10
  Example: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops
11
- * @pattern `^arn:aws:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
11
+ * @pattern `^arn:[a-z-]{3,10}:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
12
12
  */
13
13
  ChannelArn: string;
14
14
  /**
15
15
  * ARN identifier of the Managed Notification.
16
16
  Example: arn:aws:notifications::381491923782:managed-notification-configuration/category/AWS-Health/sub-category/Billing
17
- * @pattern `^arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}$`
17
+ * @pattern `^arn:[a-z-]{3,10}:notifications::([0-9]{12}|):managed-notification-configuration/category/[a-zA-Z0-9\-]{3,64}/sub-category/[a-zA-Z0-9\-]{3,64}$`
18
18
  */
19
19
  ManagedNotificationConfigurationArn: string;
20
20
  };
@@ -29,7 +29,7 @@ export type NotificationsNotificationConfigurationProperties = {
29
29
  */
30
30
  export type NotificationsNotificationConfigurationAttributes = {
31
31
  /**
32
- * @pattern `^arn:aws:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
32
+ * @pattern `^arn:[a-z-]{3,10}:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
33
33
  */
34
34
  Arn: string;
35
35
  CreationTime: string;
@@ -8,7 +8,7 @@ export type NotificationsOrganizationalUnitAssociationProperties = {
8
8
  /**
9
9
  * ARN identifier of the NotificationConfiguration.
10
10
  Example: arn:aws:notifications::123456789012:configuration/a01jes88qxwkbj05xv9c967pgm1
11
- * @pattern `^arn:aws:notifications::[0-9]{12}:configuration\/[a-z0-9]{27}$`
11
+ * @pattern `^arn:[a-z-]{3,10}:notifications::[0-9]{12}:configuration/[a-z0-9]{27}$`
12
12
  */
13
13
  NotificationConfigurationArn: string;
14
14
  /**
@@ -16,6 +16,10 @@ export type TransferConnectorProperties = {
16
16
  * Configuration for an AS2 connector.
17
17
  */
18
18
  As2Config?: {
19
+ /**
20
+ * Configuration for an AS2 connector with ASYNC MDN Response
21
+ */
22
+ AsyncMdnConfig?: ConnectorAsyncMdnConfig;
19
23
  /**
20
24
  * ARN or name of the secret in AWS Secrets Manager which contains the credentials for Basic authentication. If empty, Basic authentication is disabled for the AS2 connector
21
25
  * @minLength `0`
@@ -40,7 +44,7 @@ export type TransferConnectorProperties = {
40
44
  /**
41
45
  * MDN Response setting for this AS2 connector configuration.
42
46
  */
43
- MdnResponse?: "SYNC" | "NONE";
47
+ MdnResponse?: "SYNC" | "ASYNC" | "NONE";
44
48
  /**
45
49
  * MDN Signing algorithm for this AS2 connector configuration.
46
50
  */
@@ -152,6 +156,21 @@ export type TransferConnectorAttributes = {
152
156
  ServiceManagedEgressIpAddresses: string[];
153
157
  Status: ConnectorStatus;
154
158
  };
159
+ /**
160
+ * Type definition for `AWS::Transfer::Connector.ConnectorAsyncMdnConfig`.
161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectorasyncmdnconfig.html}
162
+ */
163
+ export type ConnectorAsyncMdnConfig = {
164
+ /**
165
+ * @minLength `1`
166
+ * @maxLength `10`
167
+ */
168
+ ServerIds: string[];
169
+ /**
170
+ * URL of the server to receive the MDN response on
171
+ */
172
+ Url: string;
173
+ };
155
174
  /**
156
175
  * Type definition for `AWS::Transfer::Connector.ConnectorEgressConfig`.
157
176
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectoregressconfig.html}
@@ -11,6 +11,7 @@ export type TransferWebAppProperties = {
11
11
  * @maxLength `1024`
12
12
  */
13
13
  AccessEndpoint?: string;
14
+ EndpointDetails?: EndpointDetails;
14
15
  /**
15
16
  * You can provide a structure that contains the details for the identity provider to use with your web app.
16
17
  */
@@ -50,6 +51,12 @@ export type TransferWebAppAttributes = {
50
51
  */
51
52
  ApplicationArn: string;
52
53
  };
54
+ /**
55
+ * @minLength `13`
56
+ * @maxLength `22`
57
+ * @pattern `^vpce-[0-9a-f]{8,17}$`
58
+ */
59
+ VpcEndpointId: string;
53
60
  /**
54
61
  * A unique identifier for the web app.
55
62
  * @minLength `24`
@@ -58,6 +65,16 @@ export type TransferWebAppAttributes = {
58
65
  */
59
66
  WebAppId: string;
60
67
  };
68
+ /**
69
+ * Type definition for `AWS::Transfer::WebApp.EndpointDetails`.
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-endpointdetails.html}
71
+ */
72
+ export type EndpointDetails = {
73
+ /**
74
+ * You can provide a structure that contains the details for the VPC endpoint to use with your web app.
75
+ */
76
+ Vpc?: Vpc;
77
+ };
61
78
  /**
62
79
  * Type definition for `AWS::Transfer::WebApp.IdentityProviderDetails`.
63
80
  * You can provide a structure that contains the details for the identity provider to use with your web app.
@@ -96,6 +113,27 @@ export type Tag = {
96
113
  */
97
114
  Value: string;
98
115
  };
116
+ /**
117
+ * Type definition for `AWS::Transfer::WebApp.Vpc`.
118
+ * You can provide a structure that contains the details for the VPC endpoint to use with your web app.
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-vpc.html}
120
+ */
121
+ export type Vpc = {
122
+ /**
123
+ * @maxLength `10`
124
+ */
125
+ SecurityGroupIds?: string[];
126
+ /**
127
+ * @maxLength `10`
128
+ */
129
+ SubnetIds?: string[];
130
+ /**
131
+ * @minLength `12`
132
+ * @maxLength `21`
133
+ * @pattern `^vpc-[0-9a-f]{8,17}$`
134
+ */
135
+ VpcId?: string;
136
+ };
99
137
  /**
100
138
  * Type definition for `AWS::Transfer::WebApp.WebAppCustomization`.
101
139
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-webapp-webappcustomization.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.536",
3
+ "version": "0.1.538",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },