@awboost/cfn-resource-types 0.1.287 → 0.1.288

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.
@@ -22,6 +22,10 @@ export type AppSyncDomainNameProperties = {
22
22
  * @pattern `^(\*[a-z\d-]*\.)?([a-z\d-]+\.)+[a-z\d-]+$`
23
23
  */
24
24
  DomainName: string;
25
+ /**
26
+ * An arbitrary set of tags (key-value pairs) for this Domain Name.
27
+ */
28
+ Tags?: Tag[];
25
29
  };
26
30
  /**
27
31
  * Attribute type definition for `AWS::AppSync::DomainName`.
@@ -29,8 +33,33 @@ export type AppSyncDomainNameProperties = {
29
33
  */
30
34
  export type AppSyncDomainNameAttributes = {
31
35
  AppSyncDomainName: string;
36
+ /**
37
+ * The Amazon Resource Name (ARN) for the Domain Name.
38
+ */
39
+ DomainNameArn: string;
32
40
  HostedZoneId: string;
33
41
  };
42
+ /**
43
+ * Type definition for `AWS::AppSync::DomainName.Tag`.
44
+ * An arbitrary set of tags (key-value pairs) for this Domain Name.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-domainname-tag.html}
46
+ */
47
+ export type Tag = {
48
+ /**
49
+ * A string used to identify this 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 -.
50
+ * @minLength `1`
51
+ * @maxLength `128`
52
+ * @pattern `^(?!aws:)[ a-zA-Z+-=._:/]+$`
53
+ */
54
+ Key: string;
55
+ /**
56
+ * A string containing the value for this tag. You can specify a maximum of 256 characters for a tag value.
57
+ * @minLength `0`
58
+ * @maxLength `256`
59
+ * @pattern `^[\s\w+-=\.:/@]*$`
60
+ */
61
+ Value: string;
62
+ };
34
63
  /**
35
64
  * Resource Type definition for AWS::AppSync::DomainName
36
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-domainname.html}
@@ -1,17 +1,25 @@
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
- * Definition of AWS::CloudFront::AnycastIpList Resource Type
4
+ * Resource type definition for `AWS::CloudFront::AnycastIpList`.
5
+ * An Anycast static IP list. For more information, see [Request Anycast static IPs to use for allowlisting](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/request-static-ips.html) in the *Amazon CloudFront Developer Guide*.
5
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html}
6
7
  */
7
8
  export type CloudFrontAnycastIpListProperties = {
9
+ /**
10
+ * The number of IP addresses in the Anycast static IP list.
11
+ */
8
12
  IpCount: number;
9
13
  /**
14
+ * The name of the Anycast static IP list.
10
15
  * @minLength `1`
11
16
  * @maxLength `64`
12
17
  * @pattern `^[a-zA-Z0-9-_]{1,64}$`
13
18
  */
14
19
  Name: string;
20
+ /**
21
+ * A complex type that contains zero or more ``Tag`` elements.
22
+ */
15
23
  Tags?: Tags;
16
24
  };
17
25
  /**
@@ -19,18 +27,40 @@ export type CloudFrontAnycastIpListProperties = {
19
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html#aws-resource-cloudfront-anycastiplist-return-values}
20
28
  */
