@awboost/cfn-resource-types 0.1.135 → 0.1.136
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-Deadline-Fleet.d.ts +1 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +2 -2
- package/lib/AWS-Glue-Database.d.ts +61 -8
- package/lib/AWS-IVS-Channel.d.ts +1 -1
- package/lib/AWS-IVS-PublicKey.d.ts +67 -0
- package/lib/AWS-IVS-PublicKey.js +12 -0
- package/lib/AWS-IVS-Stage.d.ts +24 -0
- package/lib/AWS-Location-APIKey.d.ts +2 -2
- package/lib/AWS-RDS-GlobalCluster.d.ts +2 -0
- package/package.json +1 -1
|
@@ -325,7 +325,7 @@ export type ServiceManagedEc2InstanceMarketOptions = {
|
|
|
325
325
|
* Type definition for `AWS::Deadline::Fleet.ServiceManagedFleetOperatingSystemFamily`.
|
|
326
326
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-servicemanagedfleetoperatingsystemfamily.html}
|
|
327
327
|
*/
|
|
328
|
-
export type ServiceManagedFleetOperatingSystemFamily = "LINUX";
|
|
328
|
+
export type ServiceManagedFleetOperatingSystemFamily = "LINUX" | "WINDOWS";
|
|
329
329
|
/**
|
|
330
330
|
* Type definition for `AWS::Deadline::Fleet.Tag`.
|
|
331
331
|
* A key-value pair to associate with a resource.
|
|
@@ -22,7 +22,7 @@ export type EC2LaunchTemplateProperties = {
|
|
|
22
22
|
LaunchTemplateName?: string;
|
|
23
23
|
/**
|
|
24
24
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
|
25
|
-
To specify the tags for the resources that are created when an instance is launched, you must use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
|
25
|
+
To specify the tags for the resources that are created when an instance is launched, you must use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications).
|
|
26
26
|
*/
|
|
27
27
|
TagSpecifications?: LaunchTemplateTagSpecification[];
|
|
28
28
|
/**
|
|
@@ -1120,7 +1120,7 @@ export type SpotOptions = {
|
|
|
1120
1120
|
};
|
|
1121
1121
|
/**
|
|
1122
1122
|
* Type definition for `AWS::EC2::LaunchTemplate.Tag`.
|
|
1123
|
-
* Specifies a tag. For more information, see [
|
|
1123
|
+
* Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
|
|
1124
1124
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tag.html}
|
|
1125
1125
|
*/
|
|
1126
1126
|
export type Tag = {
|
|
@@ -5,66 +5,119 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html}
|
|
6
6
|
*/
|
|
7
7
|
export type GlueDatabaseProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The AWS account ID for the account in which to create the catalog object.
|
|
10
|
+
*/
|
|
8
11
|
CatalogId: string;
|
|
12
|
+
/**
|
|
13
|
+
* The metadata for the database.
|
|
14
|
+
*/
|
|
9
15
|
DatabaseInput: DatabaseInput;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
*/
|
|
15
|
-
export type GlueDatabaseAttributes = {
|
|
16
|
-
Id: string;
|
|
16
|
+
/**
|
|
17
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is store.
|
|
18
|
+
*/
|
|
19
|
+
DatabaseName?: string;
|
|
17
20
|
};
|
|
18
21
|
/**
|
|
19
22
|
* Type definition for `AWS::Glue::Database.DatabaseIdentifier`.
|
|
23
|
+
* A structure that describes a target database for resource linking.
|
|
20
24
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseidentifier.html}
|
|
21
25
|
*/
|
|
22
26
|
export type DatabaseIdentifier = {
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the Data Catalog in which the database resides.
|
|
29
|
+
*/
|
|
23
30
|
CatalogId?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The name of the catalog database.
|
|
33
|
+
*/
|
|
24
34
|
DatabaseName?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Region of the target database.
|
|
37
|
+
*/
|
|
25
38
|
Region?: string;
|
|
26
39
|
};
|
|
27
40
|
/**
|
|
28
41
|
* Type definition for `AWS::Glue::Database.DatabaseInput`.
|
|
42
|
+
* The structure used to create or update a database.
|
|
29
43
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html}
|
|
30
44
|
*/
|
|
31
45
|
export type DatabaseInput = {
|
|
46
|
+
/**
|
|
47
|
+
* Creates a set of default permissions on the table for principals. Used by AWS Lake Formation. Not used in the normal course of AWS Glue operations.
|
|
48
|
+
*/
|
|
32
49
|
CreateTableDefaultPermissions?: PrincipalPrivileges[];
|
|
50
|
+
/**
|
|
51
|
+
* A description of the database.
|
|
52
|
+
*/
|
|
33
53
|
Description?: string;
|
|
54
|
+
/**
|
|
55
|
+
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
|
|
56
|
+
*/
|
|
34
57
|
FederatedDatabase?: FederatedDatabase;
|
|
58
|
+
/**
|
|
59
|
+
* The location of the database (for example, an HDFS path).
|
|
60
|
+
*/
|
|
35
61
|
LocationUri?: string;
|
|
62
|
+
/**
|
|
63
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is stored.
|
|
64
|
+
*/
|
|
36
65
|
Name?: string;
|
|
66
|
+
/**
|
|
67
|
+
* These key-value pairs define parameters and properties of the database.
|
|
68
|
+
*/
|
|
37
69
|
Parameters?: Record<string, any>;
|
|
70
|
+
/**
|
|
71
|
+
* A DatabaseIdentifier structure that describes a target database for resource linking.
|
|
72
|
+
*/
|
|
38
73
|
TargetDatabase?: DatabaseIdentifier;
|
|
39
74
|
};
|
|
40
75
|
/**
|
|
41
76
|
* Type definition for `AWS::Glue::Database.DataLakePrincipal`.
|
|
77
|
+
* The AWS Lake Formation principal.
|
|
42
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-datalakeprincipal.html}
|
|
43
79
|
*/
|
|
44
80
|
export type DataLakePrincipal = {
|
|
81
|
+
/**
|
|
82
|
+
* An identifier for the AWS Lake Formation principal.
|
|
83
|
+
*/
|
|
45
84
|
DataLakePrincipalIdentifier?: string;
|
|
46
85
|
};
|
|
47
86
|
/**
|
|
48
87
|
* Type definition for `AWS::Glue::Database.FederatedDatabase`.
|
|
88
|
+
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
|
|
49
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-federateddatabase.html}
|
|
50
90
|
*/
|
|
51
91
|
export type FederatedDatabase = {
|
|
92
|
+
/**
|
|
93
|
+
* The name of the connection to the external metastore.
|
|
94
|
+
*/
|
|
52
95
|
ConnectionName?: string;
|
|
96
|
+
/**
|
|
97
|
+
* A unique identifier for the federated database.
|
|
98
|
+
*/
|
|
53
99
|
Identifier?: string;
|
|
54
100
|
};
|
|
55
101
|
/**
|
|
56
102
|
* Type definition for `AWS::Glue::Database.PrincipalPrivileges`.
|
|
103
|
+
* The permissions granted to a principal.
|
|
57
104
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-principalprivileges.html}
|
|
58
105
|
*/
|
|
59
106
|
export type PrincipalPrivileges = {
|
|
107
|
+
/**
|
|
108
|
+
* The permissions that are granted to the principal.
|
|
109
|
+
*/
|
|
60
110
|
Permissions?: string[];
|
|
111
|
+
/**
|
|
112
|
+
* The principal who is granted permissions.
|
|
113
|
+
*/
|
|
61
114
|
Principal?: DataLakePrincipal;
|
|
62
115
|
};
|
|
63
116
|
/**
|
|
64
117
|
* Resource Type definition for AWS::Glue::Database
|
|
65
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html}
|
|
66
119
|
*/
|
|
67
|
-
export declare class GlueDatabase extends $Resource<"AWS::Glue::Database", GlueDatabaseProperties,
|
|
120
|
+
export declare class GlueDatabase extends $Resource<"AWS::Glue::Database", GlueDatabaseProperties, Record<string, never>> {
|
|
68
121
|
static readonly Type = "AWS::Glue::Database";
|
|
69
122
|
constructor(logicalId: string, properties: GlueDatabaseProperties, options?: $ResourceOptions);
|
|
70
123
|
}
|
package/lib/AWS-IVS-Channel.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export type IVSChannelProperties = {
|
|
|
27
27
|
/**
|
|
28
28
|
* Optional transcode preset for the channel. This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
|
29
29
|
*/
|
|
30
|
-
Preset?: "HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY";
|
|
30
|
+
Preset?: "" | "HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY";
|
|
31
31
|
/**
|
|
32
32
|
* Recording Configuration ARN. A value other than an empty string indicates that recording is enabled. Default: "" (recording is disabled).
|
|
33
33
|
* @minLength `0`
|
|
@@ -0,0 +1,67 @@
|
|
|
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::IVS::PublicKey
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html}
|
|
6
|
+
*/
|
|
7
|
+
export type IVSPublicKeyProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Name of the public key to be imported. The value does not need to be unique.
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
* @maxLength `128`
|
|
12
|
+
* @pattern `^[a-zA-Z0-9-_]*$`
|
|
13
|
+
*/
|
|
14
|
+
Name?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The public portion of a customer-generated key pair.
|
|
17
|
+
* @pattern `-----BEGIN PUBLIC KEY-----\r?\n([a-zA-Z0-9+/=\r\n]+)\r?\n-----END PUBLIC KEY-----(\r?\n)?`
|
|
18
|
+
*/
|
|
19
|
+
PublicKeyMaterial?: string;
|
|
20
|
+
/**
|
|
21
|
+
* A list of key-value pairs that contain metadata for the asset model.
|
|
22
|
+
* @maxLength `50`
|
|
23
|
+
*/
|
|
24
|
+
Tags?: Tag[];
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::IVS::PublicKey`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html#aws-resource-ivs-publickey-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type IVSPublicKeyAttributes = {
|
|
31
|
+
/**
|
|
32
|
+
* Key-pair identifier.
|
|
33
|
+
* @minLength `1`
|
|
34
|
+
* @maxLength `128`
|
|
35
|
+
* @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:public-key/[a-zA-Z0-9-]+$`
|
|
36
|
+
*/
|
|
37
|
+
Arn: string;
|
|
38
|
+
/**
|
|
39
|
+
* Key-pair identifier.
|
|
40
|
+
*/
|
|
41
|
+
Fingerprint: string;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::IVS::PublicKey.Tag`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-publickey-tag.html}
|
|
46
|
+
*/
|
|
47
|
+
export type Tag = {
|
|
48
|
+
/**
|
|
49
|
+
* @minLength `1`
|
|
50
|
+
* @maxLength `128`
|
|
51
|
+
*/
|
|
52
|
+
Key: string;
|
|
53
|
+
/**
|
|
54
|
+
* @minLength `1`
|
|
55
|
+
* @maxLength `256`
|
|
56
|
+
*/
|
|
57
|
+
Value: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html}
|
|
62
|
+
*/
|
|
63
|
+
export declare class IVSPublicKey extends $Resource<"AWS::IVS::PublicKey", IVSPublicKeyProperties, IVSPublicKeyAttributes> {
|
|
64
|
+
static readonly Type = "AWS::IVS::PublicKey";
|
|
65
|
+
constructor(logicalId: string, properties: IVSPublicKeyProperties, options?: $ResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
//# sourceMappingURL=AWS-IVS-PublicKey.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::IVS::PublicKey
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html}
|
|
5
|
+
*/
|
|
6
|
+
export class IVSPublicKey extends $Resource {
|
|
7
|
+
static Type = "AWS::IVS::PublicKey";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, IVSPublicKey.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-IVS-PublicKey.js.map
|
package/lib/AWS-IVS-Stage.d.ts
CHANGED
|
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-stage.html}
|
|
6
6
|
*/
|
|
7
7
|
export type IVSStageProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Configuration object for individual participant recording, to attach to the new stage.
|
|
10
|
+
*/
|
|
11
|
+
AutoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
|
|
8
12
|
/**
|
|
9
13
|
* Stage name
|
|
10
14
|
* @minLength `0`
|
|
@@ -36,6 +40,26 @@ export type IVSStageAttributes = {
|
|
|
36
40
|
*/
|
|
37
41
|
Arn: string;
|
|
38
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::IVS::Stage.AutoParticipantRecordingConfiguration`.
|
|
45
|
+
* Configuration object for individual participant recording, to attach to the new stage.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-autoparticipantrecordingconfiguration.html}
|
|
47
|
+
*/
|
|
48
|
+
export type AutoParticipantRecordingConfiguration = {
|
|
49
|
+
/**
|
|
50
|
+
* Types of media to be recorded. Default: AUDIO_VIDEO.
|
|
51
|
+
* @minLength `0`
|
|
52
|
+
* @maxLength `1`
|
|
53
|
+
*/
|
|
54
|
+
MediaTypes?: ("AUDIO_VIDEO" | "AUDIO_ONLY")[];
|
|
55
|
+
/**
|
|
56
|
+
* ARN of the StorageConfiguration resource to use for individual participant recording.
|
|
57
|
+
* @minLength `0`
|
|
58
|
+
* @maxLength `128`
|
|
59
|
+
* @pattern `^$|^arn:aws:ivs:[a-z0-9-]+:[0-9]+:storage-configuration/[a-zA-Z0-9-]+$`
|
|
60
|
+
*/
|
|
61
|
+
StorageConfigurationArn: string;
|
|
62
|
+
};
|
|
39
63
|
/**
|
|
40
64
|
* Type definition for `AWS::IVS::Stage.Tag`.
|
|
41
65
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-tag.html}
|
|
@@ -65,7 +65,7 @@ export type LocationAPIKeyAttributes = {
|
|
|
65
65
|
export type ApiKeyRestrictions = {
|
|
66
66
|
/**
|
|
67
67
|
* @minLength `1`
|
|
68
|
-
* @maxLength `
|
|
68
|
+
* @maxLength `24`
|
|
69
69
|
*/
|
|
70
70
|
AllowActions: string[];
|
|
71
71
|
/**
|
|
@@ -75,7 +75,7 @@ export type ApiKeyRestrictions = {
|
|
|
75
75
|
AllowReferers?: string[];
|
|
76
76
|
/**
|
|
77
77
|
* @minLength `1`
|
|
78
|
-
* @maxLength `
|
|
78
|
+
* @maxLength `8`
|
|
79
79
|
*/
|
|
80
80
|
AllowResources: string[];
|
|
81
81
|
};
|
|
@@ -24,6 +24,8 @@ export type RDSGlobalClusterProperties = {
|
|
|
24
24
|
EngineVersion?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The cluster identifier of the new global database cluster. This parameter is stored as a lowercase string.
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
* @maxLength `63`
|
|
27
29
|
* @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
|
|
28
30
|
*/
|
|
29
31
|
GlobalClusterIdentifier?: string;
|