@awboost/cfn-resource-types 0.1.492 → 0.1.494

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,55 @@
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::Connect::DataTableRecord
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
6
+ */
7
+ export type ConnectDataTableRecordProperties = {
8
+ /**
9
+ * @minLength `1`
10
+ * @maxLength `2048`
11
+ */
12
+ DataTableArn?: string;
13
+ DataTableRecord?: {
14
+ PrimaryValues?: Value[];
15
+ Values: Value[];
16
+ };
17
+ /**
18
+ * @minLength `1`
19
+ * @maxLength `100`
20
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
21
+ */
22
+ InstanceArn?: string;
23
+ };
24
+ /**
25
+ * Attribute type definition for `AWS::Connect::DataTableRecord`.
26
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html#aws-resource-connect-datatablerecord-return-values}
27
+ */
28
+ export type ConnectDataTableRecordAttributes = {
29
+ /**
30
+ * @minLength `1`
31
+ * @maxLength `256`
32
+ */
33
+ RecordId: string;
34
+ };
35
+ /**
36
+ * Type definition for `AWS::Connect::DataTableRecord.Value`.
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatablerecord-value.html}
38
+ */
39
+ export type Value = {
40
+ /**
41
+ * @minLength `1`
42
+ * @maxLength `256`
43
+ */
44
+ AttributeId?: string;
45
+ AttributeValue?: string;
46
+ };
47
+ /**
48
+ * Resource Type definition for AWS::Connect::DataTableRecord
49
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
50
+ */
51
+ export declare class ConnectDataTableRecord extends $Resource<"AWS::Connect::DataTableRecord", ConnectDataTableRecordProperties, ConnectDataTableRecordAttributes> {
52
+ static readonly Type = "AWS::Connect::DataTableRecord";
53
+ constructor(logicalId: string, properties: ConnectDataTableRecordProperties, options?: $ResourceOptions);
54
+ }
55
+ //# sourceMappingURL=AWS-Connect-DataTableRecord.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::Connect::DataTableRecord
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
5
+ */
6
+ export class ConnectDataTableRecord extends $Resource {
7
+ static Type = "AWS::Connect::DataTableRecord";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ConnectDataTableRecord.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Connect-DataTableRecord.js.map
@@ -48,7 +48,7 @@ export type GameLiftScriptAttributes = {
48
48
  Id: string;
49
49
  /**
50
50
  * The file size of the uploaded Realtime script, expressed in bytes. When files are uploaded from an S3 location, this value remains at "0".
51
- * @min `1`
51
+ * @min `0`
52
52
  */
53
53
  SizeOnDisk: number;
54
54
  };
@@ -0,0 +1,49 @@
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::IdentityCenterConfiguration
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
6
+ */
7
+ export type GlueIdentityCenterConfigurationProperties = {
8
+ /**
9
+ * The IAM identity center instance arn
10
+ * @minLength `10`
11
+ * @maxLength `1224`
12
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
13
+ */
14
+ InstanceArn: string;
15
+ /**
16
+ * The downstream scopes that Glue identity center configuration can access
17
+ */
18
+ Scopes?: string[];
19
+ /**
20
+ * Enable or disable user background sessions for Glue Identity Center
21
+ */
22
+ UserBackgroundSessionsEnabled?: boolean;
23
+ };
24
+ /**
25
+ * Attribute type definition for `AWS::Glue::IdentityCenterConfiguration`.
26
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html#aws-resource-glue-identitycenterconfiguration-return-values}
27
+ */
28
+ export type GlueIdentityCenterConfigurationAttributes = {
29
+ /**
30
+ * The identifier for the specified AWS account.
31
+ */
32
+ AccountId: string;
33
+ /**
34
+ * The Glue IAM identity center application arn
35
+ * @minLength `10`
36
+ * @maxLength `1224`
37
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::\d{12}:application/(sso)?ins-[a-zA-Z0-9-.]{16}/apl-[a-zA-Z0-9]{16}$`
38
+ */
39
+ ApplicationArn: string;
40
+ };
41
+ /**
42
+ * Resource Type definition for AWS::Glue::IdentityCenterConfiguration
43
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
44
+ */
45
+ export declare class GlueIdentityCenterConfiguration extends $Resource<"AWS::Glue::IdentityCenterConfiguration", GlueIdentityCenterConfigurationProperties, GlueIdentityCenterConfigurationAttributes> {
46
+ static readonly Type = "AWS::Glue::IdentityCenterConfiguration";
47
+ constructor(logicalId: string, properties: GlueIdentityCenterConfigurationProperties, options?: $ResourceOptions);
48
+ }
49
+ //# sourceMappingURL=AWS-Glue-IdentityCenterConfiguration.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::IdentityCenterConfiguration
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-identitycenterconfiguration.html}
5
+ */
6
+ export class GlueIdentityCenterConfiguration extends $Resource {
7
+ static Type = "AWS::Glue::IdentityCenterConfiguration";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, GlueIdentityCenterConfiguration.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Glue-IdentityCenterConfiguration.js.map
@@ -1,36 +1,13 @@
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 schema for AWS::IoTFleetHub::Application
4
+ * Resource Type definition for AWS::IoTFleetHub::Application
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html}
6
6
  */