21
29
  export type CloudFrontAnycastIpListAttributes = {
30
+ /**
31
+ * An Anycast static IP list. For more information, see [Request Anycast static IPs to use for allowlisting](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/request-static-ips.html) in the *Amazon CloudFront Developer Guide*.
32
+ */
22
33
  AnycastIpList: {
34
+ /**
35
+ * The static IP addresses that are allocated to the Anycast static IP list.
36
+ */
23
37
  AnycastIps: string[];
38
+ /**
39
+ * The Amazon Resource Name (ARN) of the Anycast static IP list.
40
+ */
24
41
  Arn: string;
42
+ /**
43
+ * The ID of the Anycast static IP list.
44
+ */
25
45
  Id: string;
46
+ /**
47
+ * The number of IP addresses in the Anycast static IP list.
48
+ */
26
49
  IpCount: number;
50
+ /**
51
+ * The last time the Anycast static IP list was modified.
52
+ */
27
53
  LastModifiedTime: string;
28
54
  /**
55
+ * The name of the Anycast static IP list.
29
56
  * @minLength `1`
30
57
  * @maxLength `64`
31
58
  * @pattern `^[a-zA-Z0-9-_]{1,64}$`
32
59
  */
33
60
  Name: string;
61
+ /**
62
+ * The status of the Anycast static IP list. Valid values: ``Deployed``, ``Deploying``, or ``Failed``.
63
+ */
34
64
  Status: string;
35
65
  };
36
66
  ETag: string;
@@ -38,49 +68,79 @@ export type CloudFrontAnycastIpListAttributes = {
38
68
  };
39
69
  /**
40
70
  * Type definition for `AWS::CloudFront::AnycastIpList.AnycastIpList`.
71
+ * An Anycast static IP list. For more information, see [Request Anycast static IPs to use for allowlisting](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/request-static-ips.html) in the *Amazon CloudFront Developer Guide*.
41
72
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-anycastiplist.html}
42
73
  */
43
74
  export type AnycastIpList = {
75
+ /**
76
+ * The static IP addresses that are allocated to the Anycast static IP list.
77
+ */
44
78
  AnycastIps: string[];
79
+ /**
80
+ * The Amazon Resource Name (ARN) of the Anycast static IP list.
81
+ */
45
82
  Arn: string;
83
+ /**
84
+ * The ID of the Anycast static IP list.
85
+ */
46
86
  Id: string;
87
+ /**
88
+ * The number of IP addresses in the Anycast static IP list.
89
+ */
47
90
  IpCount: number;
91
+ /**
92
+ * The last time the Anycast static IP list was modified.
93
+ */
48
94
  LastModifiedTime: string;
49
95
  /**
96
+ * The name of the Anycast static IP list.
50
97
  * @minLength `1`
51
98
  * @maxLength `64`
52
99
  * @pattern `^[a-zA-Z0-9-_]{1,64}$`
53
100
  */
54
101
  Name: string;
102
+ /**
103
+ * The status of the Anycast static IP list. Valid values: ``Deployed``, ``Deploying``, or ``Failed``.
104
+ */
55
105
  Status: string;
56
106
  };
57
107
  /**
58
108
  * Type definition for `AWS::CloudFront::AnycastIpList.Tag`.
109
+ * A complex type that contains ``Tag`` key and ``Tag`` value.
59
110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-tag.html}
60
111
  */
61
112
  export type Tag = {
62
113
  /**
63
- * @minLength `1`
64
- * @maxLength `128`
65
- * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
66
- */
114
+ * A string that contains ``Tag`` key.
115
+ The string length should be between 1 and 128 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``.
116
+ * @minLength `1`
117
+ * @maxLength `128`
118
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
119
+ */
67
120
  Key: string;
68
121
  /**
69
- * @minLength `0`
70
- * @maxLength `256`
71
- * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
72
- */
122
+ * A string that contains an optional ``Tag`` value.
123
+ The string length should be between 0 and 256 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``.
124
+ * @minLength `0`
125
+ * @maxLength `256`
126
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$`
127
+ */
73
128
  Value?: string;
74
129
  };
75
130
  /**
76
131
  * Type definition for `AWS::CloudFront::AnycastIpList.Tags`.
132
+ * A complex type that contains zero or more ``Tag`` elements.
77
133
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-tags.html}
78
134
  */
79
135
  export type Tags = {
136
+ /**
137
+ * A complex type that contains ``Tag`` elements.
138
+ */
80
139
  Items?: Tag[];
81
140
  };
82
141
  /**
83
- * Definition of AWS::CloudFront::AnycastIpList Resource Type
142
+ * Resource type definition for `AWS::CloudFront::AnycastIpList`.
143
+ * An Anycast static IP list. For more information, see [Request Anycast static IPs to use for allowlisting](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/request-static-ips.html) in the *Amazon CloudFront Developer Guide*.
84
144
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html}
85
145
  */
86
146
  export declare class CloudFrontAnycastIpList extends $Resource<"AWS::CloudFront::AnycastIpList", CloudFrontAnycastIpListProperties, CloudFrontAnycastIpListAttributes> {
@@ -1,6 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Definition of AWS::CloudFront::AnycastIpList Resource Type
3
+ * Resource type definition for `AWS::CloudFront::AnycastIpList`.
4
+ * An Anycast static IP list. For more information, see [Request Anycast static IPs to use for allowlisting](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/request-static-ips.html) in the *Amazon CloudFront Developer Guide*.
4
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-anycastiplist.html}
5
6
  */
6
7
  export class CloudFrontAnycastIpList extends $Resource {
@@ -376,6 +376,9 @@ export type DistributionConfig = {
376
376
  * A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
377
377
  */
378
378
  Aliases?: string[];
379
+ /**
380
+ * ID of the Anycast static IP list that is associated with the distribution.
381
+ */
379
382
  AnycastIpListId?: string;
380
383
  /**
381
384
  * An alias for the CF distribution's domain name.
@@ -671,6 +674,7 @@ export type Logging = {
671
674
  * An origin.
672
675
  An origin is the location where content is stored, and from which CloudFront gets content to serve to viewers. To specify an origin:
673
676
  + Use ``S3OriginConfig`` to specify an Amazon S3 bucket that is not configured with static website hosting.
677
+ + Use ``VpcOriginConfig`` to specify a VPC origin.
674
678
  + Use ``CustomOriginConfig`` to specify all other kinds of origins, including:
675
679
  + An Amazon S3 bucket that is configured with static website hosting
676
680
  + An Elastic Load Balancing load balancer
@@ -732,6 +736,9 @@ export type Origin = {
732
736
  * Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the ``CustomOriginConfig`` type instead.
733
737
  */
734
738
  S3OriginConfig?: S3OriginConfig;
739
+ /**
740
+ * The VPC origin configuration.
741
+ */
735
742
  VpcOriginConfig?: VpcOriginConfig;
736
743
  };
737
744
  /**
@@ -974,11 +981,23 @@ export type ViewerCertificate = {
974
981
  };
975
982
  /**
976
983
  * Type definition for `AWS::CloudFront::Distribution.VpcOriginConfig`.
984
+ * An Amazon CloudFront VPC origin configuration.
977
985
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-vpcoriginconfig.html}
978
986
  */
979
987
  export type VpcOriginConfig = {
988
+ /**
989
+ * Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 5 seconds.
990
+ For more information, see [Keep-alive timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginKeepaliveTimeout) in the *Amazon CloudFront Developer Guide*.
991
+ */
980
992
  OriginKeepaliveTimeout?: number;
993
+ /**
994
+ * Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout*. The minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't specify otherwise) is 30 seconds.
995
+ For more information, see [Response timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*.
996
+ */
981
997
  OriginReadTimeout?: number;
998
+ /**
999
+ * The VPC origin ID.
1000
+ */
982
1001
  VpcOriginId: string;
983
1002
  };
984
1003
  /**
@@ -1,11 +1,18 @@
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::CloudFront::VpcOrigin
4
+ * Resource type definition for `AWS::CloudFront::VpcOrigin`.
5
+ * An Amazon CloudFront VPC origin.
5
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html}
6
7
  */
7
8
  export type CloudFrontVpcOriginProperties = {
9
+ /**
10
+ * A complex type that contains zero or more ``Tag`` elements.
11
+ */
8
12
  Tags?: Tag[];
13
+ /**
14
+ * The VPC origin endpoint configuration.
15
+ */
9
16
  VpcOriginEndpointConfig: VpcOriginEndpointConfig;
10
17
  };
11
18
  /**
@@ -21,26 +28,52 @@ export type CloudFrontVpcOriginAttributes = {
21
28
  };
22
29
  /**
23
30
  * Type definition for `AWS::CloudFront::VpcOrigin.Tag`.
31
+ * A complex type that contains ``Tag`` key and ``Tag`` value.
24
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-vpcorigin-tag.html}
25
33
  */
26
34
  export type Tag = {
35
+ /**
36
+ * A string that contains ``Tag`` key.
37
+ The string length should be between 1 and 128 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``.
38
+ */
27
39
  Key: string;
40
+ /**
41
+ * A string that contains an optional ``Tag`` value.
42
+ The string length should be between 0 and 256 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``.
43
+ */
28
44
  Value: string;
29
45
  };
30
46
  /**
31
47
  * Type definition for `AWS::CloudFront::VpcOrigin.VpcOriginEndpointConfig`.
48
+ * An Amazon CloudFront VPC origin endpoint configuration.
32
49
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-vpcorigin-vpcoriginendpointconfig.html}
33
50
  */
34
51
  export type VpcOriginEndpointConfig = {
52
+ /**
53
+ * The ARN of the CloudFront VPC origin endpoint configuration.
54
+ */
35
55
  Arn: string;
56
+ /**
57
+ * The HTTP port for the CloudFront VPC origin endpoint configuration. The default value is ``80``.
58
+ */
36
59
  HTTPPort?: number;
60
+ /**
61
+ * The HTTPS port of the CloudFront VPC origin endpoint configuration. The default value is ``443``.
62
+ */
37
63
  HTTPSPort?: number;
64
+ /**
65
+ * The name of the CloudFront VPC origin endpoint configuration.
66
+ */
38
67
  Name: string;
68
+ /**
69
+ * The origin protocol policy for the CloudFront VPC origin endpoint configuration.
70
+ */
39
71
  OriginProtocolPolicy?: string;
40
72
  OriginSSLProtocols?: string[];
41
73
  };
42
74
  /**
43
- * Resource Type definition for AWS::CloudFront::VpcOrigin
75
+ * Resource type definition for `AWS::CloudFront::VpcOrigin`.
76
+ * An Amazon CloudFront VPC origin.
44
77
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html}
45
78
  */
46
79
  export declare class CloudFrontVpcOrigin extends $Resource<"AWS::CloudFront::VpcOrigin", CloudFrontVpcOriginProperties, CloudFrontVpcOriginAttributes> {
@@ -1,6 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::CloudFront::VpcOrigin
3
+ * Resource type definition for `AWS::CloudFront::VpcOrigin`.
4
+ * An Amazon CloudFront VPC origin.
4
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-vpcorigin.html}
5
6
  */
6
7
  export class CloudFrontVpcOrigin extends $Resource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.287",
3
+ "version": "0.1.288",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },