@awboost/cfn-resource-types 0.1.60 → 0.1.62
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-AppIntegrations-Application.d.ts +2 -2
- package/lib/AWS-DataZone-DataSource.d.ts +8 -2
- package/lib/AWS-DataZone-DataSource.js +2 -1
- package/lib/AWS-Deadline-Fleet.d.ts +1 -1
- package/lib/AWS-EC2-CustomerGateway.d.ts +6 -1
- package/lib/AWS-Lambda-Alias.d.ts +37 -1
- package/lib/AWS-VpcLattice-Listener.d.ts +1 -1
- package/lib/AWS-VpcLattice-Rule.d.ts +1 -1
- package/lib/AWS-VpcLattice-TargetGroup.d.ts +1 -1
- package/lib/AWS-WorkSpacesThinClient-Environment.d.ts +1 -1
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@ export type AppIntegrationsApplicationProperties = {
|
|
|
22
22
|
* The name of the application.
|
|
23
23
|
* @minLength `1`
|
|
24
24
|
* @maxLength `255`
|
|
25
|
-
* @pattern `^[a-zA-Z0-9
|
|
25
|
+
* @pattern `^[a-zA-Z0-9\/\._ \-]+$`
|
|
26
26
|
*/
|
|
27
27
|
Name: string;
|
|
28
28
|
/**
|
|
@@ -80,7 +80,7 @@ export type ExternalUrlConfig = {
|
|
|
80
80
|
* @minLength `0`
|
|
81
81
|
* @maxLength `50`
|
|
82
82
|
*/
|
|
83
|
-
ApprovedOrigins
|
|
83
|
+
ApprovedOrigins?: string[];
|
|
84
84
|
};
|
|
85
85
|
/**
|
|
86
86
|
* Type definition for `AWS::AppIntegrations::Application.Tag`.
|
|
@@ -1,7 +1,8 @@
|
|
|
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
|
-
*
|
|
4
|
+
* Resource type definition for `AWS::DataZone::DataSource`.
|
|
5
|
+
* A data source is used to import technical metadata of assets (data) from the source databases or data warehouses into Amazon DataZone.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html}
|
|
6
7
|
*/
|
|
7
8
|
export type DataZoneDataSourceProperties = {
|
|
@@ -196,6 +197,10 @@ export type FormInput = {
|
|
|
196
197
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-gluerunconfigurationinput.html}
|
|
197
198
|
*/
|
|
198
199
|
export type GlueRunConfigurationInput = {
|
|
200
|
+
/**
|
|
201
|
+
* Specifies whether to automatically import data quality metrics as part of the data source run.
|
|
202
|
+
*/
|
|
203
|
+
AutoImportDataQualityResult?: boolean;
|
|
199
204
|
/**
|
|
200
205
|
* The data access role included in the configuration details of the AWS Glue data source.
|
|
201
206
|
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]{1,128}$`
|
|
@@ -340,7 +345,8 @@ export type ScheduleConfiguration = {
|
|
|
340
345
|
Timezone?: string;
|
|
341
346
|
};
|
|
342
347
|
/**
|
|
343
|
-
*
|
|
348
|
+
* Resource type definition for `AWS::DataZone::DataSource`.
|
|
349
|
+
* A data source is used to import technical metadata of assets (data) from the source databases or data warehouses into Amazon DataZone.
|
|
344
350
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html}
|
|
345
351
|
*/
|
|
346
352
|
export declare class DataZoneDataSource extends $Resource<"AWS::DataZone::DataSource", DataZoneDataSourceProperties, DataZoneDataSourceAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource type definition for `AWS::DataZone::DataSource`.
|
|
4
|
+
* A data source is used to import technical metadata of assets (data) from the source databases or data warehouses into Amazon DataZone.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html}
|
|
5
6
|
*/
|
|
6
7
|
export class DataZoneDataSource extends $Resource {
|
|
@@ -320,7 +320,7 @@ export type ServiceManagedEc2InstanceMarketOptions = {
|
|
|
320
320
|
* Type definition for `AWS::Deadline::Fleet.ServiceManagedFleetOperatingSystemFamily`.
|
|
321
321
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedfleetoperatingsystemfamily.html}
|
|
322
322
|
*/
|
|
323
|
-
export type ServiceManagedFleetOperatingSystemFamily = "
|
|
323
|
+
export type ServiceManagedFleetOperatingSystemFamily = "LINUX";
|
|
324
324
|
/**
|
|
325
325
|
* Type definition for `AWS::Deadline::Fleet.VCpuCountRange`.
|
|
326
326
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-vcpucountrange.html}
|
|
@@ -10,7 +10,12 @@ export type EC2CustomerGatewayProperties = {
|
|
|
10
10
|
* For devices that support BGP, the customer gateway's BGP ASN.
|
|
11
11
|
Default: 65000
|
|
12
12
|
*/
|
|
13
|
-
BgpAsn
|
|
13
|
+
BgpAsn?: number;
|
|
14
|
+
/**
|
|
15
|
+
* @min `2147483648`
|
|
16
|
+
* @max `4294967294`
|
|
17
|
+
*/
|
|
18
|
+
BgpAsnExtended?: number;
|
|
14
19
|
/**
|
|
15
20
|
* @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\d{1}:\d{12}:certificate\/[a-zA-Z0-9-_]+$`
|
|
16
21
|
*/
|
|
@@ -5,11 +5,29 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html}
|
|
6
6
|
*/
|
|
7
7
|
export type LambdaAliasProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* A description of the alias.
|
|
10
|
+
*/
|
|
8
11
|
Description?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The name of the Lambda function.
|
|
14
|
+
*/
|
|
9
15
|
FunctionName: string;
|
|
16
|
+
/**
|
|
17
|
+
* The function version that the alias invokes.
|
|
18
|
+
*/
|
|
10
19
|
FunctionVersion: string;
|
|
20
|
+
/**
|
|
21
|
+
* The name of the alias.
|
|
22
|
+
*/
|
|
11
23
|
Name: string;
|
|
24
|
+
/**
|
|
25
|
+
* Specifies a provisioned concurrency configuration for a function's alias.
|
|
26
|
+
*/
|
|
12
27
|
ProvisionedConcurrencyConfig?: ProvisionedConcurrencyConfiguration;
|
|
28
|
+
/**
|
|
29
|
+
* The routing configuration of the alias.
|
|
30
|
+
*/
|
|
13
31
|
RoutingConfig?: AliasRoutingConfiguration;
|
|
14
32
|
};
|
|
15
33
|
/**
|
|
@@ -17,28 +35,46 @@ export type LambdaAliasProperties = {
|
|
|
17
35
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#aws-resource-lambda-alias-return-values}
|
|
18
36
|
*/
|
|
19
37
|
export type LambdaAliasAttributes = {
|
|
20
|
-
|
|
38
|
+
/**
|
|
39
|
+
* Lambda Alias ARN generated by the service.
|
|
40
|
+
*/
|
|
41
|
+
AliasArn: string;
|
|
21
42
|
};
|
|
22
43
|
/**
|
|
23
44
|
* Type definition for `AWS::Lambda::Alias.AliasRoutingConfiguration`.
|
|
45
|
+
* The traffic-shifting configuration of a Lambda function alias.
|
|
24
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-aliasroutingconfiguration.html}
|
|
25
47
|
*/
|
|
26
48
|
export type AliasRoutingConfiguration = {
|
|
49
|
+
/**
|
|
50
|
+
* The second version, and the percentage of traffic that's routed to it.
|
|
51
|
+
*/
|
|
27
52
|
AdditionalVersionWeights: VersionWeight[];
|
|
28
53
|
};
|
|
29
54
|
/**
|
|
30
55
|
* Type definition for `AWS::Lambda::Alias.ProvisionedConcurrencyConfiguration`.
|
|
56
|
+
* A provisioned concurrency configuration for a function's alias.
|
|
31
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html}
|
|
32
58
|
*/
|
|
33
59
|
export type ProvisionedConcurrencyConfiguration = {
|
|
60
|
+
/**
|
|
61
|
+
* The amount of provisioned concurrency to allocate for the alias.
|
|
62
|
+
*/
|
|
34
63
|
ProvisionedConcurrentExecutions: number;
|
|
35
64
|
};
|
|
36
65
|
/**
|
|
37
66
|
* Type definition for `AWS::Lambda::Alias.VersionWeight`.
|
|
67
|
+
* The traffic-shifting configuration of a Lambda function alias.
|
|
38
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-versionweight.html}
|
|
39
69
|
*/
|
|
40
70
|
export type VersionWeight = {
|
|
71
|
+
/**
|
|
72
|
+
* The qualifier of the second version.
|
|
73
|
+
*/
|
|
41
74
|
FunctionVersion: string;
|
|
75
|
+
/**
|
|
76
|
+
* The percentage of traffic that the alias routes to the second version.
|
|
77
|
+
*/
|
|
42
78
|
FunctionWeight: number;
|
|
43
79
|
};
|
|
44
80
|
/**
|
|
@@ -52,7 +52,7 @@ export type WorkSpacesThinClientEnvironmentProperties = {
|
|
|
52
52
|
SoftwareSetUpdateSchedule?: "USE_MAINTENANCE_WINDOW" | "APPLY_IMMEDIATELY";
|
|
53
53
|
/**
|
|
54
54
|
* An array of key-value pairs to apply to this resource.
|
|
55
|
-
* @maxLength `
|
|
55
|
+
* @maxLength `50`
|
|
56
56
|
*/
|
|
57
57
|
Tags?: Tag[];
|
|
58
58
|
};
|