7
7
  export type IoTFleetHubApplicationProperties = {
8
- /**
9
- * Application Description, should be between 1 and 2048 characters.
10
- * @minLength `1`
11
- * @maxLength `2048`
12
- * @pattern `^[ -~]*$`
13
- */
14
8
  ApplicationDescription?: string;
15
- /**
16
- * Application Name, should be between 1 and 256 characters.
17
- * @minLength `1`
18
- * @maxLength `256`
19
- * @pattern `^[ -~]*$`
20
- */
21
9
  ApplicationName: string;
22
- /**
23
- * The ARN of the role that the web application assumes when it interacts with AWS IoT Core. For more info on configuring this attribute, see https://docs.aws.amazon.com/iot/latest/apireference/API_iotfleethub_CreateApplication.html#API_iotfleethub_CreateApplication_RequestSyntax
24
- * @minLength `1`
25
- * @maxLength `1600`
26
- * @pattern `^arn:[!-~]+$`
27
- */
28
10
  RoleArn: string;
29
- /**
30
- * A list of key-value pairs that contain metadata for the application.
31
- * @minLength `0`
32
- * @maxLength `50`
33
- */
34
11
  Tags?: Tag[];
35
12
  };
36
13
  /**
@@ -38,66 +15,25 @@ export type IoTFleetHubApplicationProperties = {
38
15
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#aws-resource-iotfleethub-application-return-values}
39
16
  */
40
17
  export type IoTFleetHubApplicationAttributes = {
41
- /**
42
- * The ARN of the application.
43
- * @minLength `1`
44
- * @maxLength `1600`
45
- * @pattern `^arn:[!-~]+$`
46
- */
47
18
  ApplicationArn: string;
48
- /**
49
- * When the Application was created
50
- */
51
19
  ApplicationCreationDate: number;
52
- /**
53
- * The ID of the application.
54
- * @minLength `36`
55
- * @maxLength `36`
56
- * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
57
- */
58
20
  ApplicationId: string;
59
- /**
60
- * When the Application was last updated
61
- */
62
21
  ApplicationLastUpdateDate: number;
63
- /**
64
- * The current state of the application.
65
- */
66
22
  ApplicationState: string;
67
- /**
68
- * The URL of the application.
69
- */
70
23
  ApplicationUrl: string;
71
- /**
72
- * A message indicating why Create or Delete Application failed.
73
- */
74
24
  ErrorMessage: string;
75
- /**
76
- * The AWS SSO application generated client ID (used with AWS SSO APIs).
77
- */
78
25
  SsoClientId: string;
79
26
  };
80
27
  /**
81
28
  * Type definition for `AWS::IoTFleetHub::Application.Tag`.
82
- * To add or update tag, provide both key and value. To delete tag, provide only tag key to be deleted.
83
29
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleethub-application-tag.html}
84
30
  */
85
31
  export type Tag = {
86
- /**
87
- * 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 -.
88
- * @minLength `1`
89
- * @maxLength `128`
90
- */
91
32
  Key: string;
92
- /**
93
- * The value for the tag. You can specify a value that is 1 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 -.
94
- * @minLength `1`
95
- * @maxLength `256`
96
- */
97
33
  Value: string;
98
34
  };
99
35
  /**
100
- * Resource schema for AWS::IoTFleetHub::Application
36
+ * Resource Type definition for AWS::IoTFleetHub::Application
101
37
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html}
102
38
  */
103
39
  export declare class IoTFleetHubApplication extends $Resource<"AWS::IoTFleetHub::Application", IoTFleetHubApplicationProperties, IoTFleetHubApplicationAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource schema for AWS::IoTFleetHub::Application
3
+ * Resource Type definition for AWS::IoTFleetHub::Application
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html}
5
5
  */
