@awboost/cfn-resource-types 0.1.504 → 0.1.506

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.
Files changed (40) hide show
  1. package/lib/AWS-BedrockAgentCore-GatewayTarget.d.ts +15 -2
  2. package/lib/AWS-BedrockAgentCore-GatewayTarget.js +1 -1
  3. package/lib/AWS-Cases-CaseRule.d.ts +216 -0
  4. package/lib/AWS-Cases-CaseRule.js +13 -0
  5. package/lib/AWS-Cases-Domain.d.ts +81 -0
  6. package/lib/AWS-Cases-Domain.js +13 -0
  7. package/lib/AWS-Cases-Field.d.ts +100 -0
  8. package/lib/AWS-Cases-Field.js +13 -0
  9. package/lib/AWS-Cases-Layout.d.ts +159 -0
  10. package/lib/AWS-Cases-Layout.js +13 -0
  11. package/lib/AWS-Cases-Template.d.ts +155 -0
  12. package/lib/AWS-Cases-Template.js +13 -0
  13. package/lib/AWS-Connect-ContactFlowModule.d.ts +14 -0
  14. package/lib/AWS-DAX-SubnetGroup.d.ts +3 -10
  15. package/lib/AWS-DAX-SubnetGroup.js +1 -1
  16. package/lib/AWS-DataSync-Agent.d.ts +1 -1
  17. package/lib/AWS-DataSync-LocationAzureBlob.d.ts +7 -7
  18. package/lib/AWS-DataSync-LocationEFS.d.ts +5 -5
  19. package/lib/AWS-DataSync-LocationFSxLustre.d.ts +2 -2
  20. package/lib/AWS-DataSync-LocationFSxONTAP.d.ts +3 -3
  21. package/lib/AWS-DataSync-LocationFSxOpenZFS.d.ts +2 -2
  22. package/lib/AWS-DataSync-LocationFSxWindows.d.ts +2 -2
  23. package/lib/AWS-DataSync-LocationHDFS.d.ts +1 -1
  24. package/lib/AWS-DataSync-LocationNFS.d.ts +2 -2
  25. package/lib/AWS-DataSync-LocationObjectStorage.d.ts +7 -7
  26. package/lib/AWS-DataSync-LocationS3.d.ts +3 -3
  27. package/lib/AWS-DataSync-LocationSMB.d.ts +8 -8
  28. package/lib/AWS-DataSync-Task.d.ts +8 -8
  29. package/lib/AWS-EC2-Volume.d.ts +35 -19
  30. package/lib/AWS-EC2-Volume.js +5 -5
  31. package/lib/AWS-ECR-RepositoryCreationTemplate.d.ts +1 -1
  32. package/lib/AWS-ECS-CapacityProvider.d.ts +1 -0
  33. package/lib/AWS-EMR-Step.d.ts +8 -0
  34. package/lib/AWS-Lex-Bot.d.ts +48 -5
  35. package/lib/AWS-Lex-Bot.js +1 -1
  36. package/lib/AWS-Lex-BotAlias.d.ts +3 -2
  37. package/lib/AWS-Lex-BotAlias.js +1 -1
  38. package/lib/AWS-QuickSight-Dashboard.d.ts +59 -1
  39. package/lib/AWS-WorkSpacesWeb-UserSettings.d.ts +1 -0
  40. package/package.json +1 -1
