@pulumi/aws-native 0.118.0 → 0.119.0
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/ec2/launchTemplate.d.ts +2 -2
- package/gamelift/fleet.d.ts +2 -2
- package/glue/database.d.ts +59 -0
- package/glue/database.js +68 -0
- package/glue/database.js.map +1 -0
- package/glue/getDatabase.d.ts +32 -0
- package/glue/getDatabase.js +25 -0
- package/glue/getDatabase.js.map +1 -0
- package/glue/index.d.ts +6 -0
- package/glue/index.js +8 -1
- package/glue/index.js.map +1 -1
- package/ivs/getPublicKey.d.ts +36 -0
- package/ivs/getPublicKey.js +25 -0
- package/ivs/getPublicKey.js.map +1 -0
- package/ivs/getStage.d.ts +1 -0
- package/ivs/getStage.js.map +1 -1
- package/ivs/index.d.ts +6 -0
- package/ivs/index.js +8 -1
- package/ivs/index.js.map +1 -1
- package/ivs/publicKey.d.ts +67 -0
- package/ivs/publicKey.js +66 -0
- package/ivs/publicKey.js.map +1 -0
- package/ivs/stage.d.ts +2 -0
- package/ivs/stage.js +2 -0
- package/ivs/stage.js.map +1 -1
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/types/enums/deadline/index.d.ts +1 -0
- package/types/enums/deadline/index.js +1 -0
- package/types/enums/deadline/index.js.map +1 -1
- package/types/enums/ivs/index.d.ts +6 -0
- package/types/enums/ivs/index.js +6 -1
- package/types/enums/ivs/index.js.map +1 -1
- package/types/input.d.ts +100 -2
- package/types/output.d.ts +100 -2
package/ec2/launchTemplate.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare class LaunchTemplate extends pulumi.CustomResource {
|
|
|
49
49
|
readonly launchTemplateName: pulumi.Output<string | undefined>;
|
|
50
50
|
/**
|
|
51
51
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
|
52
|
-
* 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-
|
|
52
|
+
* 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).
|
|
53
53
|
*/
|
|
54
54
|
readonly tagSpecifications: pulumi.Output<outputs.ec2.LaunchTemplateTagSpecification[] | undefined>;
|
|
55
55
|
/**
|
|
@@ -79,7 +79,7 @@ export interface LaunchTemplateArgs {
|
|
|
79
79
|
launchTemplateName?: pulumi.Input<string>;
|
|
80
80
|
/**
|
|
81
81
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
|
82
|
-
* 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-
|
|
82
|
+
* 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).
|
|
83
83
|
*/
|
|
84
84
|
tagSpecifications?: pulumi.Input<pulumi.Input<inputs.ec2.LaunchTemplateTagSpecificationArgs>[]>;
|
|
85
85
|
/**
|
package/gamelift/fleet.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export declare class Fleet extends pulumi.CustomResource {
|
|
|
41
41
|
*/
|
|
42
42
|
readonly computeType: pulumi.Output<enums.gamelift.FleetComputeType | undefined>;
|
|
43
43
|
/**
|
|
44
|
-
* *This data type is
|
|
44
|
+
* *This data type is currently not available. It is under improvement as we respond to customer feedback from the Containers public preview.*
|
|
45
45
|
*
|
|
46
46
|
* Configuration details for a set of container groups, for use when creating a fleet with compute type `CONTAINER` .
|
|
47
47
|
*
|
|
@@ -178,7 +178,7 @@ export interface FleetArgs {
|
|
|
178
178
|
*/
|
|
179
179
|
computeType?: pulumi.Input<enums.gamelift.FleetComputeType>;
|
|
180
180
|
/**
|
|
181
|
-
* *This data type is
|
|
181
|
+
* *This data type is currently not available. It is under improvement as we respond to customer feedback from the Containers public preview.*
|
|
182
182
|
*
|
|
183
183
|
* Configuration details for a set of container groups, for use when creating a fleet with compute type `CONTAINER` .
|
|
184
184
|
*
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Resource Type definition for AWS::Glue::Database
|
|
6
|
+
*/
|
|
7
|
+
export declare class Database extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing Database resource's state with the given name, ID, and optional extra
|
|
10
|
+
* properties used to qualify the lookup.
|
|
11
|
+
*
|
|
12
|
+
* @param name The _unique_ name of the resulting resource.
|
|
13
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
15
|
+
*/
|
|
16
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Database;
|
|
17
|
+
/**
|
|
18
|
+
* Returns true if the given object is an instance of Database. This is designed to work even
|
|
19
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
20
|
+
*/
|
|
21
|
+
static isInstance(obj: any): obj is Database;
|
|
22
|
+
/**
|
|
23
|
+
* The AWS account ID for the account in which to create the catalog object.
|
|
24
|
+
*/
|
|
25
|
+
readonly catalogId: pulumi.Output<string>;
|
|
26
|
+
/**
|
|
27
|
+
* The metadata for the database.
|
|
28
|
+
*/
|
|
29
|
+
readonly databaseInput: pulumi.Output<outputs.glue.DatabaseInput>;
|
|
30
|
+
/**
|
|
31
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is store.
|
|
32
|
+
*/
|
|
33
|
+
readonly databaseName: pulumi.Output<string | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* Create a Database resource with the given unique name, arguments, and options.
|
|
36
|
+
*
|
|
37
|
+
* @param name The _unique_ name of the resource.
|
|
38
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
39
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
40
|
+
*/
|
|
41
|
+
constructor(name: string, args: DatabaseArgs, opts?: pulumi.CustomResourceOptions);
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* The set of arguments for constructing a Database resource.
|
|
45
|
+
*/
|
|
46
|
+
export interface DatabaseArgs {
|
|
47
|
+
/**
|
|
48
|
+
* The AWS account ID for the account in which to create the catalog object.
|
|
49
|
+
*/
|
|
50
|
+
catalogId: pulumi.Input<string>;
|
|
51
|
+
/**
|
|
52
|
+
* The metadata for the database.
|
|
53
|
+
*/
|
|
54
|
+
databaseInput: pulumi.Input<inputs.glue.DatabaseInputArgs>;
|
|
55
|
+
/**
|
|
56
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is store.
|
|
57
|
+
*/
|
|
58
|
+
databaseName?: pulumi.Input<string>;
|
|
59
|
+
}
|
package/glue/database.js
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Database = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource Type definition for AWS::Glue::Database
|
|
10
|
+
*/
|
|
11
|
+
class Database extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing Database resource's state with the given name, ID, and optional extra
|
|
14
|
+
* properties used to qualify the lookup.
|
|
15
|
+
*
|
|
16
|
+
* @param name The _unique_ name of the resulting resource.
|
|
17
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
19
|
+
*/
|
|
20
|
+
static get(name, id, opts) {
|
|
21
|
+
return new Database(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Returns true if the given object is an instance of Database. This is designed to work even
|
|
25
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
26
|
+
*/
|
|
27
|
+
static isInstance(obj) {
|
|
28
|
+
if (obj === undefined || obj === null) {
|
|
29
|
+
return false;
|
|
30
|
+
}
|
|
31
|
+
return obj['__pulumiType'] === Database.__pulumiType;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Create a Database resource with the given unique name, arguments, and options.
|
|
35
|
+
*
|
|
36
|
+
* @param name The _unique_ name of the resource.
|
|
37
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
38
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
39
|
+
*/
|
|
40
|
+
constructor(name, args, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (!opts.id) {
|
|
44
|
+
if ((!args || args.catalogId === undefined) && !opts.urn) {
|
|
45
|
+
throw new Error("Missing required property 'catalogId'");
|
|
46
|
+
}
|
|
47
|
+
if ((!args || args.databaseInput === undefined) && !opts.urn) {
|
|
48
|
+
throw new Error("Missing required property 'databaseInput'");
|
|
49
|
+
}
|
|
50
|
+
resourceInputs["catalogId"] = args ? args.catalogId : undefined;
|
|
51
|
+
resourceInputs["databaseInput"] = args ? args.databaseInput : undefined;
|
|
52
|
+
resourceInputs["databaseName"] = args ? args.databaseName : undefined;
|
|
53
|
+
}
|
|
54
|
+
else {
|
|
55
|
+
resourceInputs["catalogId"] = undefined /*out*/;
|
|
56
|
+
resourceInputs["databaseInput"] = undefined /*out*/;
|
|
57
|
+
resourceInputs["databaseName"] = undefined /*out*/;
|
|
58
|
+
}
|
|
59
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
60
|
+
const replaceOnChanges = { replaceOnChanges: ["databaseName"] };
|
|
61
|
+
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
62
|
+
super(Database.__pulumiType, name, resourceInputs, opts);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.Database = Database;
|
|
66
|
+
/** @internal */
|
|
67
|
+
Database.__pulumiType = 'aws-native:glue:Database';
|
|
68
|
+
//# sourceMappingURL=database.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"database.js","sourceRoot":"","sources":["../../glue/database.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;IAeD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAkB,EAAE,IAAmC;QAC7E,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,aAAa,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1D,MAAM,IAAI,KAAK,CAAC,2CAA2C,CAAC,CAAC;aAChE;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACpD,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACtD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,gBAAgB,GAAG,EAAE,gBAAgB,EAAE,CAAC,cAAc,CAAC,EAAE,CAAC;QAChE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;QACnD,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,CAAC;;AArEL,4BAsEC;AAzDG,gBAAgB;AACO,qBAAY,GAAG,0BAA0B,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::Glue::Database
|
|
5
|
+
*/
|
|
6
|
+
export declare function getDatabase(args: GetDatabaseArgs, opts?: pulumi.InvokeOptions): Promise<GetDatabaseResult>;
|
|
7
|
+
export interface GetDatabaseArgs {
|
|
8
|
+
/**
|
|
9
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is store.
|
|
10
|
+
*/
|
|
11
|
+
databaseName: string;
|
|
12
|
+
}
|
|
13
|
+
export interface GetDatabaseResult {
|
|
14
|
+
/**
|
|
15
|
+
* The AWS account ID for the account in which to create the catalog object.
|
|
16
|
+
*/
|
|
17
|
+
readonly catalogId?: string;
|
|
18
|
+
/**
|
|
19
|
+
* The metadata for the database.
|
|
20
|
+
*/
|
|
21
|
+
readonly databaseInput?: outputs.glue.DatabaseInput;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Resource Type definition for AWS::Glue::Database
|
|
25
|
+
*/
|
|
26
|
+
export declare function getDatabaseOutput(args: GetDatabaseOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDatabaseResult>;
|
|
27
|
+
export interface GetDatabaseOutputArgs {
|
|
28
|
+
/**
|
|
29
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is store.
|
|
30
|
+
*/
|
|
31
|
+
databaseName: pulumi.Input<string>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getDatabaseOutput = exports.getDatabase = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource Type definition for AWS::Glue::Database
|
|
10
|
+
*/
|
|
11
|
+
function getDatabase(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("aws-native:glue:getDatabase", {
|
|
14
|
+
"databaseName": args.databaseName,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getDatabase = getDatabase;
|
|
18
|
+
/**
|
|
19
|
+
* Resource Type definition for AWS::Glue::Database
|
|
20
|
+
*/
|
|
21
|
+
function getDatabaseOutput(args, opts) {
|
|
22
|
+
return pulumi.output(args).apply((a) => getDatabase(a, opts));
|
|
23
|
+
}
|
|
24
|
+
exports.getDatabaseOutput = getDatabaseOutput;
|
|
25
|
+
//# sourceMappingURL=getDatabase.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDatabase.js","sourceRoot":"","sources":["../../glue/getDatabase.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kCAMC;AAmBD;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
package/glue/index.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
export { DatabaseArgs } from "./database";
|
|
2
|
+
export type Database = import("./database").Database;
|
|
3
|
+
export declare const Database: typeof import("./database").Database;
|
|
4
|
+
export { GetDatabaseArgs, GetDatabaseResult, GetDatabaseOutputArgs } from "./getDatabase";
|
|
5
|
+
export declare const getDatabase: typeof import("./getDatabase").getDatabase;
|
|
6
|
+
export declare const getDatabaseOutput: typeof import("./getDatabase").getDatabaseOutput;
|
|
1
7
|
export { GetRegistryArgs, GetRegistryResult, GetRegistryOutputArgs } from "./getRegistry";
|
|
2
8
|
export declare const getRegistry: typeof import("./getRegistry").getRegistry;
|
|
3
9
|
export declare const getRegistryOutput: typeof import("./getRegistry").getRegistryOutput;
|
package/glue/index.js
CHANGED
|
@@ -16,9 +16,14 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.Trigger = exports.SchemaVersionMetadata = exports.SchemaVersion = exports.Schema = exports.Registry = exports.getTriggerOutput = exports.getTrigger = exports.getSchemaVersionOutput = exports.getSchemaVersion = exports.getSchemaOutput = exports.getSchema = exports.getRegistryOutput = exports.getRegistry = void 0;
|
|
19
|
+
exports.Trigger = exports.SchemaVersionMetadata = exports.SchemaVersion = exports.Schema = exports.Registry = exports.getTriggerOutput = exports.getTrigger = exports.getSchemaVersionOutput = exports.getSchemaVersion = exports.getSchemaOutput = exports.getSchema = exports.getRegistryOutput = exports.getRegistry = exports.getDatabaseOutput = exports.getDatabase = exports.Database = void 0;
|
|
20
20
|
const pulumi = require("@pulumi/pulumi");
|
|
21
21
|
const utilities = require("../utilities");
|
|
22
|
+
exports.Database = null;
|
|
23
|
+
utilities.lazyLoad(exports, ["Database"], () => require("./database"));
|
|
24
|
+
exports.getDatabase = null;
|
|
25
|
+
exports.getDatabaseOutput = null;
|
|
26
|
+
utilities.lazyLoad(exports, ["getDatabase", "getDatabaseOutput"], () => require("./getDatabase"));
|
|
22
27
|
exports.getRegistry = null;
|
|
23
28
|
exports.getRegistryOutput = null;
|
|
24
29
|
utilities.lazyLoad(exports, ["getRegistry", "getRegistryOutput"], () => require("./getRegistry"));
|
|
@@ -47,6 +52,8 @@ const _module = {
|
|
|
47
52
|
version: utilities.getVersion(),
|
|
48
53
|
construct: (name, type, urn) => {
|
|
49
54
|
switch (type) {
|
|
55
|
+
case "aws-native:glue:Database":
|
|
56
|
+
return new exports.Database(name, undefined, { urn });
|
|
50
57
|
case "aws-native:glue:Registry":
|
|
51
58
|
return new exports.Registry(name, undefined, { urn });
|
|
52
59
|
case "aws-native:glue:Schema":
|
package/glue/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../glue/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../glue/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG1D,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,SAAS,GAA2C,IAAW,CAAC;AAChE,QAAA,eAAe,GAAiD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,EAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAG9E,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AACrF,QAAA,sBAAsB,GAA+D,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAGnG,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAIjF,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,MAAM,GAAqC,IAAW,CAAC;AACpE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAItD,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGrE,gBAAgB;AAChB,sDAAoC;AAEpC,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,0BAA0B;gBAC3B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,0BAA0B;gBAC3B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,wBAAwB;gBACzB,OAAO,IAAI,cAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,+BAA+B;gBAChC,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,yBAAyB;gBAC1B,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
5
|
+
*/
|
|
6
|
+
export declare function getPublicKey(args: GetPublicKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetPublicKeyResult>;
|
|
7
|
+
export interface GetPublicKeyArgs {
|
|
8
|
+
/**
|
|
9
|
+
* Key-pair identifier.
|
|
10
|
+
*/
|
|
11
|
+
arn: string;
|
|
12
|
+
}
|
|
13
|
+
export interface GetPublicKeyResult {
|
|
14
|
+
/**
|
|
15
|
+
* Key-pair identifier.
|
|
16
|
+
*/
|
|
17
|
+
readonly arn?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Key-pair identifier.
|
|
20
|
+
*/
|
|
21
|
+
readonly fingerprint?: string;
|
|
22
|
+
/**
|
|
23
|
+
* A list of key-value pairs that contain metadata for the asset model.
|
|
24
|
+
*/
|
|
25
|
+
readonly tags?: outputs.Tag[];
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
29
|
+
*/
|
|
30
|
+
export declare function getPublicKeyOutput(args: GetPublicKeyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPublicKeyResult>;
|
|
31
|
+
export interface GetPublicKeyOutputArgs {
|
|
32
|
+
/**
|
|
33
|
+
* Key-pair identifier.
|
|
34
|
+
*/
|
|
35
|
+
arn: pulumi.Input<string>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getPublicKeyOutput = exports.getPublicKey = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
10
|
+
*/
|
|
11
|
+
function getPublicKey(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("aws-native:ivs:getPublicKey", {
|
|
14
|
+
"arn": args.arn,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getPublicKey = getPublicKey;
|
|
18
|
+
/**
|
|
19
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
20
|
+
*/
|
|
21
|
+
function getPublicKeyOutput(args, opts) {
|
|
22
|
+
return pulumi.output(args).apply((a) => getPublicKey(a, opts));
|
|
23
|
+
}
|
|
24
|
+
exports.getPublicKeyOutput = getPublicKeyOutput;
|
|
25
|
+
//# sourceMappingURL=getPublicKey.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPublicKey.js","sourceRoot":"","sources":["../../ivs/getPublicKey.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAE5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AAuBD;;GAEG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,gDAEC"}
|
package/ivs/getStage.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export interface GetStageResult {
|
|
|
19
19
|
* Stage ARN is automatically generated on creation and assigned as the unique identifier.
|
|
20
20
|
*/
|
|
21
21
|
readonly arn?: string;
|
|
22
|
+
readonly autoParticipantRecordingConfiguration?: outputs.ivs.StageAutoParticipantRecordingConfiguration;
|
|
22
23
|
/**
|
|
23
24
|
* Stage name
|
|
24
25
|
*/
|
package/ivs/getStage.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStage.js","sourceRoot":"","sources":["../../ivs/getStage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yBAAyB,EAAE;QACpD,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4BAMC;
|
|
1
|
+
{"version":3,"file":"getStage.js","sourceRoot":"","sources":["../../ivs/getStage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yBAAyB,EAAE;QACpD,KAAK,EAAE,IAAI,CAAC,GAAG;KAClB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4BAMC;AA4BD;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
|
package/ivs/index.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ export declare const getPlaybackKeyPairOutput: typeof import("./getPlaybackKeyPa
|
|
|
16
16
|
export { GetPlaybackRestrictionPolicyArgs, GetPlaybackRestrictionPolicyResult, GetPlaybackRestrictionPolicyOutputArgs } from "./getPlaybackRestrictionPolicy";
|
|
17
17
|
export declare const getPlaybackRestrictionPolicy: typeof import("./getPlaybackRestrictionPolicy").getPlaybackRestrictionPolicy;
|
|
18
18
|
export declare const getPlaybackRestrictionPolicyOutput: typeof import("./getPlaybackRestrictionPolicy").getPlaybackRestrictionPolicyOutput;
|
|
19
|
+
export { GetPublicKeyArgs, GetPublicKeyResult, GetPublicKeyOutputArgs } from "./getPublicKey";
|
|
20
|
+
export declare const getPublicKey: typeof import("./getPublicKey").getPublicKey;
|
|
21
|
+
export declare const getPublicKeyOutput: typeof import("./getPublicKey").getPublicKeyOutput;
|
|
19
22
|
export { GetRecordingConfigurationArgs, GetRecordingConfigurationResult, GetRecordingConfigurationOutputArgs } from "./getRecordingConfiguration";
|
|
20
23
|
export declare const getRecordingConfiguration: typeof import("./getRecordingConfiguration").getRecordingConfiguration;
|
|
21
24
|
export declare const getRecordingConfigurationOutput: typeof import("./getRecordingConfiguration").getRecordingConfigurationOutput;
|
|
@@ -34,6 +37,9 @@ export declare const PlaybackKeyPair: typeof import("./playbackKeyPair").Playbac
|
|
|
34
37
|
export { PlaybackRestrictionPolicyArgs } from "./playbackRestrictionPolicy";
|
|
35
38
|
export type PlaybackRestrictionPolicy = import("./playbackRestrictionPolicy").PlaybackRestrictionPolicy;
|
|
36
39
|
export declare const PlaybackRestrictionPolicy: typeof import("./playbackRestrictionPolicy").PlaybackRestrictionPolicy;
|
|
40
|
+
export { PublicKeyArgs } from "./publicKey";
|
|
41
|
+
export type PublicKey = import("./publicKey").PublicKey;
|
|
42
|
+
export declare const PublicKey: typeof import("./publicKey").PublicKey;
|
|
37
43
|
export { RecordingConfigurationArgs } from "./recordingConfiguration";
|
|
38
44
|
export type RecordingConfiguration = import("./recordingConfiguration").RecordingConfiguration;
|
|
39
45
|
export declare const RecordingConfiguration: typeof import("./recordingConfiguration").RecordingConfiguration;
|
package/ivs/index.js
CHANGED
|
@@ -16,7 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.StreamKey = exports.StorageConfiguration = exports.Stage = exports.RecordingConfiguration = exports.PlaybackRestrictionPolicy = exports.PlaybackKeyPair = exports.getStreamKeyOutput = exports.getStreamKey = exports.getStorageConfigurationOutput = exports.getStorageConfiguration = exports.getStageOutput = exports.getStage = exports.getRecordingConfigurationOutput = exports.getRecordingConfiguration = exports.getPlaybackRestrictionPolicyOutput = exports.getPlaybackRestrictionPolicy = exports.getPlaybackKeyPairOutput = exports.getPlaybackKeyPair = exports.getEncoderConfigurationOutput = exports.getEncoderConfiguration = exports.getChannelOutput = exports.getChannel = exports.EncoderConfiguration = exports.Channel = void 0;
|
|
19
|
+
exports.StreamKey = exports.StorageConfiguration = exports.Stage = exports.RecordingConfiguration = exports.PublicKey = exports.PlaybackRestrictionPolicy = exports.PlaybackKeyPair = exports.getStreamKeyOutput = exports.getStreamKey = exports.getStorageConfigurationOutput = exports.getStorageConfiguration = exports.getStageOutput = exports.getStage = exports.getRecordingConfigurationOutput = exports.getRecordingConfiguration = exports.getPublicKeyOutput = exports.getPublicKey = exports.getPlaybackRestrictionPolicyOutput = exports.getPlaybackRestrictionPolicy = exports.getPlaybackKeyPairOutput = exports.getPlaybackKeyPair = exports.getEncoderConfigurationOutput = exports.getEncoderConfiguration = exports.getChannelOutput = exports.getChannel = exports.EncoderConfiguration = exports.Channel = void 0;
|
|
20
20
|
const pulumi = require("@pulumi/pulumi");
|
|
21
21
|
const utilities = require("../utilities");
|
|
22
22
|
exports.Channel = null;
|
|
@@ -35,6 +35,9 @@ utilities.lazyLoad(exports, ["getPlaybackKeyPair", "getPlaybackKeyPairOutput"],
|
|
|
35
35
|
exports.getPlaybackRestrictionPolicy = null;
|
|
36
36
|
exports.getPlaybackRestrictionPolicyOutput = null;
|
|
37
37
|
utilities.lazyLoad(exports, ["getPlaybackRestrictionPolicy", "getPlaybackRestrictionPolicyOutput"], () => require("./getPlaybackRestrictionPolicy"));
|
|
38
|
+
exports.getPublicKey = null;
|
|
39
|
+
exports.getPublicKeyOutput = null;
|
|
40
|
+
utilities.lazyLoad(exports, ["getPublicKey", "getPublicKeyOutput"], () => require("./getPublicKey"));
|
|
38
41
|
exports.getRecordingConfiguration = null;
|
|
39
42
|
exports.getRecordingConfigurationOutput = null;
|
|
40
43
|
utilities.lazyLoad(exports, ["getRecordingConfiguration", "getRecordingConfigurationOutput"], () => require("./getRecordingConfiguration"));
|
|
@@ -51,6 +54,8 @@ exports.PlaybackKeyPair = null;
|
|
|
51
54
|
utilities.lazyLoad(exports, ["PlaybackKeyPair"], () => require("./playbackKeyPair"));
|
|
52
55
|
exports.PlaybackRestrictionPolicy = null;
|
|
53
56
|
utilities.lazyLoad(exports, ["PlaybackRestrictionPolicy"], () => require("./playbackRestrictionPolicy"));
|
|
57
|
+
exports.PublicKey = null;
|
|
58
|
+
utilities.lazyLoad(exports, ["PublicKey"], () => require("./publicKey"));
|
|
54
59
|
exports.RecordingConfiguration = null;
|
|
55
60
|
utilities.lazyLoad(exports, ["RecordingConfiguration"], () => require("./recordingConfiguration"));
|
|
56
61
|
exports.Stage = null;
|
|
@@ -73,6 +78,8 @@ const _module = {
|
|
|
73
78
|
return new exports.PlaybackKeyPair(name, undefined, { urn });
|
|
74
79
|
case "aws-native:ivs:PlaybackRestrictionPolicy":
|
|
75
80
|
return new exports.PlaybackRestrictionPolicy(name, undefined, { urn });
|
|
81
|
+
case "aws-native:ivs:PublicKey":
|
|
82
|
+
return new exports.PublicKey(name, undefined, { urn });
|
|
76
83
|
case "aws-native:ivs:RecordingConfiguration":
|
|
77
84
|
return new exports.RecordingConfiguration(name, undefined, { urn });
|
|
78
85
|
case "aws-native:ivs:Stage":
|
package/ivs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../ivs/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../ivs/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
6
|
+
*/
|
|
7
|
+
export declare class PublicKey extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing PublicKey resource's state with the given name, ID, and optional extra
|
|
10
|
+
* properties used to qualify the lookup.
|
|
11
|
+
*
|
|
12
|
+
* @param name The _unique_ name of the resulting resource.
|
|
13
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
14
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
15
|
+
*/
|
|
16
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): PublicKey;
|
|
17
|
+
/**
|
|
18
|
+
* Returns true if the given object is an instance of PublicKey. This is designed to work even
|
|
19
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
20
|
+
*/
|
|
21
|
+
static isInstance(obj: any): obj is PublicKey;
|
|
22
|
+
/**
|
|
23
|
+
* Key-pair identifier.
|
|
24
|
+
*/
|
|
25
|
+
readonly arn: pulumi.Output<string>;
|
|
26
|
+
/**
|
|
27
|
+
* Key-pair identifier.
|
|
28
|
+
*/
|
|
29
|
+
readonly fingerprint: pulumi.Output<string>;
|
|
30
|
+
/**
|
|
31
|
+
* Name of the public key to be imported. The value does not need to be unique.
|
|
32
|
+
*/
|
|
33
|
+
readonly name: pulumi.Output<string | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* The public portion of a customer-generated key pair.
|
|
36
|
+
*/
|
|
37
|
+
readonly publicKeyMaterial: pulumi.Output<string | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* A list of key-value pairs that contain metadata for the asset model.
|
|
40
|
+
*/
|
|
41
|
+
readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
|
|
42
|
+
/**
|
|
43
|
+
* Create a PublicKey resource with the given unique name, arguments, and options.
|
|
44
|
+
*
|
|
45
|
+
* @param name The _unique_ name of the resource.
|
|
46
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
47
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
48
|
+
*/
|
|
49
|
+
constructor(name: string, args?: PublicKeyArgs, opts?: pulumi.CustomResourceOptions);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* The set of arguments for constructing a PublicKey resource.
|
|
53
|
+
*/
|
|
54
|
+
export interface PublicKeyArgs {
|
|
55
|
+
/**
|
|
56
|
+
* Name of the public key to be imported. The value does not need to be unique.
|
|
57
|
+
*/
|
|
58
|
+
name?: pulumi.Input<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The public portion of a customer-generated key pair.
|
|
61
|
+
*/
|
|
62
|
+
publicKeyMaterial?: pulumi.Input<string>;
|
|
63
|
+
/**
|
|
64
|
+
* A list of key-value pairs that contain metadata for the asset model.
|
|
65
|
+
*/
|
|
66
|
+
tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
|
|
67
|
+
}
|
package/ivs/publicKey.js
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.PublicKey = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
10
|
+
*/
|
|
11
|
+
class PublicKey extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing PublicKey resource's state with the given name, ID, and optional extra
|
|
14
|
+
* properties used to qualify the lookup.
|
|
15
|
+
*
|
|
16
|
+
* @param name The _unique_ name of the resulting resource.
|
|
17
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
18
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
19
|
+
*/
|
|
20
|
+
static get(name, id, opts) {
|
|
21
|
+
return new PublicKey(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Returns true if the given object is an instance of PublicKey. This is designed to work even
|
|
25
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
26
|
+
*/
|
|
27
|
+
static isInstance(obj) {
|
|
28
|
+
if (obj === undefined || obj === null) {
|
|
29
|
+
return false;
|
|
30
|
+
}
|
|
31
|
+
return obj['__pulumiType'] === PublicKey.__pulumiType;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Create a PublicKey resource with the given unique name, arguments, and options.
|
|
35
|
+
*
|
|
36
|
+
* @param name The _unique_ name of the resource.
|
|
37
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
38
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
39
|
+
*/
|
|
40
|
+
constructor(name, args, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (!opts.id) {
|
|
44
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
45
|
+
resourceInputs["publicKeyMaterial"] = args ? args.publicKeyMaterial : undefined;
|
|
46
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
47
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
48
|
+
resourceInputs["fingerprint"] = undefined /*out*/;
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
52
|
+
resourceInputs["fingerprint"] = undefined /*out*/;
|
|
53
|
+
resourceInputs["name"] = undefined /*out*/;
|
|
54
|
+
resourceInputs["publicKeyMaterial"] = undefined /*out*/;
|
|
55
|
+
resourceInputs["tags"] = undefined /*out*/;
|
|
56
|
+
}
|
|
57
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
58
|
+
const replaceOnChanges = { replaceOnChanges: ["name", "publicKeyMaterial"] };
|
|
59
|
+
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
60
|
+
super(PublicKey.__pulumiType, name, resourceInputs, opts);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.PublicKey = PublicKey;
|
|
64
|
+
/** @internal */
|
|
65
|
+
PublicKey.__pulumiType = 'aws-native:ivs:PublicKey';
|
|
66
|
+
//# sourceMappingURL=publicKey.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"publicKey.js","sourceRoot":"","sources":["../../ivs/publicKey.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,SAAS,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IAuBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAoB,EAAE,IAAmC;QAC/E,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrD;aAAM;YACH,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,mBAAmB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,gBAAgB,GAAG,EAAE,gBAAgB,EAAE,CAAC,MAAM,EAAE,mBAAmB,CAAC,EAAE,CAAC;QAC7E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;QACnD,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;;AA3EL,8BA4EC;AA/DG,gBAAgB;AACO,sBAAY,GAAG,0BAA0B,CAAC"}
|
package/ivs/stage.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export declare class Stage extends pulumi.CustomResource {
|
|
|
27
27
|
* Stage ARN is automatically generated on creation and assigned as the unique identifier.
|
|
28
28
|
*/
|
|
29
29
|
readonly arn: pulumi.Output<string>;
|
|
30
|
+
readonly autoParticipantRecordingConfiguration: pulumi.Output<outputs.ivs.StageAutoParticipantRecordingConfiguration | undefined>;
|
|
30
31
|
/**
|
|
31
32
|
* Stage name
|
|
32
33
|
*/
|
|
@@ -48,6 +49,7 @@ export declare class Stage extends pulumi.CustomResource {
|
|
|
48
49
|
* The set of arguments for constructing a Stage resource.
|
|
49
50
|
*/
|
|
50
51
|
export interface StageArgs {
|
|
52
|
+
autoParticipantRecordingConfiguration?: pulumi.Input<inputs.ivs.StageAutoParticipantRecordingConfigurationArgs>;
|
|
51
53
|
/**
|
|
52
54
|
* Stage name
|
|
53
55
|
*/
|
package/ivs/stage.js
CHANGED
|
@@ -41,6 +41,7 @@ class Stage extends pulumi.CustomResource {
|
|
|
41
41
|
let resourceInputs = {};
|
|
42
42
|
opts = opts || {};
|
|
43
43
|
if (!opts.id) {
|
|
44
|
+
resourceInputs["autoParticipantRecordingConfiguration"] = args ? args.autoParticipantRecordingConfiguration : undefined;
|
|
44
45
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
45
46
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
46
47
|
resourceInputs["activeSessionId"] = undefined /*out*/;
|
|
@@ -49,6 +50,7 @@ class Stage extends pulumi.CustomResource {
|
|
|
49
50
|
else {
|
|
50
51
|
resourceInputs["activeSessionId"] = undefined /*out*/;
|
|
51
52
|
resourceInputs["arn"] = undefined /*out*/;
|
|
53
|
+
resourceInputs["autoParticipantRecordingConfiguration"] = undefined /*out*/;
|
|
52
54
|
resourceInputs["name"] = undefined /*out*/;
|
|
53
55
|
resourceInputs["tags"] = undefined /*out*/;
|
|
54
56
|
}
|
package/ivs/stage.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stage.js","sourceRoot":"","sources":["../../ivs/stage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,KAAK,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;
|
|
1
|
+
{"version":3,"file":"stage.js","sourceRoot":"","sources":["../../ivs/stage.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,KAAK,CAAC,IAAI,EAAE,SAAgB,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IAoBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAgB,EAAE,IAAmC;QAC3E,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,cAAc,CAAC,uCAAuC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qCAAqC,CAAC,CAAC,CAAC,SAAS,CAAC;YACxH,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACtD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;aAAM;YACH,cAAc,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACtD,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1C,cAAc,CAAC,uCAAuC,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5E,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;;AAtEL,sBAuEC;AA1DG,gBAAgB;AACO,kBAAY,GAAG,sBAAsB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.119.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"scripts": {
|
|
15
15
|
"build": "tsc",
|
|
16
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws-native 0.
|
|
16
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws-native 0.119.0"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@pulumi/pulumi": "^3.42.0"
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"pulumi": {
|
|
26
26
|
"resource": true,
|
|
27
27
|
"name": "aws-native",
|
|
28
|
-
"version": "0.
|
|
28
|
+
"version": "0.119.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.119.0",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "aws-native",
|
|
27
|
-
"version": "0.
|
|
27
|
+
"version": "0.119.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -25,6 +25,7 @@ export declare const FleetEc2MarketType: {
|
|
|
25
25
|
export type FleetEc2MarketType = (typeof FleetEc2MarketType)[keyof typeof FleetEc2MarketType];
|
|
26
26
|
export declare const FleetServiceManagedFleetOperatingSystemFamily: {
|
|
27
27
|
readonly Linux: "LINUX";
|
|
28
|
+
readonly Windows: "WINDOWS";
|
|
28
29
|
};
|
|
29
30
|
export type FleetServiceManagedFleetOperatingSystemFamily = (typeof FleetServiceManagedFleetOperatingSystemFamily)[keyof typeof FleetServiceManagedFleetOperatingSystemFamily];
|
|
30
31
|
export declare const FleetStatus: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/deadline/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAGpE,QAAA,oBAAoB,GAAG;IAChC,GAAG,EAAE,KAAK;CACJ,CAAC;AAIE,QAAA,oBAAoB,GAAG;IAChC,SAAS,EAAE,YAAY;IACvB,qBAAqB,EAAE,0BAA0B;CAC3C,CAAC;AAIE,QAAA,wBAAwB,GAAG;IACpC,KAAK,EAAE,QAAQ;IACf,KAAK,EAAE,OAAO;CACR,CAAC;AAIE,QAAA,8CAA8C,GAAG;IAC1D,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;CACR,CAAC;AAIE,QAAA,kBAAkB,GAAG;IAC9B,QAAQ,EAAE,WAAW;IACrB,IAAI,EAAE,MAAM;CACN,CAAC;AAIE,QAAA,6CAA6C,GAAG;IACzD,KAAK,EAAE,OAAO;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/deadline/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAGpE,QAAA,oBAAoB,GAAG;IAChC,GAAG,EAAE,KAAK;CACJ,CAAC;AAIE,QAAA,oBAAoB,GAAG;IAChC,SAAS,EAAE,YAAY;IACvB,qBAAqB,EAAE,0BAA0B;CAC3C,CAAC;AAIE,QAAA,wBAAwB,GAAG;IACpC,KAAK,EAAE,QAAQ;IACf,KAAK,EAAE,OAAO;CACR,CAAC;AAIE,QAAA,8CAA8C,GAAG;IAC1D,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;CACR,CAAC;AAIE,QAAA,kBAAkB,GAAG;IAC9B,QAAQ,EAAE,WAAW;IACrB,IAAI,EAAE,MAAM;CACN,CAAC;AAIE,QAAA,6CAA6C,GAAG;IACzD,KAAK,EAAE,OAAO;IACd,OAAO,EAAE,SAAS;CACZ,CAAC;AAIE,QAAA,WAAW,GAAG;IACvB,MAAM,EAAE,QAAQ;IAChB,gBAAgB,EAAE,oBAAoB;IACtC,gBAAgB,EAAE,oBAAoB;IACtC,YAAY,EAAE,eAAe;IAC7B,YAAY,EAAE,eAAe;CACvB,CAAC;AAIE,QAAA,qBAAqB,GAAG;IACjC,gBAAgB,EAAE,oBAAoB;IACtC,gBAAgB,EAAE,oBAAoB;IACtC,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,WAAW;CACf,CAAC;AAIE,QAAA,6BAA6B,GAAG;IACzC,IAAI,EAAE,MAAM;IACZ,8BAA8B,EAAE,oCAAoC;IACpE,4BAA4B,EAAE,kCAAkC;CAC1D,CAAC;AAIE,QAAA,uCAAuC,GAAG;IACnD,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;CACN,CAAC;AAIE,QAAA,UAAU,GAAG;IACtB,mBAAmB,EAAE,uBAAuB;IAC5C,eAAe,EAAE,mBAAmB;CAC9B,CAAC;AAIE,QAAA,oCAAoC,GAAG;IAChD,MAAM,EAAE,QAAQ;IAChB,KAAK,EAAE,OAAO;CACR,CAAC;AAIE,QAAA,mCAAmC,GAAG;IAC/C,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;CACR,CAAC"}
|
|
@@ -7,6 +7,7 @@ export declare const ChannelLatencyMode: {
|
|
|
7
7
|
*/
|
|
8
8
|
export type ChannelLatencyMode = (typeof ChannelLatencyMode)[keyof typeof ChannelLatencyMode];
|
|
9
9
|
export declare const ChannelPreset: {
|
|
10
|
+
readonly Empty: "";
|
|
10
11
|
readonly HigherBandwidthDelivery: "HIGHER_BANDWIDTH_DELIVERY";
|
|
11
12
|
readonly ConstrainedBandwidthDelivery: "CONSTRAINED_BANDWIDTH_DELIVERY";
|
|
12
13
|
};
|
|
@@ -72,3 +73,8 @@ export declare const RecordingConfigurationThumbnailConfigurationStorageItem: {
|
|
|
72
73
|
readonly Latest: "LATEST";
|
|
73
74
|
};
|
|
74
75
|
export type RecordingConfigurationThumbnailConfigurationStorageItem = (typeof RecordingConfigurationThumbnailConfigurationStorageItem)[keyof typeof RecordingConfigurationThumbnailConfigurationStorageItem];
|
|
76
|
+
export declare const StageAutoParticipantRecordingConfigurationMediaTypesItem: {
|
|
77
|
+
readonly AudioVideo: "AUDIO_VIDEO";
|
|
78
|
+
readonly AudioOnly: "AUDIO_ONLY";
|
|
79
|
+
};
|
|
80
|
+
export type StageAutoParticipantRecordingConfigurationMediaTypesItem = (typeof StageAutoParticipantRecordingConfigurationMediaTypesItem)[keyof typeof StageAutoParticipantRecordingConfigurationMediaTypesItem];
|
package/types/enums/ivs/index.js
CHANGED
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.RecordingConfigurationThumbnailConfigurationStorageItem = exports.RecordingConfigurationThumbnailConfigurationResolution = exports.RecordingConfigurationThumbnailConfigurationRecordingMode = exports.RecordingConfigurationState = exports.RecordingConfigurationRenditionConfigurationRenditionsItem = exports.RecordingConfigurationRenditionConfigurationRenditionSelection = exports.ChannelType = exports.ChannelPreset = exports.ChannelLatencyMode = void 0;
|
|
5
|
+
exports.StageAutoParticipantRecordingConfigurationMediaTypesItem = exports.RecordingConfigurationThumbnailConfigurationStorageItem = exports.RecordingConfigurationThumbnailConfigurationResolution = exports.RecordingConfigurationThumbnailConfigurationRecordingMode = exports.RecordingConfigurationState = exports.RecordingConfigurationRenditionConfigurationRenditionsItem = exports.RecordingConfigurationRenditionConfigurationRenditionSelection = exports.ChannelType = exports.ChannelPreset = exports.ChannelLatencyMode = void 0;
|
|
6
6
|
exports.ChannelLatencyMode = {
|
|
7
7
|
Normal: "NORMAL",
|
|
8
8
|
Low: "LOW",
|
|
9
9
|
};
|
|
10
10
|
exports.ChannelPreset = {
|
|
11
|
+
Empty: "",
|
|
11
12
|
HigherBandwidthDelivery: "HIGHER_BANDWIDTH_DELIVERY",
|
|
12
13
|
ConstrainedBandwidthDelivery: "CONSTRAINED_BANDWIDTH_DELIVERY",
|
|
13
14
|
};
|
|
@@ -47,4 +48,8 @@ exports.RecordingConfigurationThumbnailConfigurationStorageItem = {
|
|
|
47
48
|
Sequential: "SEQUENTIAL",
|
|
48
49
|
Latest: "LATEST",
|
|
49
50
|
};
|
|
51
|
+
exports.StageAutoParticipantRecordingConfigurationMediaTypesItem = {
|
|
52
|
+
AudioVideo: "AUDIO_VIDEO",
|
|
53
|
+
AudioOnly: "AUDIO_ONLY",
|
|
54
|
+
};
|
|
50
55
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/ivs/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAGpE,QAAA,kBAAkB,GAAG;IAC9B,MAAM,EAAE,QAAQ;IAChB,GAAG,EAAE,KAAK;CACJ,CAAC;AAOE,QAAA,aAAa,GAAG;IACzB,uBAAuB,EAAE,2BAA2B;IACpD,4BAA4B,EAAE,gCAAgC;CACxD,CAAC;AAOE,QAAA,WAAW,GAAG;IACvB,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,aAAa;IACzB,UAAU,EAAE,aAAa;CACnB,CAAC;AAOE,QAAA,8DAA8D,GAAG;IAC1E,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;CACV,CAAC;AAOE,QAAA,0DAA0D,GAAG;IACtE,MAAM,EAAE,SAAS;IACjB,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,gBAAgB,EAAE,mBAAmB;CAC/B,CAAC;AAIE,QAAA,2BAA2B,GAAG;IACvC,QAAQ,EAAE,UAAU;IACpB,YAAY,EAAE,eAAe;IAC7B,MAAM,EAAE,QAAQ;CACV,CAAC;AAOE,QAAA,yDAAyD,GAAG;IACrE,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;CACd,CAAC;AAOE,QAAA,sDAAsD,GAAG;IAClE,MAAM,EAAE,SAAS;IACjB,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,gBAAgB,EAAE,mBAAmB;CAC/B,CAAC;AAOE,QAAA,uDAAuD,GAAG;IACnE,UAAU,EAAE,YAAY;IACxB,MAAM,EAAE,QAAQ;CACV,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/ivs/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAGpE,QAAA,kBAAkB,GAAG;IAC9B,MAAM,EAAE,QAAQ;IAChB,GAAG,EAAE,KAAK;CACJ,CAAC;AAOE,QAAA,aAAa,GAAG;IACzB,KAAK,EAAE,EAAE;IACT,uBAAuB,EAAE,2BAA2B;IACpD,4BAA4B,EAAE,gCAAgC;CACxD,CAAC;AAOE,QAAA,WAAW,GAAG;IACvB,QAAQ,EAAE,UAAU;IACpB,KAAK,EAAE,OAAO;IACd,UAAU,EAAE,aAAa;IACzB,UAAU,EAAE,aAAa;CACnB,CAAC;AAOE,QAAA,8DAA8D,GAAG;IAC1E,GAAG,EAAE,KAAK;IACV,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;CACV,CAAC;AAOE,QAAA,0DAA0D,GAAG;IACtE,MAAM,EAAE,SAAS;IACjB,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,gBAAgB,EAAE,mBAAmB;CAC/B,CAAC;AAIE,QAAA,2BAA2B,GAAG;IACvC,QAAQ,EAAE,UAAU;IACpB,YAAY,EAAE,eAAe;IAC7B,MAAM,EAAE,QAAQ;CACV,CAAC;AAOE,QAAA,yDAAyD,GAAG;IACrE,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;CACd,CAAC;AAOE,QAAA,sDAAsD,GAAG;IAClE,MAAM,EAAE,SAAS;IACjB,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,gBAAgB,EAAE,mBAAmB;CAC/B,CAAC;AAOE,QAAA,uDAAuD,GAAG;IACnE,UAAU,EAAE,YAAY;IACxB,MAAM,EAAE,QAAQ;CACV,CAAC;AAIE,QAAA,wDAAwD,GAAG;IACpE,UAAU,EAAE,aAAa;IACzB,SAAS,EAAE,YAAY;CACjB,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -20278,7 +20278,7 @@ export declare namespace ec2 {
|
|
|
20278
20278
|
validUntil?: pulumi.Input<string>;
|
|
20279
20279
|
}
|
|
20280
20280
|
/**
|
|
20281
|
-
* Specifies a tag. For more information, see [
|
|
20281
|
+
* Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
|
|
20282
20282
|
*/
|
|
20283
20283
|
interface LaunchTemplateTagArgs {
|
|
20284
20284
|
/**
|
|
@@ -27508,7 +27508,7 @@ export declare namespace gamelift {
|
|
|
27508
27508
|
*/
|
|
27509
27509
|
location: pulumi.Input<string>;
|
|
27510
27510
|
/**
|
|
27511
|
-
* Current resource capacity settings for managed EC2 fleets
|
|
27511
|
+
* Current resource capacity settings for managed EC2 fleets. For multi-location fleets, location values might refer to a fleet's remote location or its home Region.
|
|
27512
27512
|
*
|
|
27513
27513
|
* *Returned by:* [DescribeFleetCapacity](https://docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeFleetCapacity.html) , [DescribeFleetLocationCapacity](https://docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeFleetLocationCapacity.html) , [UpdateFleetCapacity](https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateFleetCapacity.html)
|
|
27514
27514
|
*/
|
|
@@ -27819,6 +27819,91 @@ export declare namespace globalaccelerator {
|
|
|
27819
27819
|
}
|
|
27820
27820
|
}
|
|
27821
27821
|
export declare namespace glue {
|
|
27822
|
+
/**
|
|
27823
|
+
* The AWS Lake Formation principal.
|
|
27824
|
+
*/
|
|
27825
|
+
interface DatabaseDataLakePrincipalArgs {
|
|
27826
|
+
/**
|
|
27827
|
+
* An identifier for the AWS Lake Formation principal.
|
|
27828
|
+
*/
|
|
27829
|
+
dataLakePrincipalIdentifier?: pulumi.Input<string>;
|
|
27830
|
+
}
|
|
27831
|
+
/**
|
|
27832
|
+
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
|
|
27833
|
+
*/
|
|
27834
|
+
interface DatabaseFederatedDatabaseArgs {
|
|
27835
|
+
/**
|
|
27836
|
+
* The name of the connection to the external metastore.
|
|
27837
|
+
*/
|
|
27838
|
+
connectionName?: pulumi.Input<string>;
|
|
27839
|
+
/**
|
|
27840
|
+
* A unique identifier for the federated database.
|
|
27841
|
+
*/
|
|
27842
|
+
identifier?: pulumi.Input<string>;
|
|
27843
|
+
}
|
|
27844
|
+
/**
|
|
27845
|
+
* A structure that describes a target database for resource linking.
|
|
27846
|
+
*/
|
|
27847
|
+
interface DatabaseIdentifierArgs {
|
|
27848
|
+
/**
|
|
27849
|
+
* The ID of the Data Catalog in which the database resides.
|
|
27850
|
+
*/
|
|
27851
|
+
catalogId?: pulumi.Input<string>;
|
|
27852
|
+
/**
|
|
27853
|
+
* The name of the catalog database.
|
|
27854
|
+
*/
|
|
27855
|
+
databaseName?: pulumi.Input<string>;
|
|
27856
|
+
/**
|
|
27857
|
+
* Region of the target database.
|
|
27858
|
+
*/
|
|
27859
|
+
region?: pulumi.Input<string>;
|
|
27860
|
+
}
|
|
27861
|
+
/**
|
|
27862
|
+
* The structure used to create or update a database.
|
|
27863
|
+
*/
|
|
27864
|
+
interface DatabaseInputArgs {
|
|
27865
|
+
/**
|
|
27866
|
+
* 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.
|
|
27867
|
+
*/
|
|
27868
|
+
createTableDefaultPermissions?: pulumi.Input<pulumi.Input<inputs.glue.DatabasePrincipalPrivilegesArgs>[]>;
|
|
27869
|
+
/**
|
|
27870
|
+
* A description of the database.
|
|
27871
|
+
*/
|
|
27872
|
+
description?: pulumi.Input<string>;
|
|
27873
|
+
/**
|
|
27874
|
+
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
|
|
27875
|
+
*/
|
|
27876
|
+
federatedDatabase?: pulumi.Input<inputs.glue.DatabaseFederatedDatabaseArgs>;
|
|
27877
|
+
/**
|
|
27878
|
+
* The location of the database (for example, an HDFS path).
|
|
27879
|
+
*/
|
|
27880
|
+
locationUri?: pulumi.Input<string>;
|
|
27881
|
+
/**
|
|
27882
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is stored.
|
|
27883
|
+
*/
|
|
27884
|
+
name?: pulumi.Input<string>;
|
|
27885
|
+
/**
|
|
27886
|
+
* These key-value pairs define parameters and properties of the database.
|
|
27887
|
+
*/
|
|
27888
|
+
parameters?: any;
|
|
27889
|
+
/**
|
|
27890
|
+
* A DatabaseIdentifier structure that describes a target database for resource linking.
|
|
27891
|
+
*/
|
|
27892
|
+
targetDatabase?: pulumi.Input<inputs.glue.DatabaseIdentifierArgs>;
|
|
27893
|
+
}
|
|
27894
|
+
/**
|
|
27895
|
+
* The permissions granted to a principal.
|
|
27896
|
+
*/
|
|
27897
|
+
interface DatabasePrincipalPrivilegesArgs {
|
|
27898
|
+
/**
|
|
27899
|
+
* The permissions that are granted to the principal.
|
|
27900
|
+
*/
|
|
27901
|
+
permissions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
27902
|
+
/**
|
|
27903
|
+
* The principal who is granted permissions.
|
|
27904
|
+
*/
|
|
27905
|
+
principal?: pulumi.Input<inputs.glue.DatabaseDataLakePrincipalArgs>;
|
|
27906
|
+
}
|
|
27822
27907
|
/**
|
|
27823
27908
|
* Identifier for the registry which the schema is part of.
|
|
27824
27909
|
*/
|
|
@@ -34199,6 +34284,19 @@ export declare namespace ivs {
|
|
|
34199
34284
|
*/
|
|
34200
34285
|
targetIntervalSeconds?: pulumi.Input<number>;
|
|
34201
34286
|
}
|
|
34287
|
+
/**
|
|
34288
|
+
* Configuration object for individual participant recording, to attach to the new stage.
|
|
34289
|
+
*/
|
|
34290
|
+
interface StageAutoParticipantRecordingConfigurationArgs {
|
|
34291
|
+
/**
|
|
34292
|
+
* Types of media to be recorded. Default: AUDIO_VIDEO.
|
|
34293
|
+
*/
|
|
34294
|
+
mediaTypes?: pulumi.Input<pulumi.Input<enums.ivs.StageAutoParticipantRecordingConfigurationMediaTypesItem>[]>;
|
|
34295
|
+
/**
|
|
34296
|
+
* ARN of the StorageConfiguration resource to use for individual participant recording.
|
|
34297
|
+
*/
|
|
34298
|
+
storageConfigurationArn: pulumi.Input<string>;
|
|
34299
|
+
}
|
|
34202
34300
|
/**
|
|
34203
34301
|
* A complex type that describes an S3 location where recorded videos will be stored.
|
|
34204
34302
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -20856,7 +20856,7 @@ export declare namespace ec2 {
|
|
|
20856
20856
|
validUntil?: string;
|
|
20857
20857
|
}
|
|
20858
20858
|
/**
|
|
20859
|
-
* Specifies a tag. For more information, see [
|
|
20859
|
+
* Specifies a tag. For more information, see [Resource tags](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
|
|
20860
20860
|
*/
|
|
20861
20861
|
interface LaunchTemplateTag {
|
|
20862
20862
|
/**
|
|
@@ -28632,7 +28632,7 @@ export declare namespace gamelift {
|
|
|
28632
28632
|
*/
|
|
28633
28633
|
location: string;
|
|
28634
28634
|
/**
|
|
28635
|
-
* Current resource capacity settings for managed EC2 fleets
|
|
28635
|
+
* Current resource capacity settings for managed EC2 fleets. For multi-location fleets, location values might refer to a fleet's remote location or its home Region.
|
|
28636
28636
|
*
|
|
28637
28637
|
* *Returned by:* [DescribeFleetCapacity](https://docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeFleetCapacity.html) , [DescribeFleetLocationCapacity](https://docs.aws.amazon.com/gamelift/latest/apireference/API_DescribeFleetLocationCapacity.html) , [UpdateFleetCapacity](https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateFleetCapacity.html)
|
|
28638
28638
|
*/
|
|
@@ -28943,6 +28943,91 @@ export declare namespace globalaccelerator {
|
|
|
28943
28943
|
}
|
|
28944
28944
|
}
|
|
28945
28945
|
export declare namespace glue {
|
|
28946
|
+
/**
|
|
28947
|
+
* The AWS Lake Formation principal.
|
|
28948
|
+
*/
|
|
28949
|
+
interface DatabaseDataLakePrincipal {
|
|
28950
|
+
/**
|
|
28951
|
+
* An identifier for the AWS Lake Formation principal.
|
|
28952
|
+
*/
|
|
28953
|
+
dataLakePrincipalIdentifier?: string;
|
|
28954
|
+
}
|
|
28955
|
+
/**
|
|
28956
|
+
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
|
|
28957
|
+
*/
|
|
28958
|
+
interface DatabaseFederatedDatabase {
|
|
28959
|
+
/**
|
|
28960
|
+
* The name of the connection to the external metastore.
|
|
28961
|
+
*/
|
|
28962
|
+
connectionName?: string;
|
|
28963
|
+
/**
|
|
28964
|
+
* A unique identifier for the federated database.
|
|
28965
|
+
*/
|
|
28966
|
+
identifier?: string;
|
|
28967
|
+
}
|
|
28968
|
+
/**
|
|
28969
|
+
* A structure that describes a target database for resource linking.
|
|
28970
|
+
*/
|
|
28971
|
+
interface DatabaseIdentifier {
|
|
28972
|
+
/**
|
|
28973
|
+
* The ID of the Data Catalog in which the database resides.
|
|
28974
|
+
*/
|
|
28975
|
+
catalogId?: string;
|
|
28976
|
+
/**
|
|
28977
|
+
* The name of the catalog database.
|
|
28978
|
+
*/
|
|
28979
|
+
databaseName?: string;
|
|
28980
|
+
/**
|
|
28981
|
+
* Region of the target database.
|
|
28982
|
+
*/
|
|
28983
|
+
region?: string;
|
|
28984
|
+
}
|
|
28985
|
+
/**
|
|
28986
|
+
* The structure used to create or update a database.
|
|
28987
|
+
*/
|
|
28988
|
+
interface DatabaseInput {
|
|
28989
|
+
/**
|
|
28990
|
+
* 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.
|
|
28991
|
+
*/
|
|
28992
|
+
createTableDefaultPermissions?: outputs.glue.DatabasePrincipalPrivileges[];
|
|
28993
|
+
/**
|
|
28994
|
+
* A description of the database.
|
|
28995
|
+
*/
|
|
28996
|
+
description?: string;
|
|
28997
|
+
/**
|
|
28998
|
+
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
|
|
28999
|
+
*/
|
|
29000
|
+
federatedDatabase?: outputs.glue.DatabaseFederatedDatabase;
|
|
29001
|
+
/**
|
|
29002
|
+
* The location of the database (for example, an HDFS path).
|
|
29003
|
+
*/
|
|
29004
|
+
locationUri?: string;
|
|
29005
|
+
/**
|
|
29006
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is stored.
|
|
29007
|
+
*/
|
|
29008
|
+
name?: string;
|
|
29009
|
+
/**
|
|
29010
|
+
* These key-value pairs define parameters and properties of the database.
|
|
29011
|
+
*/
|
|
29012
|
+
parameters?: any;
|
|
29013
|
+
/**
|
|
29014
|
+
* A DatabaseIdentifier structure that describes a target database for resource linking.
|
|
29015
|
+
*/
|
|
29016
|
+
targetDatabase?: outputs.glue.DatabaseIdentifier;
|
|
29017
|
+
}
|
|
29018
|
+
/**
|
|
29019
|
+
* The permissions granted to a principal.
|
|
29020
|
+
*/
|
|
29021
|
+
interface DatabasePrincipalPrivileges {
|
|
29022
|
+
/**
|
|
29023
|
+
* The permissions that are granted to the principal.
|
|
29024
|
+
*/
|
|
29025
|
+
permissions?: string[];
|
|
29026
|
+
/**
|
|
29027
|
+
* The principal who is granted permissions.
|
|
29028
|
+
*/
|
|
29029
|
+
principal?: outputs.glue.DatabaseDataLakePrincipal;
|
|
29030
|
+
}
|
|
28946
29031
|
/**
|
|
28947
29032
|
* Identifier for the registry which the schema is part of.
|
|
28948
29033
|
*/
|
|
@@ -35377,6 +35462,19 @@ export declare namespace ivs {
|
|
|
35377
35462
|
*/
|
|
35378
35463
|
targetIntervalSeconds?: number;
|
|
35379
35464
|
}
|
|
35465
|
+
/**
|
|
35466
|
+
* Configuration object for individual participant recording, to attach to the new stage.
|
|
35467
|
+
*/
|
|
35468
|
+
interface StageAutoParticipantRecordingConfiguration {
|
|
35469
|
+
/**
|
|
35470
|
+
* Types of media to be recorded. Default: AUDIO_VIDEO.
|
|
35471
|
+
*/
|
|
35472
|
+
mediaTypes?: enums.ivs.StageAutoParticipantRecordingConfigurationMediaTypesItem[];
|
|
35473
|
+
/**
|
|
35474
|
+
* ARN of the StorageConfiguration resource to use for individual participant recording.
|
|
35475
|
+
*/
|
|
35476
|
+
storageConfigurationArn: string;
|
|
35477
|
+
}
|
|
35380
35478
|
/**
|
|
35381
35479
|
* A complex type that describes an S3 location where recorded videos will be stored.
|
|
35382
35480
|
*/
|