@awboost/cfn-resource-types 0.1.479 → 0.1.480
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-Backup-LogicallyAirGappedBackupVault.d.ts +1 -1
- package/lib/AWS-ECS-Service.d.ts +41 -5
- package/lib/AWS-Glue-Integration.d.ts +130 -0
- package/lib/AWS-Glue-Integration.js +12 -0
- package/lib/AWS-LakeFormation-DataLakeSettings.d.ts +6 -0
- package/lib/AWS-OpenSearchServerless-Collection.d.ts +30 -0
- package/lib/AWS-ServiceCatalog-CloudFormationProduct.d.ts +1 -9
- package/lib/AWS-VpcLattice-DomainVerification.d.ts +68 -0
- package/lib/AWS-VpcLattice-DomainVerification.js +13 -0
- package/lib/AWS-VpcLattice-ResourceConfiguration.d.ts +16 -0
- package/lib/AWS-VpcLattice-ServiceNetworkResourceAssociation.d.ts +1 -0
- package/lib/AWS-VpcLattice-ServiceNetworkVpcAssociation.d.ts +14 -0
- package/package.json +1 -1
|
@@ -11,6 +11,7 @@ export type BackupLogicallyAirGappedBackupVaultProperties = {
|
|
|
11
11
|
*/
|
|
12
12
|
BackupVaultName: string;
|
|
13
13
|
BackupVaultTags?: Record<string, string>;
|
|
14
|
+
EncryptionKeyArn?: string;
|
|
14
15
|
MaxRetentionDays: number;
|
|
15
16
|
MinRetentionDays: number;
|
|
16
17
|
MpaApprovalTeamArn?: string;
|
|
@@ -22,7 +23,6 @@ export type BackupLogicallyAirGappedBackupVaultProperties = {
|
|
|
22
23
|
*/
|
|
23
24
|
export type BackupLogicallyAirGappedBackupVaultAttributes = {
|
|
24
25
|
BackupVaultArn: string;
|
|
25
|
-
EncryptionKeyArn: string;
|
|
26
26
|
VaultState: string;
|
|
27
27
|
VaultType: string;
|
|
28
28
|
};
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -230,15 +230,21 @@ export type AwsVpcConfiguration = {
|
|
|
230
230
|
};
|
|
231
231
|
/**
|
|
232
232
|
* Type definition for `AWS::ECS::Service.CanaryConfiguration`.
|
|
233
|
+
* Configuration for a canary deployment strategy that shifts a fixed percentage of traffic to the new service revision, waits for a specified bake time, then shifts the remaining traffic.
|
|
234
|
+
The following validation applies only to Canary deployments created through CFN. CFN operations time out after 36 hours. Canary deployments can approach this limit because of their extended duration. This can cause CFN to roll back the deployment. To prevent timeout-related rollbacks, CFN rejects deployments when the calculated deployment time exceeds 33 hours based on your template configuration:
|
|
235
|
+
``BakeTimeInMinutes + CanaryBakeTimeInMinutes``
|
|
236
|
+
Additional backend processes (such as task scaling and running lifecycle hooks) can extend deployment time beyond these calculations. Even deployments under the 33-hour threshold might still time out if these processes cause the total duration to exceed 36 hours.
|
|
233
237
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-canaryconfiguration.html}
|
|
234
238
|
*/
|
|
235
239
|
export type CanaryConfiguration = {
|
|
236
240
|
/**
|
|
241
|
+
* The amount of time in minutes to wait during the canary phase before shifting the remaining production traffic to the new service revision. Valid values are 0 to 1440 minutes (24 hours). The default value is 10.
|
|
237
242
|
* @min `0`
|
|
238
243
|
* @max `1440`
|
|
239
244
|
*/
|
|
240
245
|
CanaryBakeTimeInMinutes?: number;
|
|
241
246
|
/**
|
|
247
|
+
* The percentage of production traffic to shift to the new service revision during the canary phase. Valid values are multiples of 0.1 from 0.1 to 100.0. The default value is 5.0.
|
|
242
248
|
* @min `0.1`
|
|
243
249
|
* @max `100`
|
|
244
250
|
*/
|
|
@@ -257,13 +263,13 @@ export type CapacityProviderStrategyItem = {
|
|
|
257
263
|
* The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider for each service. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of ``0`` is used.
|
|
258
264
|
Base value characteristics:
|
|
259
265
|
+ Only one capacity provider in a strategy can have a base defined
|
|
260
|
-
+
|
|
261
|
-
+
|
|
266
|
+
+ The default value is ``0`` if not specified
|
|
267
|
+
+ The valid range is 0 to 100,000
|
|
262
268
|
+ Base requirements are satisfied first before weight distribution
|
|
263
269
|
*/
|
|
264
270
|
Base?: number;
|
|
265
271
|
/**
|
|
266
|
-
* The short name of the capacity provider.
|
|
272
|
+
* The short name of the capacity provider. This can be either an AWS managed capacity provider (``FARGATE`` or ``FARGATE_SPOT``) or the name of a custom capacity provider that you created.
|
|
267
273
|
*/
|
|
268
274
|
CapacityProvider?: string;
|
|
269
275
|
/**
|
|
@@ -271,8 +277,8 @@ export type CapacityProviderStrategyItem = {
|
|
|
271
277
|
If no ``weight`` value is specified, the default value of ``0`` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of ``0`` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of ``0``, any ``RunTask`` or ``CreateService`` actions using the capacity provider strategy will fail.
|
|
272
278
|
Weight value characteristics:
|
|
273
279
|
+ Weight is considered after the base value is satisfied
|
|
274
|
-
+
|
|
275
|
-
+
|
|
280
|
+
+ The default value is ``0`` if not specified
|
|
281
|
+
+ The valid range is 0 to 1,000
|
|
276
282
|
+ At least one capacity provider must have a weight greater than zero
|
|
277
283
|
+ Capacity providers with weight of ``0`` cannot place tasks
|
|
278
284
|
|
|
@@ -345,6 +351,9 @@ export type DeploymentConfiguration = {
|
|
|
345
351
|
* @max `1440`
|
|
346
352
|
*/
|
|
347
353
|
BakeTimeInMinutes?: number;
|
|
354
|
+
/**
|
|
355
|
+
* Configuration for canary deployment strategy. Only valid when the deployment strategy is ``CANARY``. This configuration enables shifting a fixed percentage of traffic for testing, followed by shifting the remaining traffic after a bake period.
|
|
356
|
+
*/
|
|
348
357
|
CanaryConfiguration?: CanaryConfiguration;
|
|
349
358
|
/**
|
|
350
359
|
* The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
@@ -355,6 +364,9 @@ export type DeploymentConfiguration = {
|
|
|
355
364
|
* An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
356
365
|
*/
|
|
357
366
|
LifecycleHooks?: DeploymentLifecycleHook[];
|
|
367
|
+
/**
|
|
368
|
+
* Configuration for linear deployment strategy. Only valid when the deployment strategy is ``LINEAR``. This configuration enables progressive traffic shifting in equal percentage increments with configurable bake times between each step.
|
|
369
|
+
*/
|
|
358
370
|
LinearConfiguration?: LinearConfiguration;
|
|
359
371
|
/**
|
|
360
372
|
* If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
@@ -526,15 +538,26 @@ export type ForceNewDeployment = {
|
|
|
526
538
|
};
|
|
527
539
|
/**
|
|
528
540
|
* Type definition for `AWS::ECS::Service.LinearConfiguration`.
|
|
541
|
+
* Configuration for a linear deployment strategy that shifts production traffic in equal percentage increments with configurable wait times between each step until 100 percent of traffic is shifted to the new service revision.
|
|
542
|
+
The following validation applies only to Linear deployments created through CFN. CFN operations time out after 36 hours. Linear deployments can approach this limit because of their extended duration. This can cause CFN to roll back the deployment. To prevent timeout-related rollbacks, CFN rejects deployments when the calculated deployment time exceeds 33 hours based on your template configuration:
|
|
543
|
+
``BakeTimeInMinutes + (StepBakeTimeInMinutes × Number of deployment steps)``
|
|
544
|
+
Where the number of deployment steps is calculated as follows:
|
|
545
|
+
+ *If StepPercent evenly divides by 100*: The number of deployment steps equals ``(100 ÷ StepPercent) - 1``
|
|
546
|
+
+ *Otherwise*: The number of deployment steps equals the floor of ``100 ÷ StepPercent``. For example, if ``StepPercent`` is 11, the number of deployment steps is 9 (not 9.1).
|
|
547
|
+
|
|
548
|
+
This calculation reflects that CFN doesn't apply the step bake time after the final traffic shift reaches 100%. For example, with a ``StepPercent`` of 50%, there are actually two traffic shifts, but only one deployment step is counted for validation purposes because the bake time is applied only after the first 50% shift, not after reaching 100%.
|
|
549
|
+
Additional backend processes (such as task scaling and running lifecycle hooks) can extend deployment time beyond these calculations. Even deployments under the 33-hour threshold might still time out if these processes cause the total duration to exceed 36 hours.
|
|
529
550
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-linearconfiguration.html}
|
|
530
551
|
*/
|
|
531
552
|
export type LinearConfiguration = {
|
|
532
553
|
/**
|
|
554
|
+
* The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
|
|
533
555
|
* @min `0`
|
|
534
556
|
* @max `1440`
|
|
535
557
|
*/
|
|
536
558
|
StepBakeTimeInMinutes?: number;
|
|
537
559
|
/**
|
|
560
|
+
* The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
|
|
538
561
|
* @min `3`
|
|
539
562
|
* @max `100`
|
|
540
563
|
*/
|
|
@@ -684,10 +707,19 @@ export type Secret = {
|
|
|
684
707
|
};
|
|
685
708
|
/**
|
|
686
709
|
* Type definition for `AWS::ECS::Service.ServiceConnectAccessLogConfiguration`.
|
|
710
|
+
* Configuration for Service Connect access logging. Access logs provide detailed information about requests made to your service, including request patterns, response codes, and timing data for debugging and monitoring purposes.
|
|
711
|
+
To enable access logs, you must also specify a ``logConfiguration`` in the ``serviceConnectConfiguration``.
|
|
687
712
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnectaccesslogconfiguration.html}
|
|
688
713
|
*/
|
|
689
714
|
export type ServiceConnectAccessLogConfiguration = {
|
|
715
|
+
/**
|
|
716
|
+
* The format for Service Connect access log output. Choose TEXT for human-readable logs or JSON for structured data that integrates well with log analysis tools.
|
|
717
|
+
*/
|
|
690
718
|
Format: "TEXT" | "JSON";
|
|
719
|
+
/**
|
|
720
|
+
* Specifies whether to include query parameters in Service Connect access logs.
|
|
721
|
+
When enabled, query parameters from HTTP requests are included in the access logs. Consider security and privacy implications when enabling this feature, as query parameters may contain sensitive information such as request IDs and tokens. By default, this parameter is ``DISABLED``.
|
|
722
|
+
*/
|
|
691
723
|
IncludeQueryParameters?: "DISABLED" | "ENABLED";
|
|
692
724
|
};
|
|
693
725
|
/**
|
|
@@ -721,6 +753,10 @@ export type ServiceConnectClientAlias = {
|
|
|
721
753
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnectconfiguration.html}
|
|
722
754
|
*/
|
|
723
755
|
export type ServiceConnectConfiguration = {
|
|
756
|
+
/**
|
|
757
|
+
* The configuration for Service Connect access logging. Access logs capture detailed information about requests made to your service, including request patterns, response codes, and timing data. They can be useful for debugging connectivity issues, monitoring service performance, and auditing service-to-service communication for security and compliance purposes.
|
|
758
|
+
To enable access logs, you must also specify a ``logConfiguration`` in the ``serviceConnectConfiguration``.
|
|
759
|
+
*/
|
|
724
760
|
AccessLogConfiguration?: ServiceConnectAccessLogConfiguration;
|
|
725
761
|
/**
|
|
726
762
|
* Specifies whether to use Service Connect with this service.
|
|
@@ -0,0 +1,130 @@
|
|
|
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::Glue::Integration
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integration.html}
|
|
6
|
+
*/
|
|
7
|
+
export type GlueIntegrationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* An optional set of non-secret key value pairs that contains additional contextual information about the data.
|
|
10
|
+
*/
|
|
11
|
+
AdditionalEncryptionContext?: IntegrationAdditionalEncryptionContextMap;
|
|
12
|
+
/**
|
|
13
|
+
* @maxLength `2048`
|
|
14
|
+
*/
|
|
15
|
+
DataFilter?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @maxLength `1000`
|
|
18
|
+
*/
|
|
19
|
+
Description?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The configuration settings for the integration.
|
|
22
|
+
*/
|
|
23
|
+
IntegrationConfig?: IntegrationConfig;
|
|
24
|
+
/**
|
|
25
|
+
* The name of the integration.
|
|
26
|
+
* @minLength `1`
|
|
27
|
+
* @maxLength `128`
|
|
28
|
+
*/
|
|
29
|
+
IntegrationName: string;
|
|
30
|
+
/**
|
|
31
|
+
* An KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, the default AWS owned KMS key is used.
|
|
32
|
+
*/
|
|
33
|
+
KmsKeyId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* The Amazon Resource Name (ARN) of the database to use as the source for replication
|
|
36
|
+
* @maxLength `512`
|
|
37
|
+
* @pattern `arn:aws:.*:.*:[0-9]+:.*`
|
|
38
|
+
*/
|
|
39
|
+
SourceArn: string;
|
|
40
|
+
/**
|
|
41
|
+
* An array of key-value pairs to apply to this resource.
|
|
42
|
+
* @maxLength `50`
|
|
43
|
+
*/
|
|
44
|
+
Tags?: Tag[];
|
|
45
|
+
/**
|
|
46
|
+
* The Amazon Resource Name (ARN) of the Glue data warehouse to use as the target for replication
|
|
47
|
+
* @maxLength `512`
|
|
48
|
+
* @pattern `arn:aws:.*:.*:[0-9]+:.*`
|
|
49
|
+
*/
|
|
50
|
+
TargetArn: string;
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* Attribute type definition for `AWS::Glue::Integration`.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integration.html#aws-resource-glue-integration-return-values}
|
|
55
|
+
*/
|
|
56
|
+
export type GlueIntegrationAttributes = {
|
|
57
|
+
/**
|
|
58
|
+
* The time (UTC) when the integration was created.
|
|
59
|
+
*/
|
|
60
|
+
CreateTime: string;
|
|
61
|
+
/**
|
|
62
|
+
* The Amazon Resource Name (ARN) of the integration.
|
|
63
|
+
* @pattern `arn:aws:.*:.*:[0-9]+:.*`
|
|
64
|
+
*/
|
|
65
|
+
IntegrationArn: string;
|
|
66
|
+
/**
|
|
67
|
+
* The status of the integration.
|
|
68
|
+
*/
|
|
69
|
+
Status: string;
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::Glue::Integration.IntegrationAdditionalEncryptionContextMap`.
|
|
73
|
+
* An optional set of non-secret key value pairs that contains additional contextual information about the data.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integration-integrationadditionalencryptioncontextmap.html}
|
|
75
|
+
*/
|
|
76
|
+
export type IntegrationAdditionalEncryptionContextMap = Record<string, string>;
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::Glue::Integration.IntegrationConfig`.
|
|
79
|
+
* The configuration settings for the integration.
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integration-integrationconfig.html}
|
|
81
|
+
*/
|
|
82
|
+
export type IntegrationConfig = {
|
|
83
|
+
/**
|
|
84
|
+
* Enables continuous synchronization for on-demand data extractions.
|
|
85
|
+
*/
|
|
86
|
+
ContinuousSync?: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Specifies the frequency at which CDC (Change Data Capture) pulls or incremental loads should occur.
|
|
89
|
+
* @maxLength `128`
|
|
90
|
+
*/
|
|
91
|
+
RefreshInterval?: string;
|
|
92
|
+
/**
|
|
93
|
+
* A collection of key-value pairs that specify additional properties for the integration source.
|
|
94
|
+
*/
|
|
95
|
+
SourceProperties?: SourceProperties;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Type definition for `AWS::Glue::Integration.SourceProperties`.
|
|
99
|
+
* A collection of key-value pairs that specify additional properties for the integration source.
|
|
100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integration-sourceproperties.html}
|
|
101
|
+
*/
|
|
102
|
+
export type SourceProperties = Record<string, string>;
|
|
103
|
+
/**
|
|
104
|
+
* Type definition for `AWS::Glue::Integration.Tag`.
|
|
105
|
+
* A key-value pair to associate with a resource.
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integration-tag.html}
|
|
107
|
+
*/
|
|
108
|
+
export type Tag = {
|
|
109
|
+
/**
|
|
110
|
+
* 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 -.
|
|
111
|
+
* @minLength `1`
|
|
112
|
+
* @maxLength `128`
|
|
113
|
+
*/
|
|
114
|
+
Key: string;
|
|
115
|
+
/**
|
|
116
|
+
* 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 -.
|
|
117
|
+
* @minLength `0`
|
|
118
|
+
* @maxLength `256`
|
|
119
|
+
*/
|
|
120
|
+
Value?: string;
|
|
121
|
+
};
|
|
122
|
+
/**
|
|
123
|
+
* Resource Type definition for AWS::Glue::Integration
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integration.html}
|
|
125
|
+
*/
|
|
126
|
+
export declare class GlueIntegration extends $Resource<"AWS::Glue::Integration", GlueIntegrationProperties, GlueIntegrationAttributes> {
|
|
127
|
+
static readonly Type = "AWS::Glue::Integration";
|
|
128
|
+
constructor(logicalId: string, properties: GlueIntegrationProperties, options?: $ResourceOptions);
|
|
129
|
+
}
|
|
130
|
+
//# sourceMappingURL=AWS-Glue-Integration.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::Glue::Integration
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integration.html}
|
|
5
|
+
*/
|
|
6
|
+
export class GlueIntegration extends $Resource {
|
|
7
|
+
static Type = "AWS::Glue::Integration";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, GlueIntegration.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Glue-Integration.js.map
|
|
@@ -14,6 +14,7 @@ export type LakeFormationDataLakeSettingsProperties = {
|
|
|
14
14
|
ExternalDataFilteringAllowList?: ExternalDataFilteringAllowList;
|
|
15
15
|
MutationType?: string;
|
|
16
16
|
Parameters?: Record<string, any>;
|
|
17
|
+
ReadOnlyAdmins?: ReadOnlyAdmins;
|
|
17
18
|
TrustedResourceOwners?: string[];
|
|
18
19
|
};
|
|
19
20
|
/**
|
|
@@ -43,6 +44,11 @@ export type CreateTableDefaultPermissions = Record<string, any>;
|
|
|
43
44
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-datalakesettings-externaldatafilteringallowlist.html}
|
|
44
45
|
*/
|
|
45
46
|
export type ExternalDataFilteringAllowList = Record<string, any>;
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::LakeFormation::DataLakeSettings.ReadOnlyAdmins`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-datalakesettings-readonlyadmins.html}
|
|
50
|
+
*/
|
|
51
|
+
export type ReadOnlyAdmins = Record<string, any>;
|
|
46
52
|
/**
|
|
47
53
|
* Resource Type definition for AWS::LakeFormation::DataLakeSettings
|
|
48
54
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-datalakesettings.html}
|
|
@@ -6,11 +6,26 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html}
|
|
7
7
|
*/
|
|
8
8
|
export type OpenSearchServerlessCollectionProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The name of the collection group.
|
|
11
|
+
|
|
12
|
+
The name must meet the following criteria:
|
|
13
|
+
Unique to your account and AWS Region
|
|
14
|
+
Starts with a lowercase letter
|
|
15
|
+
Contains only lowercase letters a-z, the numbers 0-9 and the hyphen (-)
|
|
16
|
+
Contains between 3 and 32 characters
|
|
17
|
+
|
|
18
|
+
*/
|
|
19
|
+
CollectionGroupName?: string;
|
|
9
20
|
/**
|
|
10
21
|
* The description of the collection
|
|
11
22
|
* @maxLength `1000`
|
|
12
23
|
*/
|
|
13
24
|
Description?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The configuration to encrypt the collection
|
|
27
|
+
*/
|
|
28
|
+
EncryptionConfig?: EncryptionConfig;
|
|
14
29
|
/**
|
|
15
30
|
* The name of the collection.
|
|
16
31
|
|
|
@@ -74,6 +89,21 @@ export type OpenSearchServerlessCollectionAttributes = {
|
|
|
74
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-collectiontype.html}
|
|
75
90
|
*/
|
|
76
91
|
export type CollectionType = "SEARCH" | "TIMESERIES" | "VECTORSEARCH";
|
|
92
|
+
/**
|
|
93
|
+
* Type definition for `AWS::OpenSearchServerless::Collection.EncryptionConfig`.
|
|
94
|
+
* The configuration to encrypt the collection
|
|
95
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html}
|
|
96
|
+
*/
|
|
97
|
+
export type EncryptionConfig = {
|
|
98
|
+
/**
|
|
99
|
+
* The configuration to encrypt the collection with AWS owned key
|
|
100
|
+
*/
|
|
101
|
+
AWSOwnedKey?: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* The ARN of the KMS key to encrypt the collection with
|
|
104
|
+
*/
|
|
105
|
+
KmsKeyArn?: string;
|
|
106
|
+
};
|
|
77
107
|
/**
|
|
78
108
|
* Type definition for `AWS::OpenSearchServerless::Collection.StandbyReplicas`.
|
|
79
109
|
* The possible standby replicas for the collection
|
|
@@ -46,14 +46,6 @@ export type CodeStarParameters = {
|
|
|
46
46
|
export type ConnectionParameters = {
|
|
47
47
|
CodeStar?: CodeStarParameters;
|
|
48
48
|
};
|
|
49
|
-
/**
|
|
50
|
-
* Type definition for `AWS::ServiceCatalog::CloudFormationProduct.Info`.
|
|
51
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-info.html}
|
|
52
|
-
*/
|
|
53
|
-
export type Info = {
|
|
54
|
-
ImportFromPhysicalId?: string;
|
|
55
|
-
LoadTemplateFromURL?: string;
|
|
56
|
-
};
|
|
57
49
|
/**
|
|
58
50
|
* Type definition for `AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties`.
|
|
59
51
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html}
|
|
@@ -61,7 +53,7 @@ export type Info = {
|
|
|
61
53
|
export type ProvisioningArtifactProperties = {
|
|
62
54
|
Description?: string;
|
|
63
55
|
DisableTemplateValidation?: boolean;
|
|
64
|
-
Info:
|
|
56
|
+
Info: Record<string, any>;
|
|
65
57
|
Name?: string;
|
|
66
58
|
Type?: string;
|
|
67
59
|
};
|
|
@@ -0,0 +1,68 @@
|
|
|
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::VpcLattice::DomainVerification`.
|
|
5
|
+
* Creates a Lattice Domain Verification
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-domainverification.html}
|
|
7
|
+
*/
|
|
8
|
+
export type VpcLatticeDomainVerificationProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `3`
|
|
11
|
+
* @maxLength `255`
|
|
12
|
+
*/
|
|
13
|
+
DomainName: string;
|
|
14
|
+
/**
|
|
15
|
+
* @minLength `0`
|
|
16
|
+
* @maxLength `50`
|
|
17
|
+
*/
|
|
18
|
+
Tags?: Tag[];
|
|
19
|
+
};
|
|
20
|
+
/**
|
|
21
|
+
* Attribute type definition for `AWS::VpcLattice::DomainVerification`.
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-domainverification.html#aws-resource-vpclattice-domainverification-return-values}
|
|
23
|
+
*/
|
|
24
|
+
export type VpcLatticeDomainVerificationAttributes = {
|
|
25
|
+
/**
|
|
26
|
+
* @minLength `20`
|
|
27
|
+
* @maxLength `2048`
|
|
28
|
+
* @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:domainverification/dv-[0-9a-z]{17}$`
|
|
29
|
+
*/
|
|
30
|
+
Arn: string;
|
|
31
|
+
/**
|
|
32
|
+
* @minLength `20`
|
|
33
|
+
* @maxLength `2048`
|
|
34
|
+
* @pattern `^((dv-[0-9a-z]{17})|(arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:domainverification/dv-[0-9a-z]{17}))$`
|
|
35
|
+
*/
|
|
36
|
+
Id: string;
|
|
37
|
+
Status: "VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT";
|
|
38
|
+
TxtMethodConfig: {
|
|
39
|
+
name: string;
|
|
40
|
+
value: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::VpcLattice::DomainVerification.Tag`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-domainverification-tag.html}
|
|
46
|
+
*/
|
|
47
|
+
export type Tag = {
|
|
48
|
+
/**
|
|
49
|
+
* @minLength `1`
|
|
50
|
+
* @maxLength `128`
|
|
51
|
+
*/
|
|
52
|
+
Key: string;
|
|
53
|
+
/**
|
|
54
|
+
* @minLength `1`
|
|
55
|
+
* @maxLength `256`
|
|
56
|
+
*/
|
|
57
|
+
Value?: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Resource type definition for `AWS::VpcLattice::DomainVerification`.
|
|
61
|
+
* Creates a Lattice Domain Verification
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-domainverification.html}
|
|
63
|
+
*/
|
|
64
|
+
export declare class VpcLatticeDomainVerification extends $Resource<"AWS::VpcLattice::DomainVerification", VpcLatticeDomainVerificationProperties, VpcLatticeDomainVerificationAttributes> {
|
|
65
|
+
static readonly Type = "AWS::VpcLattice::DomainVerification";
|
|
66
|
+
constructor(logicalId: string, properties: VpcLatticeDomainVerificationProperties, options?: $ResourceOptions);
|
|
67
|
+
}
|
|
68
|
+
//# sourceMappingURL=AWS-VpcLattice-DomainVerification.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::VpcLattice::DomainVerification`.
|
|
4
|
+
* Creates a Lattice Domain Verification
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-domainverification.html}
|
|
6
|
+
*/
|
|
7
|
+
export class VpcLatticeDomainVerification extends $Resource {
|
|
8
|
+
static Type = "AWS::VpcLattice::DomainVerification";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, VpcLatticeDomainVerification.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-VpcLattice-DomainVerification.js.map
|
|
@@ -7,6 +7,22 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
*/
|
|
8
8
|
export type VpcLatticeResourceConfigurationProperties = {
|
|
9
9
|
AllowAssociationToSharableServiceNetwork?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* @minLength `3`
|
|
12
|
+
* @maxLength `255`
|
|
13
|
+
*/
|
|
14
|
+
CustomDomainName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `20`
|
|
17
|
+
* @maxLength `20`
|
|
18
|
+
* @pattern `^dv-[a-fA-F0-9]{17}$`
|
|
19
|
+
*/
|
|
20
|
+
DomainVerificationId?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @minLength `3`
|
|
23
|
+
* @maxLength `255`
|
|
24
|
+
*/
|
|
25
|
+
GroupDomain?: string;
|
|
10
26
|
/**
|
|
11
27
|
* @minLength `3`
|
|
12
28
|
* @maxLength `40`
|
|
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html}
|
|
7
7
|
*/
|
|
8
8
|
export type VpcLatticeServiceNetworkResourceAssociationProperties = {
|
|
9
|
+
PrivateDnsEnabled?: boolean;
|
|
9
10
|
/**
|
|
10
11
|
* @minLength `17`
|
|
11
12
|
* @maxLength `2048`
|
|
@@ -6,6 +6,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkvpcassociation.html}
|
|
7
7
|
*/
|
|
8
8
|
export type VpcLatticeServiceNetworkVpcAssociationProperties = {
|
|
9
|
+
DnsOptions?: DnsOptions;
|
|
10
|
+
PrivateDnsEnabled?: boolean;
|
|
9
11
|
SecurityGroupIds?: string[];
|
|
10
12
|
/**
|
|
11
13
|
* @minLength `20`
|
|
@@ -69,6 +71,18 @@ export type VpcLatticeServiceNetworkVpcAssociationAttributes = {
|
|
|
69
71
|
*/
|
|
70
72
|
VpcId: string;
|
|
71
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::VpcLattice::ServiceNetworkVpcAssociation.DnsOptions`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkvpcassociation-dnsoptions.html}
|
|
77
|
+
*/
|
|
78
|
+
export type DnsOptions = {
|
|
79
|
+
PrivateDnsPreference?: "VERIFIED_DOMAINS_ONLY" | "ALL_DOMAINS" | "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS" | "SPECIFIED_DOMAINS_ONLY";
|
|
80
|
+
/**
|
|
81
|
+
* @minLength `1`
|
|
82
|
+
* @maxLength `10`
|
|
83
|
+
*/
|
|
84
|
+
PrivateDnsSpecifiedDomains?: string[];
|
|
85
|
+
};
|
|
72
86
|
/**
|
|
73
87
|
* Type definition for `AWS::VpcLattice::ServiceNetworkVpcAssociation.Tag`.
|
|
74
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkvpcassociation-tag.html}
|