@@ -0,0 +1,155 @@
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::Cases::Template`.
5
+ * A template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html}
7
+ */
8
+ export type CasesTemplateProperties = {
9
+ /**
10
+ * A description explaining the purpose and use case for this template. Should indicate what types of cases this template is designed for and any specific workflow it supports.
11
+ * @maxLength `255`
12
+ */
13
+ Description?: string;
14
+ /**
15
+ * The unique identifier of the Cases domain.
16
+ * @minLength `1`
17
+ * @maxLength `500`
18
+ */
19
+ DomainId?: string;
20
+ /**
21
+ * Specifies the default layout to use when displaying cases created from this template. The layout determines which fields are visible and their arrangement in the agent interface.
22
+ */
23
+ LayoutConfiguration?: LayoutConfiguration;
24
+ /**
25
+ * A name for the template. It must be unique per domain.
26
+ * @minLength `1`
27
+ * @maxLength `100`
28
+ * @pattern `^.*[\S]$`
29
+ */
30
+ Name: string;
31
+ /**
32
+ * A list of fields that must contain a value for a case to be successfully created with this template.
33
+ * @maxLength `100`
34
+ */
35
+ RequiredFields?: RequiredField[];
36
+ /**
37
+ * A list of case rules (also known as case field conditions) on a template.
38
+ * @maxLength `50`
39
+ */
40
+ Rules?: TemplateRule[];
41
+ /**
42
+ * The current status of the template. Active templates can be used to create new cases, while Inactive templates are disabled but preserved for existing cases.
43
+ */
44
+ Status?: TemplateStatus;
45
+ /**
46
+ * The tags that you attach to this template.
47
+ */
48
+ Tags?: Tag[];
49
+ };
50
+ /**
51
+ * Attribute type definition for `AWS::Cases::Template`.
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#aws-resource-cases-template-return-values}
53
+ */
54
+ export type CasesTemplateAttributes = {
55
+ /**
56
+ * The time at which the template was created.
57
+ */
58
+ CreatedTime: string;
59
+ /**
60
+ * The time at which the template was created or last modified.
61
+ */
62
+ LastModifiedTime: string;
63
+ /**
64
+ * The Amazon Resource Name (ARN) of the template.
65
+ * @minLength `1`
66
+ * @maxLength `500`
67
+ */
68
+ TemplateArn: string;
69
+ /**
70
+ * The unique identifier of a template.
71
+ * @minLength `1`
72
+ * @maxLength `500`
73
+ */
74
+ TemplateId: string;
75
+ };
76
+ /**
77
+ * Type definition for `AWS::Cases::Template.LayoutConfiguration`.
78
+ * Specifies the default layout to use when displaying cases created from this template. The layout determines which fields are visible and their arrangement in the agent interface.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-layoutconfiguration.html}
80
+ */
81
+ export type LayoutConfiguration = {
82
+ /**
83
+ * The unique identifier of a layout.
84
+ * @minLength `1`
85
+ * @maxLength `500`
86
+ */
87
+ DefaultLayout?: string;
88
+ };
89
+ /**
90
+ * Type definition for `AWS::Cases::Template.RequiredField`.
91
+ * Wrapper object containing a field identifier
92
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-requiredfield.html}
93
+ */
94
+ export type RequiredField = {
95
+ /**
96
+ * The unique identifier of a field.
97
+ * @minLength `1`
98
+ * @maxLength `500`
99
+ */
100
+ FieldId: string;
101
+ };
102
+ /**
103
+ * Type definition for `AWS::Cases::Template.Tag`.
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-tag.html}
105
+ */
106
+ export type Tag = {
107
+ /**
108
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
109
+ * @minLength `1`
110
+ * @maxLength `128`
111
+ * @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
112
+ */
113
+ Key: string;
114
+ /**
115
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
116
+ * @minLength `0`
117
+ * @maxLength `256`
118
+ */
119
+ Value: string;
120
+ };
121
+ /**
122
+ * Type definition for `AWS::Cases::Template.TemplateRule`.
123
+ * Links a case rule to a specific field within this template. When specified, the rule's conditions will be evaluated for the associated field, controlling behavior like required status, visibility, or available options.
124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-templaterule.html}
125
+ */
126
+ export type TemplateRule = {
127
+ /**
128
+ * The unique identifier of a case rule.
129
+ * @minLength `1`
130
+ * @maxLength `500`
131
+ */
132
+ CaseRuleId: string;
133
+ /**
134
+ * The ID of the field that this rule applies to.
135
+ * @minLength `1`
136
+ * @maxLength `500`
137
+ */
138
+ FieldId?: string;
139
+ };
140
+ /**
141
+ * Type definition for `AWS::Cases::Template.TemplateStatus`.
142
+ * The current status of the template. Active templates can be used to create new cases, while Inactive templates are disabled but preserved for existing cases.
143
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-templatestatus.html}
144
+ */
145
+ export type TemplateStatus = "Active" | "Inactive";
146
+ /**
147
+ * Resource type definition for `AWS::Cases::Template`.
148
+ * A template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html}
150
+ */
151
+ export declare class CasesTemplate extends $Resource<"AWS::Cases::Template", CasesTemplateProperties, CasesTemplateAttributes> {
152
+ static readonly Type = "AWS::Cases::Template";
153
+ constructor(logicalId: string, properties: CasesTemplateProperties, options?: $ResourceOptions);
154
+ }
155
+ //# sourceMappingURL=AWS-Cases-Template.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::Cases::Template`.
4
+ * A template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html}
6
+ */
7
+ export class CasesTemplate extends $Resource {
8
+ static Type = "AWS::Cases::Template";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, CasesTemplate.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-Cases-Template.js.map
@@ -17,6 +17,15 @@ export type ConnectContactFlowModuleProperties = {
17
17
  * @pattern `.*\S.*`
18
18
  */
19
19
  Description?: string;
20
+ /**
21
+ * Defines the external invocation configuration of the flow module resource
22
+ */
23
+ ExternalInvocationConfiguration?: {
24
+ /**
25
+ * Specifies whether the flow module resource is enabled for external invocation
26
+ */
27
+ Enabled: boolean;
28
+ };
20
29
  /**
21
30
  * The identifier of the Amazon Connect instance (ARN).
22
31
  * @minLength `1`
@@ -31,6 +40,11 @@ export type ConnectContactFlowModuleProperties = {
31
40
  * @pattern `.*\S.*`
32
41
  */
33
42
  Name: string;
43
+ /**
44
+ * The schema of the settings for contact flow module in JSON Schema V4 format.
45
+ * @maxLength `256000`
46
+ */
47
+ Settings?: string;
34
48
  /**
35
49
  * The state of the contact flow module.
36
50
  * @maxLength `500`
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::DAX::SubnetGroup
4
+ * Resource type definition for AWS::DAX::SubnetGroup
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
6
6
  */
7
7
  export type DAXSubnetGroupProperties = {
@@ -10,17 +10,10 @@ export type DAXSubnetGroupProperties = {
10
10
  SubnetIds: string[];
11
11
  };
12
12
  /**
13
- * Attribute type definition for `AWS::DAX::SubnetGroup`.
14
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#aws-resource-dax-subnetgroup-return-values}
15
- */
16
- export type DAXSubnetGroupAttributes = {
17
- Id: string;
18
- };
19
- /**
20
- * Resource Type definition for AWS::DAX::SubnetGroup
13
+ * Resource type definition for AWS::DAX::SubnetGroup
21
14
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
22
15
  */
23
- export declare class DAXSubnetGroup extends $Resource<"AWS::DAX::SubnetGroup", DAXSubnetGroupProperties, DAXSubnetGroupAttributes> {
16
+ export declare class DAXSubnetGroup extends $Resource<"AWS::DAX::SubnetGroup", DAXSubnetGroupProperties, Record<string, never>> {
24
17
  static readonly Type = "AWS::DAX::SubnetGroup";
25
18
  constructor(logicalId: string, properties: DAXSubnetGroupProperties, options?: $ResourceOptions);
26
19
  }
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::DAX::SubnetGroup
3
+ * Resource type definition for AWS::DAX::SubnetGroup
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html}
5
5
  */
6
6
  export class DAXSubnetGroup extends $Resource {
@@ -45,7 +45,7 @@ export type DataSyncAgentAttributes = {
45
45
  /**
46
46
  * The DataSync Agent ARN.
47
47
  * @maxLength `128`
48
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:agent/agent-[0-9a-z]{17}$`
48
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:agent/agent-[0-9a-z]{17}$`
49
49
  */
50
50
  AgentArn: string;
51
51
  /**
@@ -65,14 +65,14 @@ export type DataSyncLocationAzureBlobAttributes = {
65
65
  /**
66
66
  * Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
67
67
  * @maxLength `2048`
68
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
68
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
69
69
  */
70
70
  SecretArn: string;
71
71
  };
72
72
  /**
73
73
  * The Amazon Resource Name (ARN) of the Azure Blob Location that is created.
74
74
  * @maxLength `128`
75
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
75
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
76
76
  */
77
77
  LocationArn: string;
78
78
  /**
@@ -88,7 +88,7 @@ export type DataSyncLocationAzureBlobAttributes = {
88
88
  /**
89
89
  * Specifies the ARN for an AWS Secrets Manager secret.
90
90
  * @maxLength `2048`
91
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
91
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
92
92
  */
93
93
  SecretArn: string;
94
94
  };
@@ -116,7 +116,7 @@ export type CmkSecretConfig = {
116
116
  /**
117
117
  * Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
118
118
  * @maxLength `2048`
119
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
119
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
120
120
  */
121
121
  KmsKeyArn?: string;
122
122
  };
@@ -129,13 +129,13 @@ export type CustomSecretConfig = {
129
129
  /**
130
130
  * Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
131
131
  * @maxLength `2048`
132
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
132
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
133
133
  */
134
134
  SecretAccessRoleArn: string;
135
135
  /**
136
136
  * Specifies the ARN for a customer created AWS Secrets Manager secret.
137
137
  * @maxLength `2048`
138
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
138
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
139
139
  */
140
140
  SecretArn: string;
141
141
  };
@@ -148,7 +148,7 @@ export type ManagedSecretConfig = {
148
148
  /**
149
149
  * Specifies the ARN for an AWS Secrets Manager secret.
150
150
  * @maxLength `2048`
151
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
151
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
152
152
  */
153
153
  SecretArn: string;
154
154
  };
@@ -8,7 +8,7 @@ export type DataSyncLocationEFSProperties = {
8
8
  /**
9
9
  * The Amazon Resource Name (ARN) for the Amazon EFS Access point that DataSync uses when accessing the EFS file system.
10
10
  * @maxLength `128`
11
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]+:[0-9]{12}:access-point/fsap-[0-9a-f]{8,40}$`
11
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]+:[0-9]{12}:access-point/fsap-[0-9a-f]{8,40}$`
12
12
  */
13
13
  AccessPointArn?: string;
14
14
  /**
@@ -18,13 +18,13 @@ export type DataSyncLocationEFSProperties = {
18
18
  /**
19
19
  * The Amazon Resource Name (ARN) for the Amazon EFS file system.
20
20
  * @maxLength `128`
21
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
21
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):elasticfilesystem:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
22
22
  */
23
23
  EfsFilesystemArn?: string;
24
24
  /**
25
25
  * The Amazon Resource Name (ARN) of the AWS IAM role that the DataSync will assume when mounting the EFS file system.
26
26
  * @maxLength `128`
27
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
27
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
28
28
  */
29
29
  FileSystemAccessRoleArn?: string;
30
30
  /**
@@ -51,7 +51,7 @@ export type DataSyncLocationEFSAttributes = {
51
51
  /**
52
52
  * The Amazon Resource Name (ARN) of the Amazon EFS file system location that is created.
53
53
  * @maxLength `128`
54
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
54
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
55
55
  */
56
56
  LocationArn: string;
57
57
  /**
@@ -76,7 +76,7 @@ export type Ec2Config = {
76
76
  /**
77
77
  * The ARN of the subnet that DataSync uses to access the target EFS file system.
78
78
  * @maxLength `128`
79
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:subnet/.*$`
79
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):ec2:[a-z\-0-9]*:[0-9]{12}:subnet/.*$`
80
80
  */
81
81
  SubnetArn: string;
82
82
  };
@@ -8,7 +8,7 @@ export type DataSyncLocationFSxLustreProperties = {
8
8
  /**
9
9
  * The Amazon Resource Name (ARN) for the FSx for Lustre file system.
10
10
  * @maxLength `128`
11
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
11
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
12
12
  */
13
13
  FsxFilesystemArn?: string;
14
14
  /**
@@ -38,7 +38,7 @@ export type DataSyncLocationFSxLustreAttributes = {
38
38
  /**
39
39
  * The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created.
40
40
  * @maxLength `128`
41
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
41
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
42
42
  */
43
43
  LocationArn: string;
44
44
  /**
@@ -18,7 +18,7 @@ export type DataSyncLocationFSxONTAPProperties = {
18
18
  /**
19
19
  * The Amazon Resource Name (ARN) for the FSx ONTAP SVM.
20
20
  * @maxLength `162`
21
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:storage-virtual-machine/fs-[0-9a-f]+/svm-[0-9a-f]{17,}$`
21
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:storage-virtual-machine/fs-[0-9a-f]+/svm-[0-9a-f]{17,}$`
22
22
  */
23
23
  StorageVirtualMachineArn: string;
24
24
  /**
@@ -42,13 +42,13 @@ export type DataSyncLocationFSxONTAPAttributes = {
42
42
  /**
43
43
  * The Amazon Resource Name (ARN) for the FSx ONAP file system.
44
44
  * @maxLength `128`
45
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
45
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
46
46
  */
47
47
  FsxFilesystemArn: string;
48
48
  /**
49
49
  * The Amazon Resource Name (ARN) of the Amazon FSx ONTAP file system location that is created.
50
50
  * @maxLength `128`
51
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
51
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
52
52
  */
53
53
  LocationArn: string;
54
54
  /**
@@ -8,7 +8,7 @@ export type DataSyncLocationFSxOpenZFSProperties = {
8
8
  /**
9
9
  * The Amazon Resource Name (ARN) for the FSx OpenZFS file system.
10
10
  * @maxLength `128`
11
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
11
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]+:[0-9]{12}:file-system/fs-[0-9a-f]+$`
12
12
  */
13
13
  FsxFilesystemArn?: string;
14
14
  /**
@@ -42,7 +42,7 @@ export type DataSyncLocationFSxOpenZFSAttributes = {
42
42
  /**
43
43
  * The Amazon Resource Name (ARN) of the Amazon FSx OpenZFS file system location that is created.
44
44
  * @maxLength `128`
45
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
45
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
46
46
  */
47
47
  LocationArn: string;
48
48
  /**
@@ -14,7 +14,7 @@ export type DataSyncLocationFSxWindowsProperties = {
14
14
  /**
15
15
  * The Amazon Resource Name (ARN) for the FSx for Windows file system.
16
16
  * @maxLength `128`
17
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):fsx:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
17
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):fsx:[a-z\-0-9]*:[0-9]{12}:file-system/fs-.*$`
18
18
  */
19
19
  FsxFilesystemArn?: string;
20
20
  /**
@@ -53,7 +53,7 @@ export type DataSyncLocationFSxWindowsAttributes = {
53
53
  /**
54
54
  * The Amazon Resource Name (ARN) of the Amazon FSx for Windows file system location that is created.
55
55
  * @maxLength `128`
56
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
56
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
57
57
  */
58
58
  LocationArn: string;
59
59
  /**
@@ -87,7 +87,7 @@ export type DataSyncLocationHDFSAttributes = {
87
87
  /**
88
88
  * The Amazon Resource Name (ARN) of the HDFS location.
89
89
  * @maxLength `128`
90
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
90
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
91
91
  */
92
92
  LocationArn: string;
93
93
  /**
@@ -39,7 +39,7 @@ export type DataSyncLocationNFSAttributes = {
39
39
  /**
40
40
  * The Amazon Resource Name (ARN) of the NFS location.
41
41
  * @maxLength `128`
42
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
42
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
43
43
  */
44
44
  LocationArn: string;
45
45
  /**
@@ -69,7 +69,7 @@ export type OnPremConfig = {
69
69
  /**
70
70
  * ARN(s) of the agent(s) to use for an NFS location.
71
71
  * @minLength `1`
72
- * @maxLength `4`
72
+ * @maxLength `8`
73
73
  */
74
74
  AgentArns: string[];
75
75
  };
@@ -85,14 +85,14 @@ export type DataSyncLocationObjectStorageAttributes = {
85
85
  /**
86
86
  * Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
87
87
  * @maxLength `2048`
88
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
88
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
89
89
  */
90
90
  SecretArn: string;
91
91
  };
92
92
  /**
93
93
  * The Amazon Resource Name (ARN) of the location that is created.
94
94
  * @maxLength `128`
95
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
95
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
96
96
  */
97
97
  LocationArn: string;
98
98
  /**
@@ -108,7 +108,7 @@ export type DataSyncLocationObjectStorageAttributes = {
108
108
  /**
109
109
  * Specifies the ARN for an AWS Secrets Manager secret.
110
110
  * @maxLength `2048`
111
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
111
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
112
112
  */
113
113
  SecretArn: string;
114
114
  };
@@ -122,7 +122,7 @@ export type CmkSecretConfig = {
122
122
  /**
123
123
  * Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
124
124
  * @maxLength `2048`
125
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
125
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
126
126
  */
127
127
  KmsKeyArn?: string;
128
128
  };
@@ -135,13 +135,13 @@ export type CustomSecretConfig = {
135
135
  /**
136
136
  * Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
137
137
  * @maxLength `2048`
138
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
138
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
139
139
  */
140
140
  SecretAccessRoleArn: string;
141
141
  /**
142
142
  * Specifies the ARN for a customer created AWS Secrets Manager secret.
143
143
  * @maxLength `2048`
144
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
144
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
145
145
  */
146
146
  SecretArn: string;
147
147
  };
@@ -154,7 +154,7 @@ export type ManagedSecretConfig = {
154
154
  /**
155
155
  * Specifies the ARN for an AWS Secrets Manager secret.
156
156
  * @maxLength `2048`
157
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
157
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
158
158
  */
159
159
  SecretArn: string;
160
160
  };
@@ -8,7 +8,7 @@ export type DataSyncLocationS3Properties = {
8
8
  /**
9
9
  * The Amazon Resource Name (ARN) of the Amazon S3 bucket.
10
10
  * @maxLength `156`
11
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):s3:[a-z\-0-9]*:[0-9]*:.*$`
11
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):s3:[a-z\-0-9]*:[0-9]*:.*$`
12
12
  */
13
13
  S3BucketArn?: string;
14
14
  /**
@@ -39,7 +39,7 @@ export type DataSyncLocationS3Attributes = {
39
39
  /**
40
40
  * The Amazon Resource Name (ARN) of the Amazon S3 bucket location.
41
41
  * @maxLength `128`
42
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
42
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
43
43
  */
44
44
  LocationArn: string;
45
45
  /**
@@ -58,7 +58,7 @@ export type S3Config = {
58
58
  /**
59
59
  * The ARN of the IAM role of the Amazon S3 bucket.
60
60
  * @maxLength `2048`
61
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
61
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*$`
62
62
  */
63
63
  BucketAccessRoleArn: string;
64
64
  };
@@ -8,7 +8,7 @@ export type DataSyncLocationSMBProperties = {
8
8
  /**
9
9
  * The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
10
10
  * @minLength `1`
11
- * @maxLength `4`
11
+ * @maxLength `8`
12
12
  */
13
13
  AgentArns: string[];
14
14
  /**
@@ -97,14 +97,14 @@ export type DataSyncLocationSMBAttributes = {
97
97
  /**
98
98
  * Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.
99
99
  * @maxLength `2048`
100
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
100
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
101
101
  */
102
102
  SecretArn: string;
103
103
  };
104
104
  /**
105
105
  * The Amazon Resource Name (ARN) of the SMB location that is created.
106
106
  * @maxLength `128`
107
- * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
107
+ * @pattern `^arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):datasync:[a-z\-0-9]+:[0-9]{12}:location/loc-[0-9a-z]{17}$`
108
108
  */
109
109
  LocationArn: string;
110
110
  /**
@@ -120,7 +120,7 @@ export type DataSyncLocationSMBAttributes = {
120
120
  /**
121
121
  * Specifies the ARN for an AWS Secrets Manager secret.
122
122
  * @maxLength `2048`
123
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
123
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
124
124
  */
125
125
  SecretArn: string;
126
126
  };
@@ -134,7 +134,7 @@ export type CmkSecretConfig = {
134
134
  /**
135
135
  * Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. DataSync provides this key to AWS Secrets Manager.
136
136
  * @maxLength `2048`
137
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
137
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$`
138
138
  */
139
139
  KmsKeyArn?: string;
140
140
  };
@@ -147,13 +147,13 @@ export type CustomSecretConfig = {
147
147
  /**
148
148
  * Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
149
149
  * @maxLength `2048`
150
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
150
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$`
151
151
  */
152
152
  SecretAccessRoleArn: string;
153
153
  /**
154
154
  * Specifies the ARN for a customer created AWS Secrets Manager secret.
155
155
  * @maxLength `2048`
156
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
156
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
157
157
  */
158
158
  SecretArn: string;
159
159
  };
@@ -166,7 +166,7 @@ export type ManagedSecretConfig = {
166
166
  /**
167
167
  * Specifies the ARN for an AWS Secrets Manager secret.
168
168
  * @maxLength `2048`
169
- * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
169
+ * @pattern `^(arn:(aws|aws-cn|aws-us-gov|aws-eusc|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$`
170
170
  */
171
171
  SecretArn: string;
172
172
  };