@pulumi/aws 6.21.0 → 6.22.0-alpha.1707518387
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/cloudfront/getOriginAccessIdentity.d.ts +4 -4
- package/cloudfront/getOriginAccessIdentity.js +2 -2
- package/cloudwatch/logSubscriptionFilter.d.ts +1 -1
- package/cloudwatch/logSubscriptionFilter.js +1 -1
- package/codebuild/project.d.ts +3 -3
- package/cognito/resourceServer.d.ts +9 -0
- package/cognito/resourceServer.js.map +1 -1
- package/controltower/index.d.ts +3 -0
- package/controltower/index.js +6 -1
- package/controltower/index.js.map +1 -1
- package/controltower/landingZone.d.ts +145 -0
- package/controltower/landingZone.js +94 -0
- package/controltower/landingZone.js.map +1 -0
- package/ec2/flowLog.d.ts +3 -3
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/lex/v2modelsSlot.d.ts +1 -1
- package/lex/v2modelsSlot.js +1 -1
- package/opensearchingest/index.d.ts +3 -0
- package/opensearchingest/index.js +22 -0
- package/opensearchingest/index.js.map +1 -0
- package/opensearchingest/pipeline.d.ts +256 -0
- package/opensearchingest/pipeline.js +154 -0
- package/opensearchingest/pipeline.js.map +1 -0
- package/package.json +1 -1
- package/rds/cluster.d.ts +4 -0
- package/rds/cluster.js +4 -0
- package/rds/cluster.js.map +1 -1
- package/rds/instance.d.ts +58 -9
- package/rds/instance.js +9 -0
- package/rds/instance.js.map +1 -1
- package/redshift/dataShareAuthorization.d.ts +118 -0
- package/redshift/dataShareAuthorization.js +87 -0
- package/redshift/dataShareAuthorization.js.map +1 -0
- package/redshift/index.d.ts +3 -0
- package/redshift/index.js +6 -1
- package/redshift/index.js.map +1 -1
- package/s3/bucketMetric.d.ts +19 -0
- package/s3/bucketMetric.js +19 -0
- package/s3/bucketMetric.js.map +1 -1
- package/securitylake/customLogSource.d.ts +136 -0
- package/securitylake/customLogSource.js +96 -0
- package/securitylake/customLogSource.js.map +1 -0
- package/securitylake/index.d.ts +3 -0
- package/securitylake/index.js +6 -1
- package/securitylake/index.js.map +1 -1
- package/ssoadmin/application.d.ts +4 -0
- package/ssoadmin/application.js +4 -0
- package/ssoadmin/application.js.map +1 -1
- package/types/input.d.ts +184 -14
- package/types/output.d.ts +187 -14
- package/verifiedaccess/group.d.ts +14 -0
- package/verifiedaccess/group.js +2 -0
- package/verifiedaccess/group.js.map +1 -1
- package/vpclattice/listener.d.ts +25 -8
- package/vpclattice/listener.js +25 -8
- package/vpclattice/listener.js.map +1 -1
- package/vpclattice/service.d.ts +4 -4
- package/wafv2/webAclAssociation.d.ts +3 -3
|
@@ -11,7 +11,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
11
11
|
* import * as aws from "@pulumi/aws";
|
|
12
12
|
*
|
|
13
13
|
* const example = aws.cloudfront.getOriginAccessIdentity({
|
|
14
|
-
* id: "
|
|
14
|
+
* id: "E1ZAKK699EOLAL",
|
|
15
15
|
* });
|
|
16
16
|
* ```
|
|
17
17
|
*/
|
|
@@ -21,7 +21,7 @@ export declare function getOriginAccessIdentity(args: GetOriginAccessIdentityArg
|
|
|
21
21
|
*/
|
|
22
22
|
export interface GetOriginAccessIdentityArgs {
|
|
23
23
|
/**
|
|
24
|
-
* The identifier for the
|
|
24
|
+
* The identifier for the origin access identity. For example: `E1ZAKK699EOLAL`.
|
|
25
25
|
*/
|
|
26
26
|
id: string;
|
|
27
27
|
}
|
|
@@ -74,7 +74,7 @@ export interface GetOriginAccessIdentityResult {
|
|
|
74
74
|
* import * as aws from "@pulumi/aws";
|
|
75
75
|
*
|
|
76
76
|
* const example = aws.cloudfront.getOriginAccessIdentity({
|
|
77
|
-
* id: "
|
|
77
|
+
* id: "E1ZAKK699EOLAL",
|
|
78
78
|
* });
|
|
79
79
|
* ```
|
|
80
80
|
*/
|
|
@@ -84,7 +84,7 @@ export declare function getOriginAccessIdentityOutput(args: GetOriginAccessIdent
|
|
|
84
84
|
*/
|
|
85
85
|
export interface GetOriginAccessIdentityOutputArgs {
|
|
86
86
|
/**
|
|
87
|
-
* The identifier for the
|
|
87
|
+
* The identifier for the origin access identity. For example: `E1ZAKK699EOLAL`.
|
|
88
88
|
*/
|
|
89
89
|
id: pulumi.Input<string>;
|
|
90
90
|
}
|
|
@@ -17,7 +17,7 @@ const utilities = require("../utilities");
|
|
|
17
17
|
* import * as aws from "@pulumi/aws";
|
|
18
18
|
*
|
|
19
19
|
* const example = aws.cloudfront.getOriginAccessIdentity({
|
|
20
|
-
* id: "
|
|
20
|
+
* id: "E1ZAKK699EOLAL",
|
|
21
21
|
* });
|
|
22
22
|
* ```
|
|
23
23
|
*/
|
|
@@ -40,7 +40,7 @@ exports.getOriginAccessIdentity = getOriginAccessIdentity;
|
|
|
40
40
|
* import * as aws from "@pulumi/aws";
|
|
41
41
|
*
|
|
42
42
|
* const example = aws.cloudfront.getOriginAccessIdentity({
|
|
43
|
-
* id: "
|
|
43
|
+
* id: "E1ZAKK699EOLAL",
|
|
44
44
|
* });
|
|
45
45
|
* ```
|
|
46
46
|
*/
|
|
@@ -23,7 +23,7 @@ import { LogGroup } from "./index";
|
|
|
23
23
|
* Using `pulumi import`, import CloudWatch Logs subscription filter using the log group name and subscription filter name separated by `|`. For example:
|
|
24
24
|
*
|
|
25
25
|
* ```sh
|
|
26
|
-
* $ pulumi import aws:cloudwatch/logSubscriptionFilter:LogSubscriptionFilter test_lambdafunction_logfilter /aws/lambda/example_lambda_name|test_lambdafunction_logfilter
|
|
26
|
+
* $ pulumi import aws:cloudwatch/logSubscriptionFilter:LogSubscriptionFilter test_lambdafunction_logfilter "/aws/lambda/example_lambda_name|test_lambdafunction_logfilter"
|
|
27
27
|
* ```
|
|
28
28
|
*/
|
|
29
29
|
export declare class LogSubscriptionFilter extends pulumi.CustomResource {
|
|
@@ -28,7 +28,7 @@ const utilities = require("../utilities");
|
|
|
28
28
|
* Using `pulumi import`, import CloudWatch Logs subscription filter using the log group name and subscription filter name separated by `|`. For example:
|
|
29
29
|
*
|
|
30
30
|
* ```sh
|
|
31
|
-
* $ pulumi import aws:cloudwatch/logSubscriptionFilter:LogSubscriptionFilter test_lambdafunction_logfilter /aws/lambda/example_lambda_name|test_lambdafunction_logfilter
|
|
31
|
+
* $ pulumi import aws:cloudwatch/logSubscriptionFilter:LogSubscriptionFilter test_lambdafunction_logfilter "/aws/lambda/example_lambda_name|test_lambdafunction_logfilter"
|
|
32
32
|
* ```
|
|
33
33
|
*/
|
|
34
34
|
class LogSubscriptionFilter extends pulumi.CustomResource {
|
package/codebuild/project.d.ts
CHANGED
|
@@ -275,7 +275,7 @@ export declare class Project extends pulumi.CustomResource {
|
|
|
275
275
|
*/
|
|
276
276
|
readonly queuedTimeout: pulumi.Output<number | undefined>;
|
|
277
277
|
/**
|
|
278
|
-
* The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds.
|
|
278
|
+
* The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds in order to display them publicly. Only applicable if `projectVisibility` is `PUBLIC_READ`.
|
|
279
279
|
*/
|
|
280
280
|
readonly resourceAccessRole: pulumi.Output<string | undefined>;
|
|
281
281
|
/**
|
|
@@ -404,7 +404,7 @@ export interface ProjectState {
|
|
|
404
404
|
*/
|
|
405
405
|
queuedTimeout?: pulumi.Input<number>;
|
|
406
406
|
/**
|
|
407
|
-
* The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds.
|
|
407
|
+
* The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds in order to display them publicly. Only applicable if `projectVisibility` is `PUBLIC_READ`.
|
|
408
408
|
*/
|
|
409
409
|
resourceAccessRole?: pulumi.Input<string>;
|
|
410
410
|
/**
|
|
@@ -513,7 +513,7 @@ export interface ProjectArgs {
|
|
|
513
513
|
*/
|
|
514
514
|
queuedTimeout?: pulumi.Input<number>;
|
|
515
515
|
/**
|
|
516
|
-
* The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds.
|
|
516
|
+
* The ARN of the IAM role that enables CodeBuild to access the CloudWatch Logs and Amazon S3 artifacts for the project's builds in order to display them publicly. Only applicable if `projectVisibility` is `PUBLIC_READ`.
|
|
517
517
|
*/
|
|
518
518
|
resourceAccessRole?: pulumi.Input<string>;
|
|
519
519
|
/**
|
|
@@ -74,6 +74,9 @@ export declare class ResourceServer extends pulumi.CustomResource {
|
|
|
74
74
|
* A list of Authorization Scope.
|
|
75
75
|
*/
|
|
76
76
|
readonly scopes: pulumi.Output<outputs.cognito.ResourceServerScope[] | undefined>;
|
|
77
|
+
/**
|
|
78
|
+
* User pool the client belongs to.
|
|
79
|
+
*/
|
|
77
80
|
readonly userPoolId: pulumi.Output<string>;
|
|
78
81
|
/**
|
|
79
82
|
* Create a ResourceServer resource with the given unique name, arguments, and options.
|
|
@@ -104,6 +107,9 @@ export interface ResourceServerState {
|
|
|
104
107
|
* A list of Authorization Scope.
|
|
105
108
|
*/
|
|
106
109
|
scopes?: pulumi.Input<pulumi.Input<inputs.cognito.ResourceServerScope>[]>;
|
|
110
|
+
/**
|
|
111
|
+
* User pool the client belongs to.
|
|
112
|
+
*/
|
|
107
113
|
userPoolId?: pulumi.Input<string>;
|
|
108
114
|
}
|
|
109
115
|
/**
|
|
@@ -122,5 +128,8 @@ export interface ResourceServerArgs {
|
|
|
122
128
|
* A list of Authorization Scope.
|
|
123
129
|
*/
|
|
124
130
|
scopes?: pulumi.Input<pulumi.Input<inputs.cognito.ResourceServerScope>[]>;
|
|
131
|
+
/**
|
|
132
|
+
* User pool the client belongs to.
|
|
133
|
+
*/
|
|
125
134
|
userPoolId: pulumi.Input<string>;
|
|
126
135
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resourceServer.js","sourceRoot":"","sources":["../../cognito/resourceServer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,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,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"resourceServer.js","sourceRoot":"","sources":["../../cognito/resourceServer.ts"],"names":[],"mappings":"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"}
|
package/controltower/index.d.ts
CHANGED
|
@@ -4,3 +4,6 @@ export declare const ControlTowerControl: typeof import("./controlTowerControl")
|
|
|
4
4
|
export { GetControlsArgs, GetControlsResult, GetControlsOutputArgs } from "./getControls";
|
|
5
5
|
export declare const getControls: typeof import("./getControls").getControls;
|
|
6
6
|
export declare const getControlsOutput: typeof import("./getControls").getControlsOutput;
|
|
7
|
+
export { LandingZoneArgs, LandingZoneState } from "./landingZone";
|
|
8
|
+
export type LandingZone = import("./landingZone").LandingZone;
|
|
9
|
+
export declare const LandingZone: typeof import("./landingZone").LandingZone;
|
package/controltower/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getControlsOutput = exports.getControls = exports.ControlTowerControl = void 0;
|
|
5
|
+
exports.LandingZone = exports.getControlsOutput = exports.getControls = exports.ControlTowerControl = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.ControlTowerControl = null;
|
|
@@ -10,16 +10,21 @@ utilities.lazyLoad(exports, ["ControlTowerControl"], () => require("./controlTow
|
|
|
10
10
|
exports.getControls = null;
|
|
11
11
|
exports.getControlsOutput = null;
|
|
12
12
|
utilities.lazyLoad(exports, ["getControls", "getControlsOutput"], () => require("./getControls"));
|
|
13
|
+
exports.LandingZone = null;
|
|
14
|
+
utilities.lazyLoad(exports, ["LandingZone"], () => require("./landingZone"));
|
|
13
15
|
const _module = {
|
|
14
16
|
version: utilities.getVersion(),
|
|
15
17
|
construct: (name, type, urn) => {
|
|
16
18
|
switch (type) {
|
|
17
19
|
case "aws:controltower/controlTowerControl:ControlTowerControl":
|
|
18
20
|
return new exports.ControlTowerControl(name, undefined, { urn });
|
|
21
|
+
case "aws:controltower/landingZone:LandingZone":
|
|
22
|
+
return new exports.LandingZone(name, undefined, { urn });
|
|
19
23
|
default:
|
|
20
24
|
throw new Error(`unknown resource type ${type}`);
|
|
21
25
|
}
|
|
22
26
|
},
|
|
23
27
|
};
|
|
24
28
|
pulumi.runtime.registerResourceModule("aws", "controltower/controlTowerControl", _module);
|
|
29
|
+
pulumi.runtime.registerResourceModule("aws", "controltower/landingZone", _module);
|
|
25
30
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../controltower/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAGhF,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;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../controltower/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAGhF,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;AAIpF,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAG7E,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,0DAA0D;gBAC3D,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,0CAA0C;gBAC3C,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,kCAAkC,EAAE,OAAO,CAAC,CAAA;AACzF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Creates a new landing zone using Control Tower. For more information on usage, please see the
|
|
6
|
+
* [AWS Control Tower Landing Zone User Guide](https://docs.aws.amazon.com/controltower/latest/userguide/how-control-tower-works.html).
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as aws from "@pulumi/aws";
|
|
13
|
+
* import * as fs from "fs";
|
|
14
|
+
*
|
|
15
|
+
* const example = new aws.controltower.LandingZone("example", {
|
|
16
|
+
* manifestJson: fs.readFileSync(`${path.module}/LandingZoneManifest.json`, "utf8"),
|
|
17
|
+
* version: "3.2",
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* ## Import
|
|
22
|
+
*
|
|
23
|
+
* Using `pulumi import`, import a Control Tower Landing Zone using the `id`. For example:
|
|
24
|
+
*
|
|
25
|
+
* ```sh
|
|
26
|
+
* $ pulumi import aws:controltower/landingZone:LandingZone example 1A2B3C4D5E6F7G8H
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
export declare class LandingZone extends pulumi.CustomResource {
|
|
30
|
+
/**
|
|
31
|
+
* Get an existing LandingZone resource's state with the given name, ID, and optional extra
|
|
32
|
+
* properties used to qualify the lookup.
|
|
33
|
+
*
|
|
34
|
+
* @param name The _unique_ name of the resulting resource.
|
|
35
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
36
|
+
* @param state Any extra arguments used during the lookup.
|
|
37
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
38
|
+
*/
|
|
39
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: LandingZoneState, opts?: pulumi.CustomResourceOptions): LandingZone;
|
|
40
|
+
/**
|
|
41
|
+
* Returns true if the given object is an instance of LandingZone. This is designed to work even
|
|
42
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
43
|
+
*/
|
|
44
|
+
static isInstance(obj: any): obj is LandingZone;
|
|
45
|
+
/**
|
|
46
|
+
* The ARN of the landing zone.
|
|
47
|
+
*/
|
|
48
|
+
readonly arn: pulumi.Output<string>;
|
|
49
|
+
/**
|
|
50
|
+
* The drift status summary of the landing zone.
|
|
51
|
+
*/
|
|
52
|
+
readonly driftStatuses: pulumi.Output<outputs.controltower.LandingZoneDriftStatus[]>;
|
|
53
|
+
/**
|
|
54
|
+
* The latest available version of the landing zone.
|
|
55
|
+
*/
|
|
56
|
+
readonly latestAvailableVersion: pulumi.Output<string>;
|
|
57
|
+
/**
|
|
58
|
+
* The manifest JSON file is a text file that describes your AWS resources. For examples, review [Launch your landing zone](https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch).
|
|
59
|
+
*/
|
|
60
|
+
readonly manifestJson: pulumi.Output<string>;
|
|
61
|
+
/**
|
|
62
|
+
* Tags to apply to the landing zone. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
63
|
+
*/
|
|
64
|
+
readonly tags: pulumi.Output<{
|
|
65
|
+
[key: string]: string;
|
|
66
|
+
} | undefined>;
|
|
67
|
+
/**
|
|
68
|
+
* A map of tags assigned to the landing zone, including those inherited from the provider `defaultTags` configuration block.
|
|
69
|
+
*
|
|
70
|
+
* @deprecated Please use `tags` instead.
|
|
71
|
+
*/
|
|
72
|
+
readonly tagsAll: pulumi.Output<{
|
|
73
|
+
[key: string]: string;
|
|
74
|
+
}>;
|
|
75
|
+
/**
|
|
76
|
+
* The landing zone version.
|
|
77
|
+
*/
|
|
78
|
+
readonly version: pulumi.Output<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Create a LandingZone resource with the given unique name, arguments, and options.
|
|
81
|
+
*
|
|
82
|
+
* @param name The _unique_ name of the resource.
|
|
83
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
84
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
85
|
+
*/
|
|
86
|
+
constructor(name: string, args: LandingZoneArgs, opts?: pulumi.CustomResourceOptions);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Input properties used for looking up and filtering LandingZone resources.
|
|
90
|
+
*/
|
|
91
|
+
export interface LandingZoneState {
|
|
92
|
+
/**
|
|
93
|
+
* The ARN of the landing zone.
|
|
94
|
+
*/
|
|
95
|
+
arn?: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* The drift status summary of the landing zone.
|
|
98
|
+
*/
|
|
99
|
+
driftStatuses?: pulumi.Input<pulumi.Input<inputs.controltower.LandingZoneDriftStatus>[]>;
|
|
100
|
+
/**
|
|
101
|
+
* The latest available version of the landing zone.
|
|
102
|
+
*/
|
|
103
|
+
latestAvailableVersion?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* The manifest JSON file is a text file that describes your AWS resources. For examples, review [Launch your landing zone](https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch).
|
|
106
|
+
*/
|
|
107
|
+
manifestJson?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Tags to apply to the landing zone. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
110
|
+
*/
|
|
111
|
+
tags?: pulumi.Input<{
|
|
112
|
+
[key: string]: pulumi.Input<string>;
|
|
113
|
+
}>;
|
|
114
|
+
/**
|
|
115
|
+
* A map of tags assigned to the landing zone, including those inherited from the provider `defaultTags` configuration block.
|
|
116
|
+
*
|
|
117
|
+
* @deprecated Please use `tags` instead.
|
|
118
|
+
*/
|
|
119
|
+
tagsAll?: pulumi.Input<{
|
|
120
|
+
[key: string]: pulumi.Input<string>;
|
|
121
|
+
}>;
|
|
122
|
+
/**
|
|
123
|
+
* The landing zone version.
|
|
124
|
+
*/
|
|
125
|
+
version?: pulumi.Input<string>;
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* The set of arguments for constructing a LandingZone resource.
|
|
129
|
+
*/
|
|
130
|
+
export interface LandingZoneArgs {
|
|
131
|
+
/**
|
|
132
|
+
* The manifest JSON file is a text file that describes your AWS resources. For examples, review [Launch your landing zone](https://docs.aws.amazon.com/controltower/latest/userguide/lz-api-launch).
|
|
133
|
+
*/
|
|
134
|
+
manifestJson: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* Tags to apply to the landing zone. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
137
|
+
*/
|
|
138
|
+
tags?: pulumi.Input<{
|
|
139
|
+
[key: string]: pulumi.Input<string>;
|
|
140
|
+
}>;
|
|
141
|
+
/**
|
|
142
|
+
* The landing zone version.
|
|
143
|
+
*/
|
|
144
|
+
version: pulumi.Input<string>;
|
|
145
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.LandingZone = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Creates a new landing zone using Control Tower. For more information on usage, please see the
|
|
10
|
+
* [AWS Control Tower Landing Zone User Guide](https://docs.aws.amazon.com/controltower/latest/userguide/how-control-tower-works.html).
|
|
11
|
+
*
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as aws from "@pulumi/aws";
|
|
17
|
+
* import * as fs from "fs";
|
|
18
|
+
*
|
|
19
|
+
* const example = new aws.controltower.LandingZone("example", {
|
|
20
|
+
* manifestJson: fs.readFileSync(`${path.module}/LandingZoneManifest.json`, "utf8"),
|
|
21
|
+
* version: "3.2",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ## Import
|
|
26
|
+
*
|
|
27
|
+
* Using `pulumi import`, import a Control Tower Landing Zone using the `id`. For example:
|
|
28
|
+
*
|
|
29
|
+
* ```sh
|
|
30
|
+
* $ pulumi import aws:controltower/landingZone:LandingZone example 1A2B3C4D5E6F7G8H
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
class LandingZone extends pulumi.CustomResource {
|
|
34
|
+
/**
|
|
35
|
+
* Get an existing LandingZone resource's state with the given name, ID, and optional extra
|
|
36
|
+
* properties used to qualify the lookup.
|
|
37
|
+
*
|
|
38
|
+
* @param name The _unique_ name of the resulting resource.
|
|
39
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
40
|
+
* @param state Any extra arguments used during the lookup.
|
|
41
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
42
|
+
*/
|
|
43
|
+
static get(name, id, state, opts) {
|
|
44
|
+
return new LandingZone(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Returns true if the given object is an instance of LandingZone. This is designed to work even
|
|
48
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
49
|
+
*/
|
|
50
|
+
static isInstance(obj) {
|
|
51
|
+
if (obj === undefined || obj === null) {
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
return obj['__pulumiType'] === LandingZone.__pulumiType;
|
|
55
|
+
}
|
|
56
|
+
constructor(name, argsOrState, opts) {
|
|
57
|
+
let resourceInputs = {};
|
|
58
|
+
opts = opts || {};
|
|
59
|
+
if (opts.id) {
|
|
60
|
+
const state = argsOrState;
|
|
61
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
62
|
+
resourceInputs["driftStatuses"] = state ? state.driftStatuses : undefined;
|
|
63
|
+
resourceInputs["latestAvailableVersion"] = state ? state.latestAvailableVersion : undefined;
|
|
64
|
+
resourceInputs["manifestJson"] = state ? state.manifestJson : undefined;
|
|
65
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
66
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
67
|
+
resourceInputs["version"] = state ? state.version : undefined;
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
const args = argsOrState;
|
|
71
|
+
if ((!args || args.manifestJson === undefined) && !opts.urn) {
|
|
72
|
+
throw new Error("Missing required property 'manifestJson'");
|
|
73
|
+
}
|
|
74
|
+
if ((!args || args.version === undefined) && !opts.urn) {
|
|
75
|
+
throw new Error("Missing required property 'version'");
|
|
76
|
+
}
|
|
77
|
+
resourceInputs["manifestJson"] = args ? args.manifestJson : undefined;
|
|
78
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
79
|
+
resourceInputs["version"] = args ? args.version : undefined;
|
|
80
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
81
|
+
resourceInputs["driftStatuses"] = undefined /*out*/;
|
|
82
|
+
resourceInputs["latestAvailableVersion"] = undefined /*out*/;
|
|
83
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
84
|
+
}
|
|
85
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
86
|
+
const secretOpts = { additionalSecretOutputs: ["tagsAll"] };
|
|
87
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
88
|
+
super(LandingZone.__pulumiType, name, resourceInputs, opts);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.LandingZone = LandingZone;
|
|
92
|
+
/** @internal */
|
|
93
|
+
LandingZone.__pulumiType = 'aws:controltower/landingZone:LandingZone';
|
|
94
|
+
//# sourceMappingURL=landingZone.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"landingZone.js","sourceRoot":"","sources":["../../controltower/landingZone.ts"],"names":[],"mappings":"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"}
|
package/ec2/flowLog.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ export declare class FlowLog extends pulumi.CustomResource {
|
|
|
134
134
|
*/
|
|
135
135
|
readonly logDestinationType: pulumi.Output<string | undefined>;
|
|
136
136
|
/**
|
|
137
|
-
* The fields to include in the flow log record
|
|
137
|
+
* The fields to include in the flow log record. Accepted format example: `"$${interface-id} $${srcaddr} $${dstaddr} $${srcport} $${dstport}"`.
|
|
138
138
|
*/
|
|
139
139
|
readonly logFormat: pulumi.Output<string>;
|
|
140
140
|
/**
|
|
@@ -226,7 +226,7 @@ export interface FlowLogState {
|
|
|
226
226
|
*/
|
|
227
227
|
logDestinationType?: pulumi.Input<string>;
|
|
228
228
|
/**
|
|
229
|
-
* The fields to include in the flow log record
|
|
229
|
+
* The fields to include in the flow log record. Accepted format example: `"$${interface-id} $${srcaddr} $${dstaddr} $${srcport} $${dstport}"`.
|
|
230
230
|
*/
|
|
231
231
|
logFormat?: pulumi.Input<string>;
|
|
232
232
|
/**
|
|
@@ -306,7 +306,7 @@ export interface FlowLogArgs {
|
|
|
306
306
|
*/
|
|
307
307
|
logDestinationType?: pulumi.Input<string>;
|
|
308
308
|
/**
|
|
309
|
-
* The fields to include in the flow log record
|
|
309
|
+
* The fields to include in the flow log record. Accepted format example: `"$${interface-id} $${srcaddr} $${dstaddr} $${srcport} $${dstport}"`.
|
|
310
310
|
*/
|
|
311
311
|
logFormat?: pulumi.Input<string>;
|
|
312
312
|
/**
|
package/index.d.ts
CHANGED
|
@@ -174,6 +174,7 @@ import * as networkfirewall from "./networkfirewall";
|
|
|
174
174
|
import * as networkmanager from "./networkmanager";
|
|
175
175
|
import * as oam from "./oam";
|
|
176
176
|
import * as opensearch from "./opensearch";
|
|
177
|
+
import * as opensearchingest from "./opensearchingest";
|
|
177
178
|
import * as opsworks from "./opsworks";
|
|
178
179
|
import * as organizations from "./organizations";
|
|
179
180
|
import * as outposts from "./outposts";
|
|
@@ -241,4 +242,4 @@ import * as wafv2 from "./wafv2";
|
|
|
241
242
|
import * as worklink from "./worklink";
|
|
242
243
|
import * as workspaces from "./workspaces";
|
|
243
244
|
import * as xray from "./xray";
|
|
244
|
-
export { accessanalyzer, account, acm, acmpca, alb, amp, amplify, apigateway, apigatewayv2, appautoscaling, appconfig, appflow, appintegrations, applicationinsights, applicationloadbalancing, appmesh, apprunner, appstream, appsync, athena, auditmanager, autoscaling, autoscalingplans, backup, batch, bedrock, bedrockfoundation, bedrockmodel, budgets, cfg, chime, chimesdkmediapipelines, cleanrooms, cloud9, cloudcontrol, cloudformation, cloudfront, cloudhsmv2, cloudsearch, cloudtrail, cloudwatch, codeartifact, codebuild, codecatalyst, codecommit, codedeploy, codeguruprofiler, codegurureviewer, codepipeline, codestarconnections, codestarnotifications, cognito, comprehend, config, connect, controltower, costexplorer, cur, customerprofiles, dataexchange, datapipeline, datasync, dax, detective, devicefarm, directconnect, directoryservice, dlm, dms, docdb, dynamodb, ebs, ec2, ec2clientvpn, ec2transitgateway, ecr, ecrpublic, ecs, efs, eks, elasticache, elasticbeanstalk, elasticsearch, elastictranscoder, elb, emr, emrcontainers, emrserverless, evidently, finspace, fis, fms, fsx, gamelift, glacier, globalaccelerator, glue, grafana, guardduty, iam, identitystore, imagebuilder, inspector, inspector2, iot, ivs, ivschat, kendra, keyspaces, kinesis, kinesisanalyticsv2, kms, lakeformation, lambda, lb, lex, licensemanager, lightsail, location, macie, macie2, mediaconvert, medialive, mediapackage, mediastore, memorydb, mq, msk, mskconnect, mwaa, neptune, networkfirewall, networkmanager, oam, opensearch, opsworks, organizations, outposts, pinpoint, pipes, polly, pricing, qldb, quicksight, ram, rbin, rds, redshift, redshiftdata, redshiftserverless, rekognition, resourceexplorer, resourcegroups, resourcegroupstaggingapi, rolesanywhere, route53, route53domains, route53recoverycontrol, route53recoveryreadiness, rum, s3, s3control, s3outposts, sagemaker, scheduler, schemas, secretsmanager, securityhub, securitylake, serverlessrepository, servicecatalog, servicediscovery, servicequotas, ses, sesv2, sfn, shield, signer, simpledb, sns, sqs, ssm, ssmcontacts, ssmincidents, ssoadmin, storagegateway, swf, synthetics, timestreamwrite, transcribe, transfer, types, verifiedaccess, verifiedpermissions, vpc, vpclattice, waf, wafregional, wafv2, worklink, workspaces, xray, };
|
|
245
|
+
export { accessanalyzer, account, acm, acmpca, alb, amp, amplify, apigateway, apigatewayv2, appautoscaling, appconfig, appflow, appintegrations, applicationinsights, applicationloadbalancing, appmesh, apprunner, appstream, appsync, athena, auditmanager, autoscaling, autoscalingplans, backup, batch, bedrock, bedrockfoundation, bedrockmodel, budgets, cfg, chime, chimesdkmediapipelines, cleanrooms, cloud9, cloudcontrol, cloudformation, cloudfront, cloudhsmv2, cloudsearch, cloudtrail, cloudwatch, codeartifact, codebuild, codecatalyst, codecommit, codedeploy, codeguruprofiler, codegurureviewer, codepipeline, codestarconnections, codestarnotifications, cognito, comprehend, config, connect, controltower, costexplorer, cur, customerprofiles, dataexchange, datapipeline, datasync, dax, detective, devicefarm, directconnect, directoryservice, dlm, dms, docdb, dynamodb, ebs, ec2, ec2clientvpn, ec2transitgateway, ecr, ecrpublic, ecs, efs, eks, elasticache, elasticbeanstalk, elasticsearch, elastictranscoder, elb, emr, emrcontainers, emrserverless, evidently, finspace, fis, fms, fsx, gamelift, glacier, globalaccelerator, glue, grafana, guardduty, iam, identitystore, imagebuilder, inspector, inspector2, iot, ivs, ivschat, kendra, keyspaces, kinesis, kinesisanalyticsv2, kms, lakeformation, lambda, lb, lex, licensemanager, lightsail, location, macie, macie2, mediaconvert, medialive, mediapackage, mediastore, memorydb, mq, msk, mskconnect, mwaa, neptune, networkfirewall, networkmanager, oam, opensearch, opensearchingest, opsworks, organizations, outposts, pinpoint, pipes, polly, pricing, qldb, quicksight, ram, rbin, rds, redshift, redshiftdata, redshiftserverless, rekognition, resourceexplorer, resourcegroups, resourcegroupstaggingapi, rolesanywhere, route53, route53domains, route53recoverycontrol, route53recoveryreadiness, rum, s3, s3control, s3outposts, sagemaker, scheduler, schemas, secretsmanager, securityhub, securitylake, serverlessrepository, servicecatalog, servicediscovery, servicequotas, ses, sesv2, sfn, shield, signer, simpledb, sns, sqs, ssm, ssmcontacts, ssmincidents, ssoadmin, storagegateway, swf, synthetics, timestreamwrite, transcribe, transfer, types, verifiedaccess, verifiedpermissions, vpc, vpclattice, waf, wafregional, wafv2, worklink, workspaces, xray, };
|
package/index.js
CHANGED
|
@@ -19,8 +19,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
19
19
|
exports.bedrockfoundation = exports.bedrock = exports.batch = exports.backup = exports.autoscalingplans = exports.autoscaling = exports.auditmanager = exports.athena = exports.appsync = exports.appstream = exports.apprunner = exports.appmesh = exports.applicationloadbalancing = exports.applicationinsights = exports.appintegrations = exports.appflow = exports.appconfig = exports.appautoscaling = exports.apigatewayv2 = exports.apigateway = exports.amplify = exports.amp = exports.alb = exports.acmpca = exports.acm = exports.account = exports.accessanalyzer = exports.Provider = exports.getServiceOutput = exports.getService = exports.getRegionsOutput = exports.getRegions = exports.getRegionOutput = exports.getRegion = exports.getPartitionOutput = exports.getPartition = exports.getIpRangesOutput = exports.getIpRanges = exports.getDefaultTagsOutput = exports.getDefaultTags = exports.getCallerIdentityOutput = exports.getCallerIdentity = exports.getBillingServiceAccountOutput = exports.getBillingServiceAccount = exports.getAvailabilityZonesOutput = exports.getAvailabilityZones = exports.getAvailabilityZoneOutput = exports.getAvailabilityZone = exports.getArnOutput = exports.getArn = void 0;
|
|
20
20
|
exports.ecrpublic = exports.ecr = exports.ec2transitgateway = exports.ec2clientvpn = exports.ec2 = exports.ebs = exports.dynamodb = exports.docdb = exports.dms = exports.dlm = exports.directoryservice = exports.directconnect = exports.devicefarm = exports.detective = exports.dax = exports.datasync = exports.datapipeline = exports.dataexchange = exports.customerprofiles = exports.cur = exports.costexplorer = exports.controltower = exports.connect = exports.config = exports.comprehend = exports.cognito = exports.codestarnotifications = exports.codestarconnections = exports.codepipeline = exports.codegurureviewer = exports.codeguruprofiler = exports.codedeploy = exports.codecommit = exports.codecatalyst = exports.codebuild = exports.codeartifact = exports.cloudwatch = exports.cloudtrail = exports.cloudsearch = exports.cloudhsmv2 = exports.cloudfront = exports.cloudformation = exports.cloudcontrol = exports.cloud9 = exports.cleanrooms = exports.chimesdkmediapipelines = exports.chime = exports.cfg = exports.budgets = exports.bedrockmodel = void 0;
|
|
21
21
|
exports.mq = exports.memorydb = exports.mediastore = exports.mediapackage = exports.medialive = exports.mediaconvert = exports.macie2 = exports.macie = exports.location = exports.lightsail = exports.licensemanager = exports.lex = exports.lb = exports.lambda = exports.lakeformation = exports.kms = exports.kinesisanalyticsv2 = exports.kinesis = exports.keyspaces = exports.kendra = exports.ivschat = exports.ivs = exports.iot = exports.inspector2 = exports.inspector = exports.imagebuilder = exports.identitystore = exports.iam = exports.guardduty = exports.grafana = exports.glue = exports.globalaccelerator = exports.glacier = exports.gamelift = exports.fsx = exports.fms = exports.fis = exports.finspace = exports.evidently = exports.emrserverless = exports.emrcontainers = exports.emr = exports.elb = exports.elastictranscoder = exports.elasticsearch = exports.elasticbeanstalk = exports.elasticache = exports.eks = exports.efs = exports.ecs = void 0;
|
|
22
|
-
exports.
|
|
23
|
-
exports.xray = exports.workspaces = exports.worklink = exports.wafv2 = exports.wafregional = exports.waf = exports.vpclattice = exports.vpc = exports.verifiedpermissions = exports.verifiedaccess = exports.types = exports.transfer = exports.transcribe = exports.timestreamwrite = exports.synthetics = exports.swf = exports.storagegateway = exports.ssoadmin = exports.ssmincidents = exports.ssmcontacts = exports.ssm = exports.sqs = exports.sns = exports.simpledb = exports.signer = void 0;
|
|
22
|
+
exports.sfn = exports.sesv2 = exports.ses = exports.servicequotas = exports.servicediscovery = exports.servicecatalog = exports.serverlessrepository = exports.securitylake = exports.securityhub = exports.secretsmanager = exports.schemas = exports.scheduler = exports.sagemaker = exports.s3outposts = exports.s3control = exports.s3 = exports.rum = exports.route53recoveryreadiness = exports.route53recoverycontrol = exports.route53domains = exports.route53 = exports.rolesanywhere = exports.resourcegroupstaggingapi = exports.resourcegroups = exports.resourceexplorer = exports.rekognition = exports.redshiftserverless = exports.redshiftdata = exports.redshift = exports.rds = exports.rbin = exports.ram = exports.quicksight = exports.qldb = exports.pricing = exports.polly = exports.pipes = exports.pinpoint = exports.outposts = exports.organizations = exports.opsworks = exports.opensearchingest = exports.opensearch = exports.oam = exports.networkmanager = exports.networkfirewall = exports.neptune = exports.mwaa = exports.mskconnect = exports.msk = void 0;
|
|
23
|
+
exports.xray = exports.workspaces = exports.worklink = exports.wafv2 = exports.wafregional = exports.waf = exports.vpclattice = exports.vpc = exports.verifiedpermissions = exports.verifiedaccess = exports.types = exports.transfer = exports.transcribe = exports.timestreamwrite = exports.synthetics = exports.swf = exports.storagegateway = exports.ssoadmin = exports.ssmincidents = exports.ssmcontacts = exports.ssm = exports.sqs = exports.sns = exports.simpledb = exports.signer = exports.shield = void 0;
|
|
24
24
|
const pulumi = require("@pulumi/pulumi");
|
|
25
25
|
const utilities = require("./utilities");
|
|
26
26
|
// Export members:
|
|
@@ -336,6 +336,8 @@ const oam = require("./oam");
|
|
|
336
336
|
exports.oam = oam;
|
|
337
337
|
const opensearch = require("./opensearch");
|
|
338
338
|
exports.opensearch = opensearch;
|
|
339
|
+
const opensearchingest = require("./opensearchingest");
|
|
340
|
+
exports.opensearchingest = opensearchingest;
|
|
339
341
|
const opsworks = require("./opsworks");
|
|
340
342
|
exports.opsworks = opsworks;
|
|
341
343
|
const organizations = require("./organizations");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/lex/v2modelsSlot.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import * as outputs from "../types/output";
|
|
|
15
15
|
* botId: aws_lexv2models_bot.example.id,
|
|
16
16
|
* botVersion: aws_lexv2models_bot_version.example.bot_version,
|
|
17
17
|
* intentId: aws_lexv2models_intent.example.id,
|
|
18
|
-
* localeId:
|
|
18
|
+
* localeId: aws_lexv2models_bot_locale.example.locale_id,
|
|
19
19
|
* });
|
|
20
20
|
* ```
|
|
21
21
|
*
|
package/lex/v2modelsSlot.js
CHANGED
|
@@ -19,7 +19,7 @@ const utilities = require("../utilities");
|
|
|
19
19
|
* botId: aws_lexv2models_bot.example.id,
|
|
20
20
|
* botVersion: aws_lexv2models_bot_version.example.bot_version,
|
|
21
21
|
* intentId: aws_lexv2models_intent.example.id,
|
|
22
|
-
* localeId:
|
|
22
|
+
* localeId: aws_lexv2models_bot_locale.example.locale_id,
|
|
23
23
|
* });
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.Pipeline = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
exports.Pipeline = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["Pipeline"], () => require("./pipeline"));
|
|
10
|
+
const _module = {
|
|
11
|
+
version: utilities.getVersion(),
|
|
12
|
+
construct: (name, type, urn) => {
|
|
13
|
+
switch (type) {
|
|
14
|
+
case "aws:opensearchingest/pipeline:Pipeline":
|
|
15
|
+
return new exports.Pipeline(name, undefined, { urn });
|
|
16
|
+
default:
|
|
17
|
+
throw new Error(`unknown resource type ${type}`);
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
};
|
|
21
|
+
pulumi.runtime.registerResourceModule("aws", "opensearchingest/pipeline", _module);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|