@awboost/cfn-resource-types 0.1.248 → 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.
@@ -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
@@ -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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.248",
3
+ "version": "0.1.249",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },