@awboost/cfn-resource-types 0.1.247 → 0.1.249
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-CloudFront-VpcOrigin.d.ts +50 -0
- package/lib/AWS-CloudFront-VpcOrigin.js +12 -0
- package/lib/AWS-DataZone-DataSource.d.ts +17 -4
- package/lib/AWS-DynamoDB-Table.d.ts +1 -0
- package/lib/AWS-Glue-Connection.d.ts +64 -0
- package/lib/AWS-Glue-TableOptimizer.d.ts +32 -0
- package/lib/AWS-IoTFleetWise-StateTemplate.d.ts +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,50 @@
|
|
|
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::CloudFront::VpcOrigin
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html}
|
|
6
|
+
*/
|
|
7
|
+
export type CloudFrontVpcOriginProperties = {
|
|
8
|
+
Tags?: Tag[];
|
|
9
|
+
VpcOriginEndpointConfig: VpcOriginEndpointConfig;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Attribute type definition for `AWS::CloudFront::VpcOrigin`.
|
|
13
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html#aws-resource-cloudfront-vpcorigin-return-values}
|
|
14
|
+
*/
|
|
15
|
+
export type CloudFrontVpcOriginAttributes = {
|
|
16
|
+
Arn: string;
|
|
17
|
+
CreatedTime: string;
|
|
18
|
+
Id: string;
|
|
19
|
+
LastModifiedTime: string;
|
|
20
|
+
Status: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Type definition for `AWS::CloudFront::VpcOrigin.Tag`.
|
|
24
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-vpcorigin-tag.html}
|
|
25
|
+
*/
|
|
26
|
+
export type Tag = {
|
|
27
|
+
Key: string;
|
|
28
|
+
Value: string;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Type definition for `AWS::CloudFront::VpcOrigin.VpcOriginEndpointConfig`.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-vpcorigin-vpcoriginendpointconfig.html}
|
|
33
|
+
*/
|
|
34
|
+
export type VpcOriginEndpointConfig = {
|
|
35
|
+
Arn: string;
|
|
36
|
+
HTTPPort?: number;
|
|
37
|
+
HTTPSPort?: number;
|
|
38
|
+
Name: string;
|
|
39
|
+
OriginProtocolPolicy?: string;
|
|
40
|
+
OriginSSLProtocols?: string[];
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Resource Type definition for AWS::CloudFront::VpcOrigin
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html}
|
|
45
|
+
*/
|
|
46
|
+
export declare class CloudFrontVpcOrigin extends $Resource<"AWS::CloudFront::VpcOrigin", CloudFrontVpcOriginProperties, CloudFrontVpcOriginAttributes> {
|
|
47
|
+
static readonly Type = "AWS::CloudFront::VpcOrigin";
|
|
48
|
+
constructor(logicalId: string, properties: CloudFrontVpcOriginProperties, options?: $ResourceOptions);
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=AWS-CloudFront-VpcOrigin.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::CloudFront::VpcOrigin
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html}
|
|
5
|
+
*/
|
|
6
|
+
export class CloudFrontVpcOrigin extends $Resource {
|
|
7
|
+
static Type = "AWS::CloudFront::VpcOrigin";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, CloudFrontVpcOrigin.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-CloudFront-VpcOrigin.js.map
|
|
@@ -16,6 +16,10 @@ export type DataZoneDataSourceProperties = {
|
|
|
16
16
|
* Configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
|
|
17
17
|
*/
|
|
18
18
|
Configuration?: DataSourceConfigurationInput;
|
|
19
|
+
/**
|
|
20
|
+
* The unique identifier of a connection used to fetch relevant parameters from connection during Datasource run
|
|
21
|
+
*/
|
|
22
|
+
ConnectionIdentifier?: string;
|
|
19
23
|
/**
|
|
20
24
|
* The description of the data source.
|
|
21
25
|
* @maxLength `2048`
|
|
@@ -33,7 +37,7 @@ export type DataZoneDataSourceProperties = {
|
|
|
33
37
|
/**
|
|
34
38
|
* The unique identifier of the Amazon DataZone environment to which the data source publishes assets.
|
|
35
39
|
*/
|
|
36
|
-
EnvironmentIdentifier
|
|
40
|
+
EnvironmentIdentifier?: string;
|
|
37
41
|
/**
|
|
38
42
|
* The name of the data source.
|
|
39
43
|
* @minLength `1`
|
|
@@ -68,6 +72,10 @@ export type DataZoneDataSourceProperties = {
|
|
|
68
72
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-datasource.html#aws-resource-datazone-datasource-return-values}
|
|
69
73
|
*/
|
|
70
74
|
export type DataZoneDataSourceAttributes = {
|
|
75
|
+
/**
|
|
76
|
+
* The unique identifier of a connection used to fetch relevant parameters from connection during Datasource run
|
|
77
|
+
*/
|
|
78
|
+
ConnectionId: string;
|
|
71
79
|
/**
|
|
72
80
|
* The timestamp of when the data source was created.
|
|
73
81
|
*/
|
|
@@ -79,7 +87,6 @@ export type DataZoneDataSourceAttributes = {
|
|
|
79
87
|
DomainId: string;
|
|
80
88
|
/**
|
|
81
89
|
* The unique identifier of the Amazon DataZone environment to which the data source publishes assets.
|
|
82
|
-
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
83
90
|
*/
|
|
84
91
|
EnvironmentId: string;
|
|
85
92
|
/**
|
|
@@ -206,6 +213,12 @@ export type GlueRunConfigurationInput = {
|
|
|
206
213
|
* Specifies whether to automatically import data quality metrics as part of the data source run.
|
|
207
214
|
*/
|
|
208
215
|
AutoImportDataQualityResult?: boolean;
|
|
216
|
+
/**
|
|
217
|
+
* The catalog name in the AWS Glue run configuration.
|
|
218
|
+
* @minLength `1`
|
|
219
|
+
* @maxLength `128`
|
|
220
|
+
*/
|
|
221
|
+
CatalogName?: string;
|
|
209
222
|
/**
|
|
210
223
|
* The data access role included in the configuration details of the AWS Glue data source.
|
|
211
224
|
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]{1,128}$`
|
|
@@ -268,11 +281,11 @@ export type RedshiftRunConfigurationInput = {
|
|
|
268
281
|
/**
|
|
269
282
|
* The details of the credentials required to access an Amazon Redshift cluster.
|
|
270
283
|
*/
|
|
271
|
-
RedshiftCredentialConfiguration
|
|
284
|
+
RedshiftCredentialConfiguration?: RedshiftCredentialConfiguration;
|
|
272
285
|
/**
|
|
273
286
|
* The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
|
|
274
287
|
*/
|
|
275
|
-
RedshiftStorage
|
|
288
|
+
RedshiftStorage?: RedshiftStorage;
|
|
276
289
|
/**
|
|
277
290
|
* The relational filter configurations included in the configuration details of the Amazon Redshift data source.
|
|
278
291
|
*/
|
|
@@ -327,6 +327,7 @@ export type PointInTimeRecoverySpecification = {
|
|
|
327
327
|
*/
|
|
328
328
|
PointInTimeRecoveryEnabled?: boolean;
|
|
329
329
|
/**
|
|
330
|
+
* The number of preceding days for which continuous backups are taken and maintained. Your table data is only recoverable to any point-in-time from within the configured recovery period. This parameter is optional. If no value is provided, the value will default to 35.
|
|
330
331
|
* @min `1`
|
|
331
332
|
* @max `35`
|
|
332
333
|
*/
|
|
@@ -15,17 +15,81 @@ export type GlueConnectionProperties = {
|
|
|
15
15
|
export type GlueConnectionAttributes = {
|
|
16
16
|
Id: string;
|
|
17
17
|
};
|
|
18
|
+
/**
|
|
19
|
+
* Type definition for `AWS::Glue::Connection.AuthenticationConfigurationInput`.
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-authenticationconfigurationinput.html}
|
|
21
|
+
*/
|
|
22
|
+
export type AuthenticationConfigurationInput = {
|
|
23
|
+
AuthenticationType: string;
|
|
24
|
+
BasicAuthenticationCredentials?: BasicAuthenticationCredentials;
|
|
25
|
+
CustomAuthenticationCredentials?: Record<string, any>;
|
|
26
|
+
KmsKeyArn?: string;
|
|
27
|
+
OAuth2Properties?: OAuth2PropertiesInput;
|
|
28
|
+
SecretArn?: string;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* Type definition for `AWS::Glue::Connection.AuthorizationCodeProperties`.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-authorizationcodeproperties.html}
|
|
33
|
+
*/
|
|
34
|
+
export type AuthorizationCodeProperties = {
|
|
35
|
+
AuthorizationCode?: string;
|
|
36
|
+
RedirectUri?: string;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Type definition for `AWS::Glue::Connection.BasicAuthenticationCredentials`.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-basicauthenticationcredentials.html}
|
|
41
|
+
*/
|
|
42
|
+
export type BasicAuthenticationCredentials = {
|
|
43
|
+
Password?: string;
|
|
44
|
+
Username?: string;
|
|
45
|
+
};
|
|
18
46
|
/**
|
|
19
47
|
* Type definition for `AWS::Glue::Connection.ConnectionInput`.
|
|
20
48
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html}
|
|
21
49
|
*/
|
|
22
50
|
export type ConnectionInput = {
|
|
51
|
+
AthenaProperties?: Record<string, any>;
|
|
52
|
+
AuthenticationConfiguration?: AuthenticationConfigurationInput;
|
|
23
53
|
ConnectionProperties?: Record<string, any>;
|
|
24
54
|
ConnectionType: string;
|
|
25
55
|
Description?: string;
|
|
26
56
|
MatchCriteria?: string[];
|
|
27
57
|
Name?: string;
|
|
28
58
|
PhysicalConnectionRequirements?: PhysicalConnectionRequirements;
|
|
59
|
+
PythonProperties?: Record<string, any>;
|
|
60
|
+
SparkProperties?: Record<string, any>;
|
|
61
|
+
ValidateCredentials?: boolean;
|
|
62
|
+
ValidateForComputeEnvironments?: string[];
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* Type definition for `AWS::Glue::Connection.OAuth2ClientApplication`.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-oauth2clientapplication.html}
|
|
67
|
+
*/
|
|
68
|
+
export type OAuth2ClientApplication = {
|
|
69
|
+
AWSManagedClientApplicationReference?: string;
|
|
70
|
+
UserManagedClientApplicationClientId?: string;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Type definition for `AWS::Glue::Connection.OAuth2Credentials`.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-oauth2credentials.html}
|
|
75
|
+
*/
|
|
76
|
+
export type OAuth2Credentials = {
|
|
77
|
+
AccessToken?: string;
|
|
78
|
+
JwtToken?: string;
|
|
79
|
+
RefreshToken?: string;
|
|
80
|
+
UserManagedClientApplicationClientSecret?: string;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Type definition for `AWS::Glue::Connection.OAuth2PropertiesInput`.
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-oauth2propertiesinput.html}
|
|
85
|
+
*/
|
|
86
|
+
export type OAuth2PropertiesInput = {
|
|
87
|
+
AuthorizationCodeProperties?: AuthorizationCodeProperties;
|
|
88
|
+
OAuth2ClientApplication?: OAuth2ClientApplication;
|
|
89
|
+
OAuth2Credentials?: OAuth2Credentials;
|
|
90
|
+
OAuth2GrantType?: string;
|
|
91
|
+
TokenUrl?: string;
|
|
92
|
+
TokenUrlParametersMap?: Record<string, any>;
|
|
29
93
|
};
|
|
30
94
|
/**
|
|
31
95
|
* Type definition for `AWS::Glue::Connection.PhysicalConnectionRequirements`.
|
|
@@ -18,13 +18,45 @@ export type GlueTableOptimizerProperties = {
|
|
|
18
18
|
export type GlueTableOptimizerAttributes = {
|
|
19
19
|
Id: string;
|
|
20
20
|
};
|
|
21
|
+
/**
|
|
22
|
+
* Type definition for `AWS::Glue::TableOptimizer.IcebergConfiguration`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-icebergconfiguration.html}
|
|
24
|
+
*/
|
|
25
|
+
export type IcebergConfiguration = {
|
|
26
|
+
Location?: string;
|
|
27
|
+
OrphanFileRetentionPeriodInDays?: number;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Type definition for `AWS::Glue::TableOptimizer.OrphanFileDeletionConfiguration`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-orphanfiledeletionconfiguration.html}
|
|
32
|
+
*/
|
|
33
|
+
export type OrphanFileDeletionConfiguration = {
|
|
34
|
+
IcebergConfiguration?: IcebergConfiguration;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Type definition for `AWS::Glue::TableOptimizer.RetentionConfiguration`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-retentionconfiguration.html}
|
|
39
|
+
*/
|
|
40
|
+
export type RetentionConfiguration = {
|
|
41
|
+
IcebergConfiguration?: IcebergConfiguration;
|
|
42
|
+
};
|
|
21
43
|
/**
|
|
22
44
|
* Type definition for `AWS::Glue::TableOptimizer.TableOptimizerConfiguration`.
|
|
23
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-tableoptimizerconfiguration.html}
|
|
24
46
|
*/
|
|
25
47
|
export type TableOptimizerConfiguration = {
|
|
26
48
|
Enabled: boolean;
|
|
49
|
+
OrphanFileDeletionConfiguration?: OrphanFileDeletionConfiguration;
|
|
50
|
+
RetentionConfiguration?: RetentionConfiguration;
|
|
27
51
|
RoleArn: string;
|
|
52
|
+
VpcConfiguration?: VpcConfiguration;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Type definition for `AWS::Glue::TableOptimizer.VpcConfiguration`.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-vpcconfiguration.html}
|
|
57
|
+
*/
|
|
58
|
+
export type VpcConfiguration = {
|
|
59
|
+
GlueConnectionName?: string;
|
|
28
60
|
};
|
|
29
61
|
/**
|
|
30
62
|
* Resource Type definition for AWS::Glue::TableOptimizer
|
|
@@ -46,6 +46,12 @@ export type IoTFleetWiseStateTemplateProperties = {
|
|
|
46
46
|
export type IoTFleetWiseStateTemplateAttributes = {
|
|
47
47
|
Arn: string;
|
|
48
48
|
CreationTime: string;
|
|
49
|
+
/**
|
|
50
|
+
* @minLength `26`
|
|
51
|
+
* @maxLength `26`
|
|
52
|
+
* @pattern `^[A-Z0-9]+$`
|
|
53
|
+
*/
|
|
54
|
+
Id: string;
|
|
49
55
|
LastModificationTime: string;
|
|
50
56
|
};
|
|
51
57
|
/**
|