6
6
  export class IoTFleetHubApplication extends $Resource {
@@ -312,6 +312,8 @@ export type Av1Settings = {
312
312
  QvbrQualityLevel?: number;
313
313
  RateControlMode?: string;
314
314
  SceneChangeDetect?: string;
315
+ SpatialAq?: string;
316
+ TemporalAq?: string;
315
317
  TimecodeBurninSettings?: TimecodeBurninSettings;
316
318
  };
317
319
  /**
@@ -876,6 +878,7 @@ export type H265ColorSpaceSettings = {
876
878
  ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
877
879
  DolbyVision81Settings?: DolbyVision81Settings;
878
880
  Hdr10Settings?: Hdr10Settings;
881
+ Hlg2020Settings?: Hlg2020Settings;
879
882
  Rec601Settings?: Rec601Settings;
880
883
  Rec709Settings?: Rec709Settings;
881
884
  };
@@ -943,6 +946,11 @@ export type Hdr10Settings = {
943
946
  MaxCll?: number;
944
947
  MaxFall?: number;
945
948
  };
949
+ /**
950
+ * Type definition for `AWS::MediaLive::Channel.Hlg2020Settings`.
951
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlg2020settings.html}
952
+ */
953
+ export type Hlg2020Settings = Record<string, any>;
946
954
  /**
947
955
  * Type definition for `AWS::MediaLive::Channel.HlsAkamaiSettings`.
948
956
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-hlsakamaisettings.html}
@@ -13,6 +13,7 @@ export type MediaLiveInputProperties = {
13
13
  MulticastSettings?: MulticastSettingsCreateRequest;
14
14
  Name?: string;
15
15
  RoleArn?: string;
16
+ RouterSettings?: RouterSettings;
16
17
  SdiSources?: string[];
17
18
  Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings;
18
19
  Sources?: InputSourceRequest[];
@@ -101,6 +102,22 @@ export type MulticastSourceCreateRequest = {
101
102
  SourceIp?: string;
102
103
  Url?: string;
103
104
  };
105
+ /**
106
+ * Type definition for `AWS::MediaLive::Input.RouterDestinationSettings`.
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-routerdestinationsettings.html}
108
+ */
109
+ export type RouterDestinationSettings = {
110
+ AvailabilityZoneName?: string;
111
+ };
112
+ /**
113
+ * Type definition for `AWS::MediaLive::Input.RouterSettings`.
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-routersettings.html}
115
+ */
116
+ export type RouterSettings = {
117
+ Destinations?: RouterDestinationSettings[];
118
+ EncryptionType?: string;
119
+ SecretArn?: string;
120
+ };
104
121
  /**
105
122
  * Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroup`.
106
123
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroup.html}
@@ -8,11 +8,11 @@ export type S3AccessGrantsLocationProperties = {
8
8
  /**
9
9
  * The Amazon Resource Name (ARN) of the access grant location's associated IAM role.
10
10
  */
11
- IamRoleArn?: string;
11
+ IamRoleArn: string;
12
12
  /**
13
13
  * Descriptor for where the location actually points
14
14
  */
15
- LocationScope?: string;
15
+ LocationScope: string;
16
16
  Tags?: Tag[];
17
17
  };
18
18
  /**
@@ -25,6 +25,10 @@ export type S3TablesTableProperties = {
25
25
  * Contains details about the snapshot management settings for an Iceberg table. A snapshot is expired when it exceeds MinSnapshotsToKeep and MaxSnapshotAgeHours.
26
26
  */
27
27
  SnapshotManagement?: SnapshotManagement;
28
+ /**
29
+ * Specifies storage class settings for the table
30
+ */
31
+ StorageClassConfiguration?: StorageClassConfiguration;
28
32
  /**
29
33
  * The Amazon Resource Name (ARN) of the specified table bucket.
30
34
  */
@@ -144,6 +148,17 @@ export type SnapshotManagement = {
144
148
  */
145
149
  Status?: "enabled" | "disabled";
146
150
  };
151
+ /**
152
+ * Type definition for `AWS::S3Tables::Table.StorageClassConfiguration`.
153
+ * Specifies storage class settings for the table
154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-storageclassconfiguration.html}
155
+ */
156
+ export type StorageClassConfiguration = {
157
+ /**
158
+ * The storage class for the table
159
+ */
160
+ StorageClass?: "STANDARD" | "INTELLIGENT_TIERING";
161
+ };
147
162
  /**
148
163
  * Type definition for `AWS::S3Tables::Table.Tag`.
149
164
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-tag.html}
@@ -14,6 +14,10 @@ export type S3TablesTableBucketProperties = {
14
14
  * Settings governing the Metric configuration for the table bucket.
15
15
  */
16
16
  MetricsConfiguration?: MetricsConfiguration;
17
+ /**
18
+ * Specifies storage class settings for the table bucket
19
+ */
20
+ StorageClassConfiguration?: StorageClassConfiguration;
17
21
  /**
18
22
  * A name for the table bucket.
19
23
  * @minLength `3`
@@ -65,6 +69,17 @@ export type MetricsConfiguration = {
65
69
  */
66
70
  Status?: "Enabled" | "Disabled";
67
71
  };
72
+ /**
73
+ * Type definition for `AWS::S3Tables::TableBucket.StorageClassConfiguration`.
74
+ * Specifies storage class settings for the table bucket
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-storageclassconfiguration.html}
76
+ */
77
+ export type StorageClassConfiguration = {
78
+ /**
79
+ * The storage class for the table bucket
80
+ */
81
+ StorageClass?: "STANDARD" | "INTELLIGENT_TIERING";
82
+ };
68
83
  /**
69
84
  * Type definition for `AWS::S3Tables::TableBucket.Tag`.
70
85
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-tag.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.492",
3
+ "version": "0.1.494",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },