@awboost/cfn-resource-types 0.1.260 → 0.1.262
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-B2BI-Partnership.d.ts +4 -4
- package/lib/AWS-Backup-BackupPlan.d.ts +8 -0
- package/lib/AWS-Cognito-UserPoolDomain.d.ts +0 -1
- package/lib/AWS-Connect-ContactFlowVersion.d.ts +55 -0
- package/lib/AWS-Connect-ContactFlowVersion.js +13 -0
- package/lib/AWS-DataSync-LocationSMB.d.ts +27 -1
- package/lib/AWS-ECS-Cluster.d.ts +11 -5
- package/lib/AWS-Glue-Crawler.d.ts +27 -0
- package/lib/AWS-GroundStation-MissionProfile.d.ts +4 -0
- package/lib/AWS-IVS-PlaybackKeyPair.d.ts +1 -1
- package/lib/AWS-IVS-PublicKey.d.ts +1 -1
- package/lib/AWS-RDS-DBInstance.d.ts +1 -0
- package/package.json +1 -1
|
@@ -130,13 +130,13 @@ export type X12FunctionalGroupHeaders = {
|
|
|
130
130
|
/**
|
|
131
131
|
* @minLength `2`
|
|
132
132
|
* @maxLength `15`
|
|
133
|
-
* @pattern `^[a-zA-Z0-9]*$`
|
|
133
|
+
* @pattern `^[a-zA-Z0-9 ]*$`
|
|
134
134
|
*/
|
|
135
135
|
ApplicationReceiverCode?: string;
|
|
136
136
|
/**
|
|
137
137
|
* @minLength `2`
|
|
138
138
|
* @maxLength `15`
|
|
139
|
-
* @pattern `^[a-zA-Z0-9]*$`
|
|
139
|
+
* @pattern `^[a-zA-Z0-9 ]*$`
|
|
140
140
|
*/
|
|
141
141
|
ApplicationSenderCode?: string;
|
|
142
142
|
/**
|
|
@@ -160,7 +160,7 @@ export type X12InterchangeControlHeaders = {
|
|
|
160
160
|
/**
|
|
161
161
|
* @minLength `15`
|
|
162
162
|
* @maxLength `15`
|
|
163
|
-
* @pattern `^[a-zA-Z0-9]*$`
|
|
163
|
+
* @pattern `^[a-zA-Z0-9 ]*$`
|
|
164
164
|
*/
|
|
165
165
|
ReceiverId?: string;
|
|
166
166
|
/**
|
|
@@ -177,7 +177,7 @@ export type X12InterchangeControlHeaders = {
|
|
|
177
177
|
/**
|
|
178
178
|
* @minLength `15`
|
|
179
179
|
* @maxLength `15`
|
|
180
|
-
* @pattern `^[a-zA-Z0-9]*$`
|
|
180
|
+
* @pattern `^[a-zA-Z0-9 ]*$`
|
|
181
181
|
*/
|
|
182
182
|
SenderId?: string;
|
|
183
183
|
/**
|
|
@@ -42,6 +42,7 @@ export type BackupRuleResourceType = {
|
|
|
42
42
|
CompletionWindowMinutes?: number;
|
|
43
43
|
CopyActions?: CopyActionResourceType[];
|
|
44
44
|
EnableContinuousBackup?: boolean;
|
|
45
|
+
IndexActions?: IndexActionsResourceType[];
|
|
45
46
|
Lifecycle?: LifecycleResourceType;
|
|
46
47
|
RecoveryPointTags?: Record<string, string>;
|
|
47
48
|
RuleName: string;
|
|
@@ -58,6 +59,13 @@ export type CopyActionResourceType = {
|
|
|
58
59
|
DestinationBackupVaultArn: string;
|
|
59
60
|
Lifecycle?: LifecycleResourceType;
|
|
60
61
|
};
|
|
62
|
+
/**
|
|
63
|
+
* Type definition for `AWS::Backup::BackupPlan.IndexActionsResourceType`.
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-indexactionsresourcetype.html}
|
|
65
|
+
*/
|
|
66
|
+
export type IndexActionsResourceType = {
|
|
67
|
+
ResourceTypes?: string[];
|
|
68
|
+
};
|
|
61
69
|
/**
|
|
62
70
|
* Type definition for `AWS::Backup::BackupPlan.LifecycleResourceType`.
|
|
63
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-lifecycleresourcetype.html}
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
* Resource type definition for `AWS::Connect::ContactFlowVersion`.
|
|
5
|
+
* Resource Type Definition for ContactFlowVersion
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html}
|
|
7
|
+
*/
|
|
8
|
+
export type ConnectContactFlowVersionProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The ARN of the contact flow this version is tied to.
|
|
11
|
+
* @minLength `1`
|
|
12
|
+
* @maxLength `500`
|
|
13
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]+:[0-9]{12}:instance/[-a-zA-Z0-9]+/contact-flow/[-a-zA-Z0-9]+$`
|
|
14
|
+
*/
|
|
15
|
+
ContactFlowId: string;
|
|
16
|
+
/**
|
|
17
|
+
* The description of the version.
|
|
18
|
+
* @maxLength `500`
|
|
19
|
+
*/
|
|
20
|
+
Description?: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Attribute type definition for `AWS::Connect::ContactFlowVersion`.
|
|
24
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html#aws-resource-connect-contactflowversion-return-values}
|
|
25
|
+
*/
|
|
26
|
+
export type ConnectContactFlowVersionAttributes = {
|
|
27
|
+
/**
|
|
28
|
+
* The identifier of the contact flow version (ARN).
|
|
29
|
+
* @minLength `1`
|
|
30
|
+
* @maxLength `500`
|
|
31
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]+:[0-9]{12}:instance/[-a-zA-Z0-9]+/contact-flow/[-a-zA-Z0-9]+:[0-9]+$`
|
|
32
|
+
*/
|
|
33
|
+
ContactFlowVersionARN: string;
|
|
34
|
+
/**
|
|
35
|
+
* Indicates the checksum value of the latest published flow content
|
|
36
|
+
* @minLength `1`
|
|
37
|
+
* @maxLength `64`
|
|
38
|
+
* @pattern `^[a-zA-Z0-9]{64}$`
|
|
39
|
+
*/
|
|
40
|
+
FlowContentSha256: string;
|
|
41
|
+
/**
|
|
42
|
+
* The version number of this revision
|
|
43
|
+
*/
|
|
44
|
+
Version: number;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Resource type definition for `AWS::Connect::ContactFlowVersion`.
|
|
48
|
+
* Resource Type Definition for ContactFlowVersion
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html}
|
|
50
|
+
*/
|
|
51
|
+
export declare class ConnectContactFlowVersion extends $Resource<"AWS::Connect::ContactFlowVersion", ConnectContactFlowVersionProperties, ConnectContactFlowVersionAttributes> {
|
|
52
|
+
static readonly Type = "AWS::Connect::ContactFlowVersion";
|
|
53
|
+
constructor(logicalId: string, properties: ConnectContactFlowVersionProperties, options?: $ResourceOptions);
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=AWS-Connect-ContactFlowVersion.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::Connect::ContactFlowVersion`.
|
|
4
|
+
* Resource Type Definition for ContactFlowVersion
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowversion.html}
|
|
6
|
+
*/
|
|
7
|
+
export class ConnectContactFlowVersion extends $Resource {
|
|
8
|
+
static Type = "AWS::Connect::ContactFlowVersion";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, ConnectContactFlowVersion.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-Connect-ContactFlowVersion.js.map
|
|
@@ -11,12 +11,38 @@ export type DataSyncLocationSMBProperties = {
|
|
|
11
11
|
* @maxLength `4`
|
|
12
12
|
*/
|
|
13
13
|
AgentArns: string[];
|
|
14
|
+
/**
|
|
15
|
+
* The authentication mode used to determine identity of user.
|
|
16
|
+
*/
|
|
17
|
+
AuthenticationType?: "NTLM" | "KERBEROS";
|
|
18
|
+
/**
|
|
19
|
+
* Specifies the IPv4 addresses for the DNS servers that your SMB file server belongs to. This parameter applies only if AuthenticationType is set to KERBEROS. If you have multiple domains in your environment, configuring this parameter makes sure that DataSync connects to the right SMB file server.
|
|
20
|
+
* @maxLength `2`
|
|
21
|
+
*/
|
|
22
|
+
DnsIpAddresses?: string[];
|
|
14
23
|
/**
|
|
15
24
|
* The name of the Windows domain that the SMB server belongs to.
|
|
16
25
|
* @maxLength `253`
|
|
17
26
|
* @pattern `^([A-Za-z0-9]+[A-Za-z0-9-.]*)*[A-Za-z0-9-]*[A-Za-z0-9]$`
|
|
18
27
|
*/
|
|
19
28
|
Domain?: string;
|
|
29
|
+
/**
|
|
30
|
+
* The Base64 string representation of the Keytab file. Specifies your Kerberos key table (keytab) file, which includes mappings between your service principal name (SPN) and encryption keys. To avoid task execution errors, make sure that the SPN in the keytab file matches exactly what you specify for KerberosPrincipal and in your krb5.conf file.
|
|
31
|
+
* @maxLength `87384`
|
|
32
|
+
*/
|
|
33
|
+
KerberosKeytab?: string;
|
|
34
|
+
/**
|
|
35
|
+
* The string representation of the Krb5Conf file, or the presigned URL to access the Krb5.conf file within an S3 bucket. Specifies a Kerberos configuration file (krb5.conf) that defines your Kerberos realm configuration. To avoid task execution errors, make sure that the service principal name (SPN) in the krb5.conf file matches exactly what you specify for KerberosPrincipal and in your keytab file.
|
|
36
|
+
* @maxLength `174764`
|
|
37
|
+
*/
|
|
38
|
+
KerberosKrb5Conf?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Specifies a service principal name (SPN), which is an identity in your Kerberos realm that has permission to access the files, folders, and file metadata in your SMB file server. SPNs are case sensitive and must include a prepended cifs/. For example, an SPN might look like cifs/kerberosuser@EXAMPLE.COM. Your task execution will fail if the SPN that you provide for this parameter doesn't match exactly what's in your keytab or krb5.conf files.
|
|
41
|
+
* @minLength `1`
|
|
42
|
+
* @maxLength `256`
|
|
43
|
+
* @pattern `^.+$`
|
|
44
|
+
*/
|
|
45
|
+
KerberosPrincipal?: string;
|
|
20
46
|
/**
|
|
21
47
|
* The mount options used by DataSync to access the SMB server.
|
|
22
48
|
*/
|
|
@@ -49,7 +75,7 @@ export type DataSyncLocationSMBProperties = {
|
|
|
49
75
|
* @maxLength `104`
|
|
50
76
|
* @pattern `^[^\x5B\x5D\\/:;|=,+*?]{1,104}$`
|
|
51
77
|
*/
|
|
52
|
-
User
|
|
78
|
+
User?: string;
|
|
53
79
|
};
|
|
54
80
|
/**
|
|
55
81
|
* Attribute type definition for `AWS::DataSync::LocationSMB`.
|
package/lib/AWS-ECS-Cluster.d.ts
CHANGED
|
@@ -17,8 +17,10 @@ export type ECSClusterProperties = {
|
|
|
17
17
|
*/
|
|
18
18
|
ClusterName?: string;
|
|
19
19
|
/**
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
* The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights with enhanced observability or CloudWatch Container Insights for a cluster.
|
|
21
|
+
Container Insights with enhanced observability provides all the Container Insights metrics, plus additional task and container metrics. This version supports enhanced observability for Amazon ECS clusters using the Amazon EC2 and Fargate launch types. After you configure Container Insights with enhanced observability on Amazon ECS, Container Insights auto-collects detailed infrastructure telemetry from the cluster level down to the container level in your environment and displays these critical performance data in curated dashboards removing the heavy lifting in observability set-up.
|
|
22
|
+
For more information, see [Monitor Amazon ECS containers using Container Insights with enhanced observability](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
23
|
+
*/
|
|
22
24
|
ClusterSettings?: ClusterSettings[];
|
|
23
25
|
/**
|
|
24
26
|
* The execute command and managed storage configuration for the cluster.
|
|
@@ -91,7 +93,9 @@ export type ClusterConfiguration = {
|
|
|
91
93
|
};
|
|
92
94
|
/**
|
|
93
95
|
* Type definition for `AWS::ECS::Cluster.ClusterSettings`.
|
|
94
|
-
* The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights for a cluster.
|
|
96
|
+
* The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights with enhanced observability or CloudWatch Container Insights for a cluster.
|
|
97
|
+
Container Insights with enhanced observability provides all the Container Insights metrics, plus additional task and container metrics. This version supports enhanced observability for Amazon ECS clusters using the Amazon EC2 and Fargate launch types. After you configure Container Insights with enhanced observability on Amazon ECS, Container Insights auto-collects detailed infrastructure telemetry from the cluster level down to the container level in your environment and displays these critical performance data in curated dashboards removing the heavy lifting in observability set-up.
|
|
98
|
+
For more information, see [Monitor Amazon ECS containers using Container Insights with enhanced observability](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cloudwatch-container-insights.html) in the *Amazon Elastic Container Service Developer Guide*.
|
|
95
99
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-clustersettings.html}
|
|
96
100
|
*/
|
|
97
101
|
export type ClusterSettings = {
|
|
@@ -100,8 +104,10 @@ export type ClusterSettings = {
|
|
|
100
104
|
*/
|
|
101
105
|
Name?: string;
|
|
102
106
|
/**
|
|
103
|
-
* The value to set for the cluster setting. The supported values are ``enabled
|
|
104
|
-
|
|
107
|
+
* The value to set for the cluster setting. The supported values are ``enhanced``, ``enabled``, and ``disabled``.
|
|
108
|
+
To use Container Insights with enhanced observability, set the ``containerInsights`` account setting to ``enhanced``.
|
|
109
|
+
To use Container Insights, set the ``containerInsights`` account setting to ``enabled``.
|
|
110
|
+
If a cluster value is specified, it will override the ``containerInsights`` value set with [PutAccountSetting](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutAccountSetting.html) or [PutAccountSettingDefault](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_PutAccountSettingDefault.html).
|
|
105
111
|
*/
|
|
106
112
|
Value?: string;
|
|
107
113
|
};
|
|
@@ -120,6 +120,29 @@ export type DynamoDBTarget = {
|
|
|
120
120
|
*/
|
|
121
121
|
Path?: string;
|
|
122
122
|
};
|
|
123
|
+
/**
|
|
124
|
+
* Type definition for `AWS::Glue::Crawler.HudiTarget`.
|
|
125
|
+
* Specifies Apache Hudi data store targets.
|
|
126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-huditarget.html}
|
|
127
|
+
*/
|
|
128
|
+
export type HudiTarget = {
|
|
129
|
+
/**
|
|
130
|
+
* The name of the connection to use to connect to the Hudi target.
|
|
131
|
+
*/
|
|
132
|
+
ConnectionName?: string;
|
|
133
|
+
/**
|
|
134
|
+
* A list of global patterns used to exclude from the crawl.
|
|
135
|
+
*/
|
|
136
|
+
Exclusions?: string[];
|
|
137
|
+
/**
|
|
138
|
+
* The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Hudi metadata folder in your Amazon S3 path. Used to limit the crawler run time.
|
|
139
|
+
*/
|
|
140
|
+
MaximumTraversalDepth?: number;
|
|
141
|
+
/**
|
|
142
|
+
* One or more Amazon S3 paths that contains Hudi metadata folders as s3://bucket/prefix .
|
|
143
|
+
*/
|
|
144
|
+
Paths?: string[];
|
|
145
|
+
};
|
|
123
146
|
/**
|
|
124
147
|
* Type definition for `AWS::Glue::Crawler.IcebergTarget`.
|
|
125
148
|
* Specifies Apache Iceberg data store targets.
|
|
@@ -284,6 +307,10 @@ export type Targets = {
|
|
|
284
307
|
* Specifies Amazon DynamoDB targets.
|
|
285
308
|
*/
|
|
286
309
|
DynamoDBTargets?: DynamoDBTarget[];
|
|
310
|
+
/**
|
|
311
|
+
* Specifies Apache Hudi data store targets.
|
|
312
|
+
*/
|
|
313
|
+
HudiTargets?: HudiTarget[];
|
|
287
314
|
/**
|
|
288
315
|
* Specifies Apache Iceberg data store targets.
|
|
289
316
|
*/
|
|
@@ -70,6 +70,10 @@ export type StreamsKmsKey = {
|
|
|
70
70
|
* @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
|
|
71
71
|
*/
|
|
72
72
|
KmsAliasArn?: string;
|
|
73
|
+
/**
|
|
74
|
+
* @pattern `^alias/[a-zA-Z0-9:/_-]+$`
|
|
75
|
+
*/
|
|
76
|
+
KmsAliasName?: string;
|
|
73
77
|
/**
|
|
74
78
|
* @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
|
|
75
79
|
*/
|
|
@@ -80,6 +80,7 @@ export type RDSDBInstanceProperties = {
|
|
|
80
80
|
Constraints: Major version upgrades must be allowed when specifying a value for the ``EngineVersion`` parameter that is a different major version than the DB instance's current version.
|
|
81
81
|
*/
|
|
82
82
|
AllowMajorVersionUpgrade?: boolean;
|
|
83
|
+
ApplyImmediately?: boolean;
|
|
83
84
|
/**
|
|
84
85
|
* The IAMlong (IAM) roles associated with the DB instance.
|
|
85
86
|
*Amazon Aurora*
|