@awboost/cfn-resource-types 0.1.492 → 0.1.493

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
@@ -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}
@@ -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.493",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },