@pulumi/aws-native 1.38.0-alpha.1762234865 → 1.38.0-alpha.1762272920
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/appstream/getImageBuilder.d.ts +0 -4
- package/appstream/getImageBuilder.js.map +1 -1
- package/appstream/imageBuilder.d.ts +0 -8
- package/appstream/imageBuilder.js.map +1 -1
- package/arcregionswitch/getPlan.d.ts +0 -3
- package/arcregionswitch/getPlan.js.map +1 -1
- package/arcregionswitch/plan.d.ts +0 -3
- package/arcregionswitch/plan.js.map +1 -1
- package/bedrockagentcore/getWorkloadIdentity.d.ts +44 -0
- package/bedrockagentcore/getWorkloadIdentity.js +28 -0
- package/bedrockagentcore/getWorkloadIdentity.js.map +1 -0
- package/bedrockagentcore/index.d.ts +6 -0
- package/bedrockagentcore/index.js +8 -1
- package/bedrockagentcore/index.js.map +1 -1
- package/bedrockagentcore/workloadIdentity.d.ts +71 -0
- package/bedrockagentcore/workloadIdentity.js +68 -0
- package/bedrockagentcore/workloadIdentity.js.map +1 -0
- package/cognito/getTerms.d.ts +27 -0
- package/cognito/getTerms.js +30 -0
- package/cognito/getTerms.js.map +1 -0
- package/cognito/index.d.ts +6 -0
- package/cognito/index.js +8 -1
- package/cognito/index.js.map +1 -1
- package/cognito/terms.d.ts +51 -0
- package/cognito/terms.js +82 -0
- package/cognito/terms.js.map +1 -0
- package/glue/getIntegrationResourceProperty.d.ts +48 -0
- package/glue/getIntegrationResourceProperty.js +30 -0
- package/glue/getIntegrationResourceProperty.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/glue/integrationResourceProperty.d.ts +71 -0
- package/glue/integrationResourceProperty.js +69 -0
- package/glue/integrationResourceProperty.js.map +1 -0
- package/package.json +3 -3
- package/package.json.dev +2 -2
- package/qbusiness/application.d.ts +2 -2
- package/s3vectors/getIndex.d.ts +20 -0
- package/s3vectors/getIndex.js.map +1 -1
- package/s3vectors/getVectorBucket.d.ts +20 -0
- package/s3vectors/getVectorBucket.js.map +1 -1
- package/s3vectors/getVectorBucketPolicy.d.ts +9 -0
- package/s3vectors/getVectorBucketPolicy.js.map +1 -1
- package/s3vectors/index_.d.ts +70 -0
- package/s3vectors/index_.js.map +1 -1
- package/s3vectors/vectorBucket.d.ts +30 -0
- package/s3vectors/vectorBucket.js.map +1 -1
- package/s3vectors/vectorBucketPolicy.d.ts +18 -0
- package/s3vectors/vectorBucketPolicy.js.map +1 -1
- package/types/enums/cognito/index.d.ts +8 -0
- package/types/enums/cognito/index.js +7 -1
- package/types/enums/cognito/index.js.map +1 -1
- package/types/enums/ecs/index.d.ts +1 -0
- package/types/enums/ecs/index.js +1 -0
- package/types/enums/ecs/index.js.map +1 -1
- package/types/input.d.ts +76 -11
- package/types/output.d.ts +76 -11
- package/types/output.js.map +1 -1
- package/wafv2/getWebAcl.d.ts +4 -0
- package/wafv2/getWebAcl.js.map +1 -1
- package/wafv2/webAcl.d.ts +8 -0
- package/wafv2/webAcl.js +2 -0
- package/wafv2/webAcl.js.map +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as enums from "../types/enums";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::Cognito::Terms
|
|
5
|
+
*/
|
|
6
|
+
export declare class Terms extends pulumi.CustomResource {
|
|
7
|
+
/**
|
|
8
|
+
* Get an existing Terms resource's state with the given name, ID, and optional extra
|
|
9
|
+
* properties used to qualify the lookup.
|
|
10
|
+
*
|
|
11
|
+
* @param name The _unique_ name of the resulting resource.
|
|
12
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
13
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
14
|
+
*/
|
|
15
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Terms;
|
|
16
|
+
/**
|
|
17
|
+
* Returns true if the given object is an instance of Terms. This is designed to work even
|
|
18
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
19
|
+
*/
|
|
20
|
+
static isInstance(obj: any): obj is Terms;
|
|
21
|
+
readonly clientId: pulumi.Output<string | undefined>;
|
|
22
|
+
readonly enforcement: pulumi.Output<enums.cognito.TermsEnforcementType>;
|
|
23
|
+
readonly links: pulumi.Output<{
|
|
24
|
+
[key: string]: string;
|
|
25
|
+
}>;
|
|
26
|
+
readonly termsId: pulumi.Output<string>;
|
|
27
|
+
readonly termsName: pulumi.Output<string>;
|
|
28
|
+
readonly termsSource: pulumi.Output<enums.cognito.TermsSourceType>;
|
|
29
|
+
readonly userPoolId: pulumi.Output<string>;
|
|
30
|
+
/**
|
|
31
|
+
* Create a Terms resource with the given unique name, arguments, and options.
|
|
32
|
+
*
|
|
33
|
+
* @param name The _unique_ name of the resource.
|
|
34
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
35
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
36
|
+
*/
|
|
37
|
+
constructor(name: string, args: TermsArgs, opts?: pulumi.CustomResourceOptions);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* The set of arguments for constructing a Terms resource.
|
|
41
|
+
*/
|
|
42
|
+
export interface TermsArgs {
|
|
43
|
+
clientId?: pulumi.Input<string>;
|
|
44
|
+
enforcement: pulumi.Input<enums.cognito.TermsEnforcementType>;
|
|
45
|
+
links: pulumi.Input<{
|
|
46
|
+
[key: string]: pulumi.Input<string>;
|
|
47
|
+
}>;
|
|
48
|
+
termsName?: pulumi.Input<string>;
|
|
49
|
+
termsSource: pulumi.Input<enums.cognito.TermsSourceType>;
|
|
50
|
+
userPoolId: pulumi.Input<string>;
|
|
51
|
+
}
|
package/cognito/terms.js
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
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.Terms = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource Type definition for AWS::Cognito::Terms
|
|
10
|
+
*/
|
|
11
|
+
class Terms extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing Terms 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 Terms(name, undefined, { ...opts, id: id });
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Returns true if the given object is an instance of Terms. 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'] === Terms.__pulumiType;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Create a Terms 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?.enforcement === undefined && !opts.urn) {
|
|
45
|
+
throw new Error("Missing required property 'enforcement'");
|
|
46
|
+
}
|
|
47
|
+
if (args?.links === undefined && !opts.urn) {
|
|
48
|
+
throw new Error("Missing required property 'links'");
|
|
49
|
+
}
|
|
50
|
+
if (args?.termsSource === undefined && !opts.urn) {
|
|
51
|
+
throw new Error("Missing required property 'termsSource'");
|
|
52
|
+
}
|
|
53
|
+
if (args?.userPoolId === undefined && !opts.urn) {
|
|
54
|
+
throw new Error("Missing required property 'userPoolId'");
|
|
55
|
+
}
|
|
56
|
+
resourceInputs["clientId"] = args?.clientId;
|
|
57
|
+
resourceInputs["enforcement"] = args?.enforcement;
|
|
58
|
+
resourceInputs["links"] = args?.links;
|
|
59
|
+
resourceInputs["termsName"] = args?.termsName;
|
|
60
|
+
resourceInputs["termsSource"] = args?.termsSource;
|
|
61
|
+
resourceInputs["userPoolId"] = args?.userPoolId;
|
|
62
|
+
resourceInputs["termsId"] = undefined /*out*/;
|
|
63
|
+
}
|
|
64
|
+
else {
|
|
65
|
+
resourceInputs["clientId"] = undefined /*out*/;
|
|
66
|
+
resourceInputs["enforcement"] = undefined /*out*/;
|
|
67
|
+
resourceInputs["links"] = undefined /*out*/;
|
|
68
|
+
resourceInputs["termsId"] = undefined /*out*/;
|
|
69
|
+
resourceInputs["termsName"] = undefined /*out*/;
|
|
70
|
+
resourceInputs["termsSource"] = undefined /*out*/;
|
|
71
|
+
resourceInputs["userPoolId"] = undefined /*out*/;
|
|
72
|
+
}
|
|
73
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
74
|
+
const replaceOnChanges = { replaceOnChanges: ["clientId", "userPoolId"] };
|
|
75
|
+
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
76
|
+
super(Terms.__pulumiType, name, resourceInputs, opts);
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
exports.Terms = Terms;
|
|
80
|
+
/** @internal */
|
|
81
|
+
Terms.__pulumiType = 'aws-native:cognito:Terms';
|
|
82
|
+
//# sourceMappingURL=terms.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"terms.js","sourceRoot":"","sources":["../../cognito/terms.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
5
|
+
*/
|
|
6
|
+
export declare function getIntegrationResourceProperty(args: GetIntegrationResourcePropertyArgs, opts?: pulumi.InvokeOptions): Promise<GetIntegrationResourcePropertyResult>;
|
|
7
|
+
export interface GetIntegrationResourcePropertyArgs {
|
|
8
|
+
/**
|
|
9
|
+
* The connection ARN of the source, or the database ARN of the target.
|
|
10
|
+
*/
|
|
11
|
+
resourceArn: string;
|
|
12
|
+
/**
|
|
13
|
+
* The integration resource property ARN.
|
|
14
|
+
*/
|
|
15
|
+
resourcePropertyArn: string;
|
|
16
|
+
}
|
|
17
|
+
export interface GetIntegrationResourcePropertyResult {
|
|
18
|
+
/**
|
|
19
|
+
* The integration resource property ARN.
|
|
20
|
+
*/
|
|
21
|
+
readonly resourcePropertyArn?: string;
|
|
22
|
+
/**
|
|
23
|
+
* The resource properties associated with the integration source.
|
|
24
|
+
*/
|
|
25
|
+
readonly sourceProcessingProperties?: outputs.glue.SourceProcessingPropertiesProperties;
|
|
26
|
+
/**
|
|
27
|
+
* An array of key-value pairs to apply to this resource.
|
|
28
|
+
*/
|
|
29
|
+
readonly tags?: outputs.Tag[];
|
|
30
|
+
/**
|
|
31
|
+
* The resource properties associated with the integration target.
|
|
32
|
+
*/
|
|
33
|
+
readonly targetProcessingProperties?: outputs.glue.TargetProcessingPropertiesProperties;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
37
|
+
*/
|
|
38
|
+
export declare function getIntegrationResourcePropertyOutput(args: GetIntegrationResourcePropertyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIntegrationResourcePropertyResult>;
|
|
39
|
+
export interface GetIntegrationResourcePropertyOutputArgs {
|
|
40
|
+
/**
|
|
41
|
+
* The connection ARN of the source, or the database ARN of the target.
|
|
42
|
+
*/
|
|
43
|
+
resourceArn: pulumi.Input<string>;
|
|
44
|
+
/**
|
|
45
|
+
* The integration resource property ARN.
|
|
46
|
+
*/
|
|
47
|
+
resourcePropertyArn: pulumi.Input<string>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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.getIntegrationResourcePropertyOutput = exports.getIntegrationResourceProperty = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
10
|
+
*/
|
|
11
|
+
function getIntegrationResourceProperty(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("aws-native:glue:getIntegrationResourceProperty", {
|
|
14
|
+
"resourceArn": args.resourceArn,
|
|
15
|
+
"resourcePropertyArn": args.resourcePropertyArn,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getIntegrationResourceProperty = getIntegrationResourceProperty;
|
|
19
|
+
/**
|
|
20
|
+
* Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
21
|
+
*/
|
|
22
|
+
function getIntegrationResourcePropertyOutput(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invokeOutput("aws-native:glue:getIntegrationResourceProperty", {
|
|
25
|
+
"resourceArn": args.resourceArn,
|
|
26
|
+
"resourcePropertyArn": args.resourcePropertyArn,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getIntegrationResourcePropertyOutput = getIntegrationResourcePropertyOutput;
|
|
30
|
+
//# sourceMappingURL=getIntegrationResourceProperty.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getIntegrationResourceProperty.js","sourceRoot":"","sources":["../../glue/getIntegrationResourceProperty.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE;QAC3E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wEAMC;AA+BD;;GAEG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAAiC;IAClI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gDAAgD,EAAE;QACjF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;KAClD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oFAMC"}
|
package/glue/index.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export declare const getCrawlerOutput: typeof import("./getCrawler").getCrawlerO
|
|
|
10
10
|
export { GetDatabaseArgs, GetDatabaseResult, GetDatabaseOutputArgs } from "./getDatabase";
|
|
11
11
|
export declare const getDatabase: typeof import("./getDatabase").getDatabase;
|
|
12
12
|
export declare const getDatabaseOutput: typeof import("./getDatabase").getDatabaseOutput;
|
|
13
|
+
export { GetIntegrationResourcePropertyArgs, GetIntegrationResourcePropertyResult, GetIntegrationResourcePropertyOutputArgs } from "./getIntegrationResourceProperty";
|
|
14
|
+
export declare const getIntegrationResourceProperty: typeof import("./getIntegrationResourceProperty").getIntegrationResourceProperty;
|
|
15
|
+
export declare const getIntegrationResourcePropertyOutput: typeof import("./getIntegrationResourceProperty").getIntegrationResourcePropertyOutput;
|
|
13
16
|
export { GetJobArgs, GetJobResult, GetJobOutputArgs } from "./getJob";
|
|
14
17
|
export declare const getJob: typeof import("./getJob").getJob;
|
|
15
18
|
export declare const getJobOutput: typeof import("./getJob").getJobOutput;
|
|
@@ -28,6 +31,9 @@ export declare const getTriggerOutput: typeof import("./getTrigger").getTriggerO
|
|
|
28
31
|
export { GetUsageProfileArgs, GetUsageProfileResult, GetUsageProfileOutputArgs } from "./getUsageProfile";
|
|
29
32
|
export declare const getUsageProfile: typeof import("./getUsageProfile").getUsageProfile;
|
|
30
33
|
export declare const getUsageProfileOutput: typeof import("./getUsageProfile").getUsageProfileOutput;
|
|
34
|
+
export { IntegrationResourcePropertyArgs } from "./integrationResourceProperty";
|
|
35
|
+
export type IntegrationResourceProperty = import("./integrationResourceProperty").IntegrationResourceProperty;
|
|
36
|
+
export declare const IntegrationResourceProperty: typeof import("./integrationResourceProperty").IntegrationResourceProperty;
|
|
31
37
|
export { JobArgs } from "./job";
|
|
32
38
|
export type Job = import("./job").Job;
|
|
33
39
|
export declare const Job: typeof import("./job").Job;
|
package/glue/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.UsageProfile = exports.Trigger = exports.SchemaVersionMetadata = exports.SchemaVersion = exports.Schema = exports.Registry = exports.Job = exports.getUsageProfileOutput = exports.getUsageProfile = exports.getTriggerOutput = exports.getTrigger = exports.getSchemaVersionOutput = exports.getSchemaVersion = exports.getSchemaOutput = exports.getSchema = exports.getRegistryOutput = exports.getRegistry = exports.getJobOutput = exports.getJob = exports.getDatabaseOutput = exports.getDatabase = exports.getCrawlerOutput = exports.getCrawler = exports.Database = exports.Crawler = void 0;
|
|
19
|
+
exports.UsageProfile = exports.Trigger = exports.SchemaVersionMetadata = exports.SchemaVersion = exports.Schema = exports.Registry = exports.Job = exports.IntegrationResourceProperty = exports.getUsageProfileOutput = exports.getUsageProfile = exports.getTriggerOutput = exports.getTrigger = exports.getSchemaVersionOutput = exports.getSchemaVersion = exports.getSchemaOutput = exports.getSchema = exports.getRegistryOutput = exports.getRegistry = exports.getJobOutput = exports.getJob = exports.getIntegrationResourcePropertyOutput = exports.getIntegrationResourceProperty = exports.getDatabaseOutput = exports.getDatabase = exports.getCrawlerOutput = exports.getCrawler = exports.Database = exports.Crawler = void 0;
|
|
20
20
|
const pulumi = require("@pulumi/pulumi");
|
|
21
21
|
const utilities = require("../utilities");
|
|
22
22
|
exports.Crawler = null;
|
|
@@ -29,6 +29,9 @@ utilities.lazyLoad(exports, ["getCrawler", "getCrawlerOutput"], () => require(".
|
|
|
29
29
|
exports.getDatabase = null;
|
|
30
30
|
exports.getDatabaseOutput = null;
|
|
31
31
|
utilities.lazyLoad(exports, ["getDatabase", "getDatabaseOutput"], () => require("./getDatabase"));
|
|
32
|
+
exports.getIntegrationResourceProperty = null;
|
|
33
|
+
exports.getIntegrationResourcePropertyOutput = null;
|
|
34
|
+
utilities.lazyLoad(exports, ["getIntegrationResourceProperty", "getIntegrationResourcePropertyOutput"], () => require("./getIntegrationResourceProperty"));
|
|
32
35
|
exports.getJob = null;
|
|
33
36
|
exports.getJobOutput = null;
|
|
34
37
|
utilities.lazyLoad(exports, ["getJob", "getJobOutput"], () => require("./getJob"));
|
|
@@ -47,6 +50,8 @@ utilities.lazyLoad(exports, ["getTrigger", "getTriggerOutput"], () => require(".
|
|
|
47
50
|
exports.getUsageProfile = null;
|
|
48
51
|
exports.getUsageProfileOutput = null;
|
|
49
52
|
utilities.lazyLoad(exports, ["getUsageProfile", "getUsageProfileOutput"], () => require("./getUsageProfile"));
|
|
53
|
+
exports.IntegrationResourceProperty = null;
|
|
54
|
+
utilities.lazyLoad(exports, ["IntegrationResourceProperty"], () => require("./integrationResourceProperty"));
|
|
50
55
|
exports.Job = null;
|
|
51
56
|
utilities.lazyLoad(exports, ["Job"], () => require("./job"));
|
|
52
57
|
exports.Registry = null;
|
|
@@ -71,6 +76,8 @@ const _module = {
|
|
|
71
76
|
return new exports.Crawler(name, undefined, { urn });
|
|
72
77
|
case "aws-native:glue:Database":
|
|
73
78
|
return new exports.Database(name, undefined, { urn });
|
|
79
|
+
case "aws-native:glue:IntegrationResourceProperty":
|
|
80
|
+
return new exports.IntegrationResourceProperty(name, undefined, { urn });
|
|
74
81
|
case "aws-native:glue:Job":
|
|
75
82
|
return new exports.Job(name, undefined, { urn });
|
|
76
83
|
case "aws-native:glue:Registry":
|
package/glue/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../glue/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../glue/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,71 @@
|
|
|
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::IntegrationResourceProperty
|
|
6
|
+
*/
|
|
7
|
+
export declare class IntegrationResourceProperty extends pulumi.CustomResource {
|
|
8
|
+
/**
|
|
9
|
+
* Get an existing IntegrationResourceProperty 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): IntegrationResourceProperty;
|
|
17
|
+
/**
|
|
18
|
+
* Returns true if the given object is an instance of IntegrationResourceProperty. 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 IntegrationResourceProperty;
|
|
22
|
+
/**
|
|
23
|
+
* The connection ARN of the source, or the database ARN of the target.
|
|
24
|
+
*/
|
|
25
|
+
readonly resourceArn: pulumi.Output<string>;
|
|
26
|
+
/**
|
|
27
|
+
* The integration resource property ARN.
|
|
28
|
+
*/
|
|
29
|
+
readonly resourcePropertyArn: pulumi.Output<string>;
|
|
30
|
+
/**
|
|
31
|
+
* The resource properties associated with the integration source.
|
|
32
|
+
*/
|
|
33
|
+
readonly sourceProcessingProperties: pulumi.Output<outputs.glue.SourceProcessingPropertiesProperties | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* An array of key-value pairs to apply to this resource.
|
|
36
|
+
*/
|
|
37
|
+
readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
|
|
38
|
+
/**
|
|
39
|
+
* The resource properties associated with the integration target.
|
|
40
|
+
*/
|
|
41
|
+
readonly targetProcessingProperties: pulumi.Output<outputs.glue.TargetProcessingPropertiesProperties | undefined>;
|
|
42
|
+
/**
|
|
43
|
+
* Create a IntegrationResourceProperty 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: IntegrationResourcePropertyArgs, opts?: pulumi.CustomResourceOptions);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* The set of arguments for constructing a IntegrationResourceProperty resource.
|
|
53
|
+
*/
|
|
54
|
+
export interface IntegrationResourcePropertyArgs {
|
|
55
|
+
/**
|
|
56
|
+
* The connection ARN of the source, or the database ARN of the target.
|
|
57
|
+
*/
|
|
58
|
+
resourceArn: pulumi.Input<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The resource properties associated with the integration source.
|
|
61
|
+
*/
|
|
62
|
+
sourceProcessingProperties?: pulumi.Input<inputs.glue.SourceProcessingPropertiesPropertiesArgs>;
|
|
63
|
+
/**
|
|
64
|
+
* An array of key-value pairs to apply to this resource.
|
|
65
|
+
*/
|
|
66
|
+
tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
|
|
67
|
+
/**
|
|
68
|
+
* The resource properties associated with the integration target.
|
|
69
|
+
*/
|
|
70
|
+
targetProcessingProperties?: pulumi.Input<inputs.glue.TargetProcessingPropertiesPropertiesArgs>;
|
|
71
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
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.IntegrationResourceProperty = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
10
|
+
*/
|
|
11
|
+
class IntegrationResourceProperty extends pulumi.CustomResource {
|
|
12
|
+
/**
|
|
13
|
+
* Get an existing IntegrationResourceProperty 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 IntegrationResourceProperty(name, undefined, { ...opts, id: id });
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Returns true if the given object is an instance of IntegrationResourceProperty. 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'] === IntegrationResourceProperty.__pulumiType;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Create a IntegrationResourceProperty 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?.resourceArn === undefined && !opts.urn) {
|
|
45
|
+
throw new Error("Missing required property 'resourceArn'");
|
|
46
|
+
}
|
|
47
|
+
resourceInputs["resourceArn"] = args?.resourceArn;
|
|
48
|
+
resourceInputs["sourceProcessingProperties"] = args?.sourceProcessingProperties;
|
|
49
|
+
resourceInputs["tags"] = args?.tags;
|
|
50
|
+
resourceInputs["targetProcessingProperties"] = args?.targetProcessingProperties;
|
|
51
|
+
resourceInputs["resourcePropertyArn"] = undefined /*out*/;
|
|
52
|
+
}
|
|
53
|
+
else {
|
|
54
|
+
resourceInputs["resourceArn"] = undefined /*out*/;
|
|
55
|
+
resourceInputs["resourcePropertyArn"] = undefined /*out*/;
|
|
56
|
+
resourceInputs["sourceProcessingProperties"] = undefined /*out*/;
|
|
57
|
+
resourceInputs["tags"] = undefined /*out*/;
|
|
58
|
+
resourceInputs["targetProcessingProperties"] = undefined /*out*/;
|
|
59
|
+
}
|
|
60
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
61
|
+
const replaceOnChanges = { replaceOnChanges: ["resourceArn"] };
|
|
62
|
+
opts = pulumi.mergeOptions(opts, replaceOnChanges);
|
|
63
|
+
super(IntegrationResourceProperty.__pulumiType, name, resourceInputs, opts);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
exports.IntegrationResourceProperty = IntegrationResourceProperty;
|
|
67
|
+
/** @internal */
|
|
68
|
+
IntegrationResourceProperty.__pulumiType = 'aws-native:glue:IntegrationResourceProperty';
|
|
69
|
+
//# sourceMappingURL=integrationResourceProperty.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"integrationResourceProperty.js","sourceRoot":"","sources":["../../glue/integrationResourceProperty.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,MAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;OAOG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,IAAmC;QAC5F,OAAO,IAAI,2BAA2B,CAAC,IAAI,EAAE,SAAgB,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACxF,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,2BAA2B,CAAC,YAAY,CAAC;IAC5E,CAAC;IAuBD;;;;;;OAMG;IACH,YAAY,IAAY,EAAE,IAAqC,EAAE,IAAmC;QAChG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE;YACV,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,EAAE,0BAA0B,CAAC;YAChF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,EAAE,0BAA0B,CAAC;YAChF,cAAc,CAAC,qBAAqB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7D;aAAM;YACH,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,qBAAqB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC1D,cAAc,CAAC,4BAA4B,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjE,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,4BAA4B,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACpE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,gBAAgB,GAAG,EAAE,gBAAgB,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC;QAC/D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,gBAAgB,CAAC,CAAC;QACnD,KAAK,CAAC,2BAA2B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChF,CAAC;;AA9EL,kEA+EC;AAlEG,gBAAgB;AACO,wCAAY,GAAG,6CAA6C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws-native",
|
|
3
|
-
"version": "1.38.0-alpha.
|
|
3
|
+
"version": "1.38.0-alpha.1762272920",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"license": "Apache-2.0",
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "tsc",
|
|
18
|
-
"install": "node scripts/install-pulumi-plugin.js resource aws-native 1.38.0-alpha.
|
|
18
|
+
"install": "node scripts/install-pulumi-plugin.js resource aws-native 1.38.0-alpha.1762272920"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@pulumi/pulumi": "^3.142.0"
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"pulumi": {
|
|
28
28
|
"resource": true,
|
|
29
29
|
"name": "aws-native",
|
|
30
|
-
"version": "1.38.0-alpha.
|
|
30
|
+
"version": "1.38.0-alpha.1762272920"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws-native",
|
|
3
|
-
"version": "1.38.0-alpha.
|
|
3
|
+
"version": "1.38.0-alpha.1762272920",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"aws",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"pulumi": {
|
|
27
27
|
"resource": true,
|
|
28
28
|
"name": "aws-native",
|
|
29
|
-
"version": "1.38.0-alpha.
|
|
29
|
+
"version": "1.38.0-alpha.1762272920"
|
|
30
30
|
}
|
|
31
31
|
}
|
|
@@ -83,7 +83,7 @@ export declare class Application extends pulumi.CustomResource {
|
|
|
83
83
|
*/
|
|
84
84
|
readonly qAppsConfiguration: pulumi.Output<outputs.qbusiness.ApplicationQAppsConfiguration | undefined>;
|
|
85
85
|
/**
|
|
86
|
-
* The Amazon
|
|
86
|
+
* The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
87
87
|
*/
|
|
88
88
|
readonly quickSightConfiguration: pulumi.Output<outputs.qbusiness.ApplicationQuickSightConfiguration | undefined>;
|
|
89
89
|
/**
|
|
@@ -162,7 +162,7 @@ export interface ApplicationArgs {
|
|
|
162
162
|
*/
|
|
163
163
|
qAppsConfiguration?: pulumi.Input<inputs.qbusiness.ApplicationQAppsConfigurationArgs>;
|
|
164
164
|
/**
|
|
165
|
-
* The Amazon
|
|
165
|
+
* The Amazon Quick Suite configuration for an Amazon Q Business application that uses Quick Suite as the identity provider.
|
|
166
166
|
*/
|
|
167
167
|
quickSightConfiguration?: pulumi.Input<inputs.qbusiness.ApplicationQuickSightConfigurationArgs>;
|
|
168
168
|
/**
|
package/s3vectors/getIndex.d.ts
CHANGED
|
@@ -4,10 +4,25 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare function getIndex(args: GetIndexArgs, opts?: pulumi.InvokeOptions): Promise<GetIndexResult>;
|
|
6
6
|
export interface GetIndexArgs {
|
|
7
|
+
/**
|
|
8
|
+
* Returns the Amazon Resource Name (ARN) of the specified index.
|
|
9
|
+
*
|
|
10
|
+
* Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index`
|
|
11
|
+
*/
|
|
7
12
|
indexArn: string;
|
|
8
13
|
}
|
|
9
14
|
export interface GetIndexResult {
|
|
15
|
+
/**
|
|
16
|
+
* Returns the date and time when the vector index was created.
|
|
17
|
+
*
|
|
18
|
+
* Example: `2024-12-21T10:30:00Z`
|
|
19
|
+
*/
|
|
10
20
|
readonly creationTime?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Returns the Amazon Resource Name (ARN) of the specified index.
|
|
23
|
+
*
|
|
24
|
+
* Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index`
|
|
25
|
+
*/
|
|
11
26
|
readonly indexArn?: string;
|
|
12
27
|
}
|
|
13
28
|
/**
|
|
@@ -15,5 +30,10 @@ export interface GetIndexResult {
|
|
|
15
30
|
*/
|
|
16
31
|
export declare function getIndexOutput(args: GetIndexOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIndexResult>;
|
|
17
32
|
export interface GetIndexOutputArgs {
|
|
33
|
+
/**
|
|
34
|
+
* Returns the Amazon Resource Name (ARN) of the specified index.
|
|
35
|
+
*
|
|
36
|
+
* Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket/index/my-index`
|
|
37
|
+
*/
|
|
18
38
|
indexArn: pulumi.Input<string>;
|
|
19
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getIndex.js","sourceRoot":"","sources":["../../s3vectors/getIndex.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC;
|
|
1
|
+
{"version":3,"file":"getIndex.js","sourceRoot":"","sources":["../../s3vectors/getIndex.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+BAA+B,EAAE;QAC1D,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC;AAyBD;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+BAA+B,EAAE;QAChE,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC"}
|
|
@@ -4,10 +4,25 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare function getVectorBucket(args: GetVectorBucketArgs, opts?: pulumi.InvokeOptions): Promise<GetVectorBucketResult>;
|
|
6
6
|
export interface GetVectorBucketArgs {
|
|
7
|
+
/**
|
|
8
|
+
* Returns the Amazon Resource Name (ARN) of the specified vector bucket.
|
|
9
|
+
*
|
|
10
|
+
* Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket`
|
|
11
|
+
*/
|
|
7
12
|
vectorBucketArn: string;
|
|
8
13
|
}
|
|
9
14
|
export interface GetVectorBucketResult {
|
|
15
|
+
/**
|
|
16
|
+
* Returns the date and time when the vector bucket was created.
|
|
17
|
+
*
|
|
18
|
+
* Example: `2024-12-21T10:30:00Z`
|
|
19
|
+
*/
|
|
10
20
|
readonly creationTime?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Returns the Amazon Resource Name (ARN) of the specified vector bucket.
|
|
23
|
+
*
|
|
24
|
+
* Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket`
|
|
25
|
+
*/
|
|
11
26
|
readonly vectorBucketArn?: string;
|
|
12
27
|
}
|
|
13
28
|
/**
|
|
@@ -15,5 +30,10 @@ export interface GetVectorBucketResult {
|
|
|
15
30
|
*/
|
|
16
31
|
export declare function getVectorBucketOutput(args: GetVectorBucketOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVectorBucketResult>;
|
|
17
32
|
export interface GetVectorBucketOutputArgs {
|
|
33
|
+
/**
|
|
34
|
+
* Returns the Amazon Resource Name (ARN) of the specified vector bucket.
|
|
35
|
+
*
|
|
36
|
+
* Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket`
|
|
37
|
+
*/
|
|
18
38
|
vectorBucketArn: pulumi.Input<string>;
|
|
19
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVectorBucket.js","sourceRoot":"","sources":["../../s3vectors/getVectorBucket.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC;
|
|
1
|
+
{"version":3,"file":"getVectorBucket.js","sourceRoot":"","sources":["../../s3vectors/getVectorBucket.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC;AAyBD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sCAAsC,EAAE;QACvE,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC"}
|
|
@@ -5,9 +5,15 @@ import * as outputs from "../types/output";
|
|
|
5
5
|
*/
|
|
6
6
|
export declare function getVectorBucketPolicy(args: GetVectorBucketPolicyArgs, opts?: pulumi.InvokeOptions): Promise<GetVectorBucketPolicyResult>;
|
|
7
7
|
export interface GetVectorBucketPolicyArgs {
|
|
8
|
+
/**
|
|
9
|
+
* The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
10
|
+
*/
|
|
8
11
|
vectorBucketArn: string;
|
|
9
12
|
}
|
|
10
13
|
export interface GetVectorBucketPolicyResult {
|
|
14
|
+
/**
|
|
15
|
+
* A policy document containing permissions to add to the specified vector bucket. In IAM , you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM .
|
|
16
|
+
*/
|
|
11
17
|
readonly policy?: outputs.s3vectors.VectorBucketPolicyPolicy;
|
|
12
18
|
}
|
|
13
19
|
/**
|
|
@@ -15,5 +21,8 @@ export interface GetVectorBucketPolicyResult {
|
|
|
15
21
|
*/
|
|
16
22
|
export declare function getVectorBucketPolicyOutput(args: GetVectorBucketPolicyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVectorBucketPolicyResult>;
|
|
17
23
|
export interface GetVectorBucketPolicyOutputArgs {
|
|
24
|
+
/**
|
|
25
|
+
* The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
26
|
+
*/
|
|
18
27
|
vectorBucketArn: pulumi.Input<string>;
|
|
19
28
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVectorBucketPolicy.js","sourceRoot":"","sources":["../../s3vectors/getVectorBucketPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC;
|
|
1
|
+
{"version":3,"file":"getVectorBucketPolicy.js","sourceRoot":"","sources":["../../s3vectors/getVectorBucketPolicy.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC;AAeD;;GAEG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAAiC;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kEAKC"}
|