@pulumi/aws 5.9.0-alpha.1655117425 → 5.9.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/README.md +1 -1
- package/alb/targetGroup.d.ts +1 -1
- package/alb/targetGroup.js +1 -1
- package/applicationloadbalancing/targetGroup.d.ts +1 -1
- package/applicationloadbalancing/targetGroup.js +1 -1
- package/config/vars.js +1 -1
- package/config/vars.js.map +1 -1
- package/eks/cluster.d.ts +12 -0
- package/eks/cluster.js +2 -0
- package/eks/cluster.js.map +1 -1
- package/elasticloadbalancingv2/targetGroup.d.ts +1 -1
- package/elasticloadbalancingv2/targetGroup.js +1 -1
- package/index.d.ts +2 -1
- package/index.js +5 -3
- package/index.js.map +1 -1
- package/kendra/index.d.ts +1 -0
- package/kendra/index.js +37 -0
- package/kendra/index.js.map +1 -0
- package/kendra/index_.d.ts +312 -0
- package/kendra/index_.js +158 -0
- package/kendra/index_.js.map +1 -0
- package/lb/targetGroup.d.ts +1 -1
- package/lb/targetGroup.js +1 -1
- package/lightsail/containerService.d.ts +258 -0
- package/lightsail/containerService.js +134 -0
- package/lightsail/containerService.js.map +1 -0
- package/lightsail/containerServiceDeploymentVersion.d.ts +141 -0
- package/lightsail/containerServiceDeploymentVersion.js +109 -0
- package/lightsail/containerServiceDeploymentVersion.js.map +1 -0
- package/lightsail/index.d.ts +2 -0
- package/lightsail/index.js +10 -0
- package/lightsail/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/provider.js +1 -1
- package/provider.js.map +1 -1
- package/types/input.d.ts +238 -1
- package/types/output.d.ts +238 -1
package/README.md
CHANGED
|
@@ -110,7 +110,7 @@ The following configuration points are available:
|
|
|
110
110
|
|
|
111
111
|
### Authenticating pulumi-aws via EC2 Instance Metadata?
|
|
112
112
|
|
|
113
|
-
As of pulumi-aws v3.28.1, the default behaviour for the provider [was changed](https://github.com/pulumi/pulumi-aws/blob/master/
|
|
113
|
+
As of pulumi-aws v3.28.1, the default behaviour for the provider [was changed](https://github.com/pulumi/pulumi-aws/blob/master/CHANGELOG_OLD.md#3281-2021-02-10) to disable MetadataApiCheck by default. This means,
|
|
114
114
|
you need to do either of the following
|
|
115
115
|
|
|
116
116
|
1. When using the default provider:
|
package/alb/targetGroup.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
49
49
|
* import * as pulumi from "@pulumi/pulumi";
|
|
50
50
|
* import * as aws from "@pulumi/aws";
|
|
51
51
|
*
|
|
52
|
-
* const
|
|
52
|
+
* const alb_example = new aws.lb.TargetGroup("alb-example", {
|
|
53
53
|
* targetType: "alb",
|
|
54
54
|
* port: 80,
|
|
55
55
|
* protocol: "TCP",
|
package/alb/targetGroup.js
CHANGED
|
@@ -54,7 +54,7 @@ const utilities = require("../utilities");
|
|
|
54
54
|
* import * as pulumi from "@pulumi/pulumi";
|
|
55
55
|
* import * as aws from "@pulumi/aws";
|
|
56
56
|
*
|
|
57
|
-
* const
|
|
57
|
+
* const alb_example = new aws.lb.TargetGroup("alb-example", {
|
|
58
58
|
* targetType: "alb",
|
|
59
59
|
* port: 80,
|
|
60
60
|
* protocol: "TCP",
|
|
@@ -49,7 +49,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
49
49
|
* import * as pulumi from "@pulumi/pulumi";
|
|
50
50
|
* import * as aws from "@pulumi/aws";
|
|
51
51
|
*
|
|
52
|
-
* const
|
|
52
|
+
* const alb_example = new aws.lb.TargetGroup("alb-example", {
|
|
53
53
|
* targetType: "alb",
|
|
54
54
|
* port: 80,
|
|
55
55
|
* protocol: "TCP",
|
|
@@ -54,7 +54,7 @@ const utilities = require("../utilities");
|
|
|
54
54
|
* import * as pulumi from "@pulumi/pulumi";
|
|
55
55
|
* import * as aws from "@pulumi/aws";
|
|
56
56
|
*
|
|
57
|
-
* const
|
|
57
|
+
* const alb_example = new aws.lb.TargetGroup("alb-example", {
|
|
58
58
|
* targetType: "alb",
|
|
59
59
|
* port: 80,
|
|
60
60
|
* protocol: "TCP",
|
package/config/vars.js
CHANGED
|
@@ -141,7 +141,7 @@ Object.defineProperty(exports, "sharedCredentialsFiles", {
|
|
|
141
141
|
Object.defineProperty(exports, "skipCredentialsValidation", {
|
|
142
142
|
get() {
|
|
143
143
|
var _a;
|
|
144
|
-
return (_a = __config.getObject("skipCredentialsValidation")) !== null && _a !== void 0 ? _a :
|
|
144
|
+
return (_a = __config.getObject("skipCredentialsValidation")) !== null && _a !== void 0 ? _a : false;
|
|
145
145
|
},
|
|
146
146
|
enumerable: true,
|
|
147
147
|
});
|
package/config/vars.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAK1C,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;AAM1C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,mBAAmB,EAAE;IAChD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAW,mBAAmB,CAAC,CAAC;IAC7D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAA4B,YAAY,CAAC,CAAC;IACvE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,2BAA2B,EAAE;IACxD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAA2C,2BAA2B,CAAC,CAAC;IACrG,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAOH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,gBAAgB,EAAE;IAC7C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAC;IAC1C,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,aAAa,EAAE;IAC1C,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAA6B,aAAa,CAAC,CAAC;IACzE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAOH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,4BAA4B,EAAE;IACzD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC;IACtD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAOH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,gCAAgC,EAAE;IAC7D,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,gCAAgC,CAAC,CAAC;IAC1D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAA6B,WAAW,CAAC,CAAC;IACvE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,qBAAqB,EAAE;IAClD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAW,qBAAqB,CAAC,CAAC;IAC/D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAOH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAA4B,YAAY,CAAC,CAAC;IACvE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,UAAU,CAAC,CAAC;IACnD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAS,YAAY,CAAC,CAAC;IACpD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,SAAS,EAAE;IACtC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;IACnC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,QAAQ,EAAE;IACrC,GAAG;;QACC,OAAO,MAAQ,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,mCAAS,SAAS,CAAC,MAAM,CAAC,YAAY,EAAE,oBAAoB,CAAC,CAAC;IACvG,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAQH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,kBAAkB,EAAE;IAC/C,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,kBAAkB,CAAC,CAAC;IAC3D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAQH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,gBAAgB,EAAE;IAC7C,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAU,gBAAgB,CAAC,CAAC;IACzD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,WAAW,EAAE;IACxC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACrC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,mBAAmB,EAAE;IAChD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAW,mBAAmB,CAAC,CAAC;IAC7D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,uBAAuB,EAAE;IACpD,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,uBAAuB,CAAC,CAAC;IACjD,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,wBAAwB,EAAE;IACrD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAW,wBAAwB,CAAC,CAAC;IAClE,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAOH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,2BAA2B,EAAE;IACxD,GAAG;;QACC,OAAO,MAAA,QAAQ,CAAC,SAAS,CAAU,2BAA2B,CAAC,mCAAI,
|
|
1
|
+
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":"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"}
|
package/eks/cluster.d.ts
CHANGED
|
@@ -126,6 +126,10 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
126
126
|
* Unix epoch timestamp in seconds for when the cluster was created.
|
|
127
127
|
*/
|
|
128
128
|
readonly createdAt: pulumi.Output<string>;
|
|
129
|
+
/**
|
|
130
|
+
* List of addons to remove upon creation. Any addon listed will be "adopted" and then removed. This allows for the creation of a baremetal cluster where no addon is deployed and direct management of addons via Pulumi Kubernetes resources. Valid entries are `kube-proxy`, `coredns` and `vpc-cni`. **Only** works on first creation of a cluster.
|
|
131
|
+
*/
|
|
132
|
+
readonly defaultAddonsToRemoves: pulumi.Output<string[] | undefined>;
|
|
129
133
|
/**
|
|
130
134
|
* List of the desired control plane logging to enable. For more information, see [Amazon EKS Control Plane Logging](https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html).
|
|
131
135
|
*/
|
|
@@ -211,6 +215,10 @@ export interface ClusterState {
|
|
|
211
215
|
* Unix epoch timestamp in seconds for when the cluster was created.
|
|
212
216
|
*/
|
|
213
217
|
createdAt?: pulumi.Input<string>;
|
|
218
|
+
/**
|
|
219
|
+
* List of addons to remove upon creation. Any addon listed will be "adopted" and then removed. This allows for the creation of a baremetal cluster where no addon is deployed and direct management of addons via Pulumi Kubernetes resources. Valid entries are `kube-proxy`, `coredns` and `vpc-cni`. **Only** works on first creation of a cluster.
|
|
220
|
+
*/
|
|
221
|
+
defaultAddonsToRemoves?: pulumi.Input<pulumi.Input<string>[]>;
|
|
214
222
|
/**
|
|
215
223
|
* List of the desired control plane logging to enable. For more information, see [Amazon EKS Control Plane Logging](https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html).
|
|
216
224
|
*/
|
|
@@ -272,6 +280,10 @@ export interface ClusterState {
|
|
|
272
280
|
* The set of arguments for constructing a Cluster resource.
|
|
273
281
|
*/
|
|
274
282
|
export interface ClusterArgs {
|
|
283
|
+
/**
|
|
284
|
+
* List of addons to remove upon creation. Any addon listed will be "adopted" and then removed. This allows for the creation of a baremetal cluster where no addon is deployed and direct management of addons via Pulumi Kubernetes resources. Valid entries are `kube-proxy`, `coredns` and `vpc-cni`. **Only** works on first creation of a cluster.
|
|
285
|
+
*/
|
|
286
|
+
defaultAddonsToRemoves?: pulumi.Input<pulumi.Input<string>[]>;
|
|
275
287
|
/**
|
|
276
288
|
* List of the desired control plane logging to enable. For more information, see [Amazon EKS Control Plane Logging](https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html).
|
|
277
289
|
*/
|
package/eks/cluster.js
CHANGED
|
@@ -109,6 +109,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
109
109
|
resourceInputs["certificateAuthorities"] = state ? state.certificateAuthorities : undefined;
|
|
110
110
|
resourceInputs["certificateAuthority"] = state ? state.certificateAuthority : undefined;
|
|
111
111
|
resourceInputs["createdAt"] = state ? state.createdAt : undefined;
|
|
112
|
+
resourceInputs["defaultAddonsToRemoves"] = state ? state.defaultAddonsToRemoves : undefined;
|
|
112
113
|
resourceInputs["enabledClusterLogTypes"] = state ? state.enabledClusterLogTypes : undefined;
|
|
113
114
|
resourceInputs["encryptionConfig"] = state ? state.encryptionConfig : undefined;
|
|
114
115
|
resourceInputs["endpoint"] = state ? state.endpoint : undefined;
|
|
@@ -131,6 +132,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
131
132
|
if ((!args || args.vpcConfig === undefined) && !opts.urn) {
|
|
132
133
|
throw new Error("Missing required property 'vpcConfig'");
|
|
133
134
|
}
|
|
135
|
+
resourceInputs["defaultAddonsToRemoves"] = args ? args.defaultAddonsToRemoves : undefined;
|
|
134
136
|
resourceInputs["enabledClusterLogTypes"] = args ? args.enabledClusterLogTypes : undefined;
|
|
135
137
|
resourceInputs["encryptionConfig"] = args ? args.encryptionConfig : undefined;
|
|
136
138
|
resourceInputs["kubernetesNetworkConfig"] = args ? args.kubernetesNetworkConfig : undefined;
|
package/eks/cluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../eks/cluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6FG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../eks/cluster.ts"],"names":[],"mappings":"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"}
|
|
@@ -49,7 +49,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
49
49
|
* import * as pulumi from "@pulumi/pulumi";
|
|
50
50
|
* import * as aws from "@pulumi/aws";
|
|
51
51
|
*
|
|
52
|
-
* const
|
|
52
|
+
* const alb_example = new aws.lb.TargetGroup("alb-example", {
|
|
53
53
|
* targetType: "alb",
|
|
54
54
|
* port: 80,
|
|
55
55
|
* protocol: "TCP",
|
|
@@ -54,7 +54,7 @@ const utilities = require("../utilities");
|
|
|
54
54
|
* import * as pulumi from "@pulumi/pulumi";
|
|
55
55
|
* import * as aws from "@pulumi/aws";
|
|
56
56
|
*
|
|
57
|
-
* const
|
|
57
|
+
* const alb_example = new aws.lb.TargetGroup("alb-example", {
|
|
58
58
|
* targetType: "alb",
|
|
59
59
|
* port: 80,
|
|
60
60
|
* protocol: "TCP",
|
package/index.d.ts
CHANGED
|
@@ -111,6 +111,7 @@ import * as identitystore from "./identitystore";
|
|
|
111
111
|
import * as imagebuilder from "./imagebuilder";
|
|
112
112
|
import * as inspector from "./inspector";
|
|
113
113
|
import * as iot from "./iot";
|
|
114
|
+
import * as kendra from "./kendra";
|
|
114
115
|
import * as keyspaces from "./keyspaces";
|
|
115
116
|
import * as kinesis from "./kinesis";
|
|
116
117
|
import * as kinesisanalyticsv2 from "./kinesisanalyticsv2";
|
|
@@ -186,4 +187,4 @@ import * as wafv2 from "./wafv2";
|
|
|
186
187
|
import * as worklink from "./worklink";
|
|
187
188
|
import * as workspaces from "./workspaces";
|
|
188
189
|
import * as xray from "./xray";
|
|
189
|
-
export { accessanalyzer, account, acm, acmpca, alb, amp, amplify, apigateway, apigatewayv2, appautoscaling, appconfig, appflow, applicationloadbalancing, appmesh, apprunner, appstream, appsync, athena, autoscaling, autoscalingplans, backup, batch, budgets, cfg, chime, cloud9, cloudcontrol, cloudformation, cloudfront, cloudhsmv2, cloudsearch, cloudtrail, cloudwatch, codeartifact, codebuild, codecommit, codedeploy, codepipeline, codestarconnections, codestarnotifications, cognito, config, connect, costexplorer, cur, dataexchange, datapipeline, datasync, dax, detective, devicefarm, directconnect, directoryservice, dlm, dms, docdb, dynamodb, ebs, ec2, ec2clientvpn, ec2transitgateway, ecr, ecrpublic, ecs, efs, eks, elasticache, elasticbeanstalk, elasticloadbalancing, elasticloadbalancingv2, elasticsearch, elastictranscoder, elb, emr, emrcontainers, emrserverless, fms, fsx, gamelift, glacier, globalaccelerator, glue, grafana, guardduty, iam, identitystore, imagebuilder, inspector, iot, keyspaces, kinesis, kinesisanalyticsv2, kms, lakeformation, lambda, lb, lex, licensemanager, lightsail, location, macie, macie2, mediaconvert, mediapackage, mediastore, memorydb, mq, msk, mskconnect, mwaa, neptune, networkfirewall, networkmanager, opensearch, opsworks, organizations, outposts, pinpoint, pricing, qldb, quicksight, ram, rds, redshift, redshiftdata, resourcegroups, resourcegroupstaggingapi, route53, route53domains, route53recoverycontrol, route53recoveryreadiness, s3, s3control, s3outposts, sagemaker, schemas, secretsmanager, securityhub, serverless, serverlessrepository, servicecatalog, servicediscovery, servicequotas, ses, sfn, shield, signer, simpledb, sns, sqs, ssm, ssoadmin, storagegateway, swf, synthetics, timestreamwrite, transfer, types, waf, wafregional, wafv2, worklink, workspaces, xray, };
|
|
190
|
+
export { accessanalyzer, account, acm, acmpca, alb, amp, amplify, apigateway, apigatewayv2, appautoscaling, appconfig, appflow, applicationloadbalancing, appmesh, apprunner, appstream, appsync, athena, autoscaling, autoscalingplans, backup, batch, budgets, cfg, chime, cloud9, cloudcontrol, cloudformation, cloudfront, cloudhsmv2, cloudsearch, cloudtrail, cloudwatch, codeartifact, codebuild, codecommit, codedeploy, codepipeline, codestarconnections, codestarnotifications, cognito, config, connect, costexplorer, cur, dataexchange, datapipeline, datasync, dax, detective, devicefarm, directconnect, directoryservice, dlm, dms, docdb, dynamodb, ebs, ec2, ec2clientvpn, ec2transitgateway, ecr, ecrpublic, ecs, efs, eks, elasticache, elasticbeanstalk, elasticloadbalancing, elasticloadbalancingv2, elasticsearch, elastictranscoder, elb, emr, emrcontainers, emrserverless, fms, fsx, gamelift, glacier, globalaccelerator, glue, grafana, guardduty, iam, identitystore, imagebuilder, inspector, iot, kendra, keyspaces, kinesis, kinesisanalyticsv2, kms, lakeformation, lambda, lb, lex, licensemanager, lightsail, location, macie, macie2, mediaconvert, mediapackage, mediastore, memorydb, mq, msk, mskconnect, mwaa, neptune, networkfirewall, networkmanager, opensearch, opsworks, organizations, outposts, pinpoint, pricing, qldb, quicksight, ram, rds, redshift, redshiftdata, resourcegroups, resourcegroupstaggingapi, route53, route53domains, route53recoverycontrol, route53recoveryreadiness, s3, s3control, s3outposts, sagemaker, schemas, secretsmanager, securityhub, serverless, serverlessrepository, servicecatalog, servicediscovery, servicequotas, ses, sfn, shield, signer, simpledb, sns, sqs, ssm, ssoadmin, storagegateway, swf, synthetics, timestreamwrite, transfer, types, waf, wafregional, wafv2, worklink, workspaces, xray, };
|
package/index.js
CHANGED
|
@@ -17,9 +17,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.detective = exports.dax = exports.datasync = exports.datapipeline = exports.dataexchange = exports.cur = exports.costexplorer = exports.connect = exports.config = exports.cognito = exports.codestarnotifications = exports.codestarconnections = exports.codepipeline = exports.codedeploy = exports.codecommit = exports.codebuild = exports.codeartifact = exports.cloudwatch = exports.cloudtrail = exports.cloudsearch = exports.cloudhsmv2 = exports.cloudfront = exports.cloudformation = exports.cloudcontrol = exports.cloud9 = exports.chime = exports.cfg = exports.budgets = exports.batch = exports.backup = exports.autoscalingplans = exports.autoscaling = exports.athena = exports.appsync = exports.appstream = exports.apprunner = exports.appmesh = exports.applicationloadbalancing = exports.appflow = exports.appconfig = exports.appautoscaling = exports.apigatewayv2 = exports.apigateway = exports.amplify = exports.amp = exports.alb = exports.acmpca = exports.acm = exports.account = exports.accessanalyzer = void 0;
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.xray = exports.workspaces = exports.worklink = exports.wafv2 = exports.wafregional = exports.waf = exports.types = exports.transfer = exports.timestreamwrite = exports.synthetics = exports.swf = exports.storagegateway = exports.ssoadmin = exports.ssm = void 0;
|
|
20
|
+
exports.lightsail = exports.licensemanager = exports.lex = exports.lb = exports.lambda = exports.lakeformation = exports.kms = exports.kinesisanalyticsv2 = exports.kinesis = exports.keyspaces = exports.kendra = exports.iot = 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.emrserverless = exports.emrcontainers = exports.emr = exports.elb = exports.elastictranscoder = exports.elasticsearch = exports.elasticloadbalancingv2 = exports.elasticloadbalancing = exports.elasticbeanstalk = exports.elasticache = exports.eks = exports.efs = exports.ecs = 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 = void 0;
|
|
21
|
+
exports.sns = exports.simpledb = exports.signer = exports.shield = exports.sfn = exports.ses = exports.servicequotas = exports.servicediscovery = exports.servicecatalog = exports.serverlessrepository = exports.serverless = exports.securityhub = exports.secretsmanager = exports.schemas = exports.sagemaker = exports.s3outposts = exports.s3control = exports.s3 = exports.route53recoveryreadiness = exports.route53recoverycontrol = exports.route53domains = exports.route53 = exports.resourcegroupstaggingapi = exports.resourcegroups = exports.redshiftdata = exports.redshift = exports.rds = exports.ram = exports.quicksight = exports.qldb = exports.pricing = exports.pinpoint = exports.outposts = exports.organizations = exports.opsworks = exports.opensearch = exports.networkmanager = exports.networkfirewall = exports.neptune = exports.mwaa = exports.mskconnect = exports.msk = exports.mq = exports.memorydb = exports.mediastore = exports.mediapackage = exports.mediaconvert = exports.macie2 = exports.macie = exports.location = void 0;
|
|
22
|
+
exports.xray = exports.workspaces = exports.worklink = exports.wafv2 = exports.wafregional = exports.waf = exports.types = exports.transfer = exports.timestreamwrite = exports.synthetics = exports.swf = exports.storagegateway = exports.ssoadmin = exports.ssm = exports.sqs = void 0;
|
|
23
23
|
const pulumi = require("@pulumi/pulumi");
|
|
24
24
|
const utilities = require("./utilities");
|
|
25
25
|
// Export members:
|
|
@@ -227,6 +227,8 @@ const inspector = require("./inspector");
|
|
|
227
227
|
exports.inspector = inspector;
|
|
228
228
|
const iot = require("./iot");
|
|
229
229
|
exports.iot = iot;
|
|
230
|
+
const kendra = require("./kendra");
|
|
231
|
+
exports.kendra = kendra;
|
|
230
232
|
const keyspaces = require("./keyspaces");
|
|
231
233
|
exports.keyspaces = keyspaces;
|
|
232
234
|
const kinesis = require("./kinesis");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,wCAAsB;AACtB,8CAA4B;AAC5B,2CAAyB;AACzB,8CAA4B;AAC5B,2CAAyB;AACzB,yDAAuC;AACvC,wDAAsC;AACtC,yDAAuC;AACvC,6DAA2C;AAC3C,sDAAoC;AACpC,uDAAqC;AACrC,mDAAiC;AACjC,iDAA+B;AAC/B,gDAA8B;AAC9B,iDAA+B;AAC/B,kDAAgC;AAChC,8CAA4B;AAC5B,+CAA6B;AAC7B,+CAA6B;AAC7B,6CAA2B;AAC3B,2CAAyB;AACzB,yCAAuB;AACvB,0CAAwB;AAExB,gBAAgB;AAChB,gDAA8B;AAE9B,sBAAsB;AACtB,mDAAmD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,wCAAsB;AACtB,8CAA4B;AAC5B,2CAAyB;AACzB,8CAA4B;AAC5B,2CAAyB;AACzB,yDAAuC;AACvC,wDAAsC;AACtC,yDAAuC;AACvC,6DAA2C;AAC3C,sDAAoC;AACpC,uDAAqC;AACrC,mDAAiC;AACjC,iDAA+B;AAC/B,gDAA8B;AAC9B,iDAA+B;AAC/B,kDAAgC;AAChC,8CAA4B;AAC5B,+CAA6B;AAC7B,+CAA6B;AAC7B,6CAA2B;AAC3B,2CAAyB;AACzB,yCAAuB;AACvB,0CAAwB;AAExB,gBAAgB;AAChB,gDAA8B;AAE9B,sBAAsB;AACtB,mDAAmD;AAuK/C,wCAAc;AAtKlB,qCAAqC;AAuKjC,0BAAO;AAtKX,6BAA6B;AAuKzB,kBAAG;AAtKP,mCAAmC;AAuK/B,wBAAM;AAtKV,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,qCAAqC;AAuKjC,0BAAO;AAtKX,2CAA2C;AAuKvC,gCAAU;AAtKd,+CAA+C;AAuK3C,oCAAY;AAtKhB,mDAAmD;AAuK/C,wCAAc;AAtKlB,yCAAyC;AAuKrC,8BAAS;AAtKb,qCAAqC;AAuKjC,0BAAO;AAtKX,uEAAuE;AAuKnE,4DAAwB;AAtK5B,qCAAqC;AAuKjC,0BAAO;AAtKX,yCAAyC;AAuKrC,8BAAS;AAtKb,yCAAyC;AAuKrC,8BAAS;AAtKb,qCAAqC;AAuKjC,0BAAO;AAtKX,mCAAmC;AAuK/B,wBAAM;AAtKV,6CAA6C;AAuKzC,kCAAW;AAtKf,uDAAuD;AAuKnD,4CAAgB;AAtKpB,mCAAmC;AAuK/B,wBAAM;AAtKV,iCAAiC;AAuK7B,sBAAK;AAtKT,qCAAqC;AAuKjC,0BAAO;AAtKX,6BAA6B;AAuKzB,kBAAG;AAtKP,iCAAiC;AAuK7B,sBAAK;AAtKT,mCAAmC;AAuK/B,wBAAM;AAtKV,+CAA+C;AAuK3C,oCAAY;AAtKhB,mDAAmD;AAuK/C,wCAAc;AAtKlB,2CAA2C;AAuKvC,gCAAU;AAtKd,2CAA2C;AAuKvC,gCAAU;AAtKd,6CAA6C;AAuKzC,kCAAW;AAtKf,2CAA2C;AAuKvC,gCAAU;AAtKd,2CAA2C;AAuKvC,gCAAU;AAtKd,+CAA+C;AAuK3C,oCAAY;AAtKhB,yCAAyC;AAuKrC,8BAAS;AAtKb,2CAA2C;AAuKvC,gCAAU;AAtKd,2CAA2C;AAuKvC,gCAAU;AAtKd,+CAA+C;AAuK3C,oCAAY;AAtKhB,6DAA6D;AAuKzD,kDAAmB;AAtKvB,iEAAiE;AAuK7D,sDAAqB;AAtKzB,qCAAqC;AAuKjC,0BAAO;AAtKX,mCAAmC;AAuK/B,wBAAM;AAtKV,qCAAqC;AAuKjC,0BAAO;AAtKX,+CAA+C;AAuK3C,oCAAY;AAtKhB,6BAA6B;AAuKzB,kBAAG;AAtKP,+CAA+C;AAuK3C,oCAAY;AAtKhB,+CAA+C;AAuK3C,oCAAY;AAtKhB,uCAAuC;AAuKnC,4BAAQ;AAtKZ,6BAA6B;AAuKzB,kBAAG;AAtKP,yCAAyC;AAuKrC,8BAAS;AAtKb,2CAA2C;AAuKvC,gCAAU;AAtKd,iDAAiD;AAuK7C,sCAAa;AAtKjB,uDAAuD;AAuKnD,4CAAgB;AAtKpB,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,iCAAiC;AAuK7B,sBAAK;AAtKT,uCAAuC;AAuKnC,4BAAQ;AAtKZ,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,+CAA+C;AAuK3C,oCAAY;AAtKhB,yDAAyD;AAuKrD,8CAAiB;AAtKrB,6BAA6B;AAuKzB,kBAAG;AAtKP,yCAAyC;AAuKrC,8BAAS;AAtKb,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,6CAA6C;AAuKzC,kCAAW;AAtKf,uDAAuD;AAuKnD,4CAAgB;AAtKpB,+DAA+D;AAuK3D,oDAAoB;AAtKxB,mEAAmE;AAuK/D,wDAAsB;AAtK1B,iDAAiD;AAuK7C,sCAAa;AAtKjB,yDAAyD;AAuKrD,8CAAiB;AAtKrB,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,iDAAiD;AAuK7C,sCAAa;AAtKjB,iDAAiD;AAuK7C,sCAAa;AAtKjB,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,uCAAuC;AAuKnC,4BAAQ;AAtKZ,qCAAqC;AAuKjC,0BAAO;AAtKX,yDAAyD;AAuKrD,8CAAiB;AAtKrB,+BAA+B;AAuK3B,oBAAI;AAtKR,qCAAqC;AAuKjC,0BAAO;AAtKX,yCAAyC;AAuKrC,8BAAS;AAtKb,6BAA6B;AAuKzB,kBAAG;AAtKP,iDAAiD;AAuK7C,sCAAa;AAtKjB,+CAA+C;AAuK3C,oCAAY;AAtKhB,yCAAyC;AAuKrC,8BAAS;AAtKb,6BAA6B;AAuKzB,kBAAG;AAtKP,mCAAmC;AAuK/B,wBAAM;AAtKV,yCAAyC;AAuKrC,8BAAS;AAtKb,qCAAqC;AAuKjC,0BAAO;AAtKX,2DAA2D;AAuKvD,gDAAkB;AAtKtB,6BAA6B;AAuKzB,kBAAG;AAtKP,iDAAiD;AAuK7C,sCAAa;AAtKjB,mCAAmC;AAuK/B,wBAAM;AAtKV,2BAA2B;AAuKvB,gBAAE;AAtKN,6BAA6B;AAuKzB,kBAAG;AAtKP,mDAAmD;AAuK/C,wCAAc;AAtKlB,yCAAyC;AAuKrC,8BAAS;AAtKb,uCAAuC;AAuKnC,4BAAQ;AAtKZ,iCAAiC;AAuK7B,sBAAK;AAtKT,mCAAmC;AAuK/B,wBAAM;AAtKV,+CAA+C;AAuK3C,oCAAY;AAtKhB,+CAA+C;AAuK3C,oCAAY;AAtKhB,2CAA2C;AAuKvC,gCAAU;AAtKd,uCAAuC;AAuKnC,4BAAQ;AAtKZ,2BAA2B;AAuKvB,gBAAE;AAtKN,6BAA6B;AAuKzB,kBAAG;AAtKP,2CAA2C;AAuKvC,gCAAU;AAtKd,+BAA+B;AAuK3B,oBAAI;AAtKR,qCAAqC;AAuKjC,0BAAO;AAtKX,qDAAqD;AAuKjD,0CAAe;AAtKnB,mDAAmD;AAuK/C,wCAAc;AAtKlB,2CAA2C;AAuKvC,gCAAU;AAtKd,uCAAuC;AAuKnC,4BAAQ;AAtKZ,iDAAiD;AAuK7C,sCAAa;AAtKjB,uCAAuC;AAuKnC,4BAAQ;AAtKZ,uCAAuC;AAuKnC,4BAAQ;AAtKZ,qCAAqC;AAuKjC,0BAAO;AAtKX,+BAA+B;AAuK3B,oBAAI;AAtKR,2CAA2C;AAuKvC,gCAAU;AAtKd,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,uCAAuC;AAuKnC,4BAAQ;AAtKZ,+CAA+C;AAuK3C,oCAAY;AAtKhB,mDAAmD;AAuK/C,wCAAc;AAtKlB,uEAAuE;AAuKnE,4DAAwB;AAtK5B,qCAAqC;AAuKjC,0BAAO;AAtKX,mDAAmD;AAuK/C,wCAAc;AAtKlB,mEAAmE;AAuK/D,wDAAsB;AAtK1B,uEAAuE;AAuKnE,4DAAwB;AAtK5B,2BAA2B;AAuKvB,gBAAE;AAtKN,yCAAyC;AAuKrC,8BAAS;AAtKb,2CAA2C;AAuKvC,gCAAU;AAtKd,yCAAyC;AAuKrC,8BAAS;AAtKb,qCAAqC;AAuKjC,0BAAO;AAtKX,mDAAmD;AAuK/C,wCAAc;AAtKlB,6CAA6C;AAuKzC,kCAAW;AAtKf,2CAA2C;AAuKvC,gCAAU;AAtKd,+DAA+D;AAuK3D,oDAAoB;AAtKxB,mDAAmD;AAuK/C,wCAAc;AAtKlB,uDAAuD;AAuKnD,4CAAgB;AAtKpB,iDAAiD;AAuK7C,sCAAa;AAtKjB,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,mCAAmC;AAuK/B,wBAAM;AAtKV,mCAAmC;AAuK/B,wBAAM;AAtKV,uCAAuC;AAuKnC,4BAAQ;AAtKZ,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,6BAA6B;AAuKzB,kBAAG;AAtKP,uCAAuC;AAuKnC,4BAAQ;AAtKZ,mDAAmD;AAuK/C,wCAAc;AAtKlB,6BAA6B;AAuKzB,kBAAG;AAtKP,2CAA2C;AAuKvC,gCAAU;AAtKd,qDAAqD;AAuKjD,0CAAe;AAtKnB,uCAAuC;AAuKnC,4BAAQ;AAtKZ,iCAAiC;AAuK7B,sBAAK;AAtKT,6BAA6B;AAuKzB,kBAAG;AAtKP,6CAA6C;AAuKzC,kCAAW;AAtKf,iCAAiC;AAuK7B,sBAAK;AAtKT,uCAAuC;AAuKnC,4BAAQ;AAtKZ,2CAA2C;AAuKvC,gCAAU;AAtKd,+BAA+B;AAuK3B,oBAAI;AAGR,yCAAsC;AAEtC,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,KAAK,EAAE;IAC1C,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,iBAAiB,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAA2B,EAAE;QACpF,IAAI,IAAI,KAAK,sBAAsB,EAAE;YACjC,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACpD;QACD,OAAO,IAAI,mBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IACvD,CAAC;CACJ,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./index_";
|
package/kendra/index.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
const pulumi = require("@pulumi/pulumi");
|
|
20
|
+
const utilities = require("../utilities");
|
|
21
|
+
// Export members:
|
|
22
|
+
__exportStar(require("./index_"), exports);
|
|
23
|
+
// Import resources to register:
|
|
24
|
+
const index_1 = require("./index_");
|
|
25
|
+
const _module = {
|
|
26
|
+
version: utilities.getVersion(),
|
|
27
|
+
construct: (name, type, urn) => {
|
|
28
|
+
switch (type) {
|
|
29
|
+
case "aws:kendra/index:Index":
|
|
30
|
+
return new index_1.Index(name, undefined, { urn });
|
|
31
|
+
default:
|
|
32
|
+
throw new Error(`unknown resource type ${type}`);
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
pulumi.runtime.registerResourceModule("aws", "kendra/index", _module);
|
|
37
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../kendra/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,kBAAkB;AAClB,2CAAyB;AAEzB,gCAAgC;AAChC,oCAAiC;AAEjC,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,wBAAwB;gBACzB,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Provides an Amazon Kendra Index resource.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
* ### Basic
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as aws from "@pulumi/aws";
|
|
12
|
+
*
|
|
13
|
+
* const example = new aws.kendra.Index("example", {
|
|
14
|
+
* description: "example",
|
|
15
|
+
* edition: "DEVELOPER_EDITION",
|
|
16
|
+
* roleArn: aws_iam_role["this"].arn,
|
|
17
|
+
* tags: {
|
|
18
|
+
* Key1: "Value1",
|
|
19
|
+
* },
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
* ### With capacity units
|
|
23
|
+
*
|
|
24
|
+
* ```typescript
|
|
25
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
26
|
+
* import * as aws from "@pulumi/aws";
|
|
27
|
+
*
|
|
28
|
+
* const example = new aws.kendra.Index("example", {
|
|
29
|
+
* edition: "DEVELOPER_EDITION",
|
|
30
|
+
* roleArn: aws_iam_role["this"].arn,
|
|
31
|
+
* capacityUnits: {
|
|
32
|
+
* queryCapacityUnits: 2,
|
|
33
|
+
* storageCapacityUnits: 2,
|
|
34
|
+
* },
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
* ### With server side encryption configuration
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as aws from "@pulumi/aws";
|
|
42
|
+
*
|
|
43
|
+
* const example = new aws.kendra.Index("example", {
|
|
44
|
+
* roleArn: aws_iam_role["this"].arn,
|
|
45
|
+
* serverSideEncryptionConfiguration: {
|
|
46
|
+
* kmsKeyId: data.aws_kms_key["this"].arn,
|
|
47
|
+
* },
|
|
48
|
+
* });
|
|
49
|
+
* ```
|
|
50
|
+
* ### With JSON token type configuration
|
|
51
|
+
*
|
|
52
|
+
* ```typescript
|
|
53
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
+
* import * as aws from "@pulumi/aws";
|
|
55
|
+
*
|
|
56
|
+
* const example = new aws.kendra.Index("example", {
|
|
57
|
+
* roleArn: aws_iam_role["this"].arn,
|
|
58
|
+
* userTokenConfigurations: {
|
|
59
|
+
* jsonTokenTypeConfiguration: {
|
|
60
|
+
* groupAttributeField: "groups",
|
|
61
|
+
* userNameAttributeField: "username",
|
|
62
|
+
* },
|
|
63
|
+
* },
|
|
64
|
+
* });
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* ## Import
|
|
68
|
+
*
|
|
69
|
+
* Amazon Kendra Indexes can be imported using its `id`, e.g.,
|
|
70
|
+
*
|
|
71
|
+
* ```sh
|
|
72
|
+
* $ pulumi import aws:kendra/index:Index example 12345678-1234-5678-9123-123456789123
|
|
73
|
+
* ```
|
|
74
|
+
*/
|
|
75
|
+
export declare class Index extends pulumi.CustomResource {
|
|
76
|
+
/**
|
|
77
|
+
* Get an existing Index resource's state with the given name, ID, and optional extra
|
|
78
|
+
* properties used to qualify the lookup.
|
|
79
|
+
*
|
|
80
|
+
* @param name The _unique_ name of the resulting resource.
|
|
81
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
82
|
+
* @param state Any extra arguments used during the lookup.
|
|
83
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
84
|
+
*/
|
|
85
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IndexState, opts?: pulumi.CustomResourceOptions): Index;
|
|
86
|
+
/**
|
|
87
|
+
* Returns true if the given object is an instance of Index. This is designed to work even
|
|
88
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
89
|
+
*/
|
|
90
|
+
static isInstance(obj: any): obj is Index;
|
|
91
|
+
/**
|
|
92
|
+
* The Amazon Resource Name (ARN) of the Index.
|
|
93
|
+
*/
|
|
94
|
+
readonly arn: pulumi.Output<string>;
|
|
95
|
+
/**
|
|
96
|
+
* A block that sets the number of additional document storage and query capacity units that should be used by the index.
|
|
97
|
+
*/
|
|
98
|
+
readonly capacityUnits: pulumi.Output<outputs.kendra.IndexCapacityUnits>;
|
|
99
|
+
/**
|
|
100
|
+
* The Unix datetime that the index was created.
|
|
101
|
+
*/
|
|
102
|
+
readonly createdAt: pulumi.Output<string>;
|
|
103
|
+
/**
|
|
104
|
+
* The description of the Index.
|
|
105
|
+
*/
|
|
106
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
107
|
+
/**
|
|
108
|
+
* One or more blocks that specify the configuration settings for any metadata applied to the documents in the index. Documented below.
|
|
109
|
+
*/
|
|
110
|
+
readonly documentMetadataConfigurationUpdates: pulumi.Output<outputs.kendra.IndexDocumentMetadataConfigurationUpdate[]>;
|
|
111
|
+
/**
|
|
112
|
+
* The Amazon Kendra edition to use for the index. Choose `DEVELOPER_EDITION` for indexes intended for development, testing, or proof of concept. Use `ENTERPRISE_EDITION` for your production databases. Once you set the edition for an index, it can't be changed. Defaults to `ENTERPRISE_EDITION`
|
|
113
|
+
*/
|
|
114
|
+
readonly edition: pulumi.Output<string | undefined>;
|
|
115
|
+
/**
|
|
116
|
+
* When the Status field value is `FAILED`, this contains a message that explains why.
|
|
117
|
+
*/
|
|
118
|
+
readonly errorMessage: pulumi.Output<string>;
|
|
119
|
+
/**
|
|
120
|
+
* A block that provides information about the number of FAQ questions and answers and the number of text documents indexed. Documented below.
|
|
121
|
+
*/
|
|
122
|
+
readonly indexStatistics: pulumi.Output<outputs.kendra.IndexIndexStatistic[]>;
|
|
123
|
+
/**
|
|
124
|
+
* Specifies the name of the Index.
|
|
125
|
+
*/
|
|
126
|
+
readonly name: pulumi.Output<string>;
|
|
127
|
+
/**
|
|
128
|
+
* An AWS Identity and Access Management (IAM) role that gives Amazon Kendra permissions to access your Amazon CloudWatch logs and metrics. This is also the role you use when you call the `BatchPutDocument` API to index documents from an Amazon S3 bucket.
|
|
129
|
+
*/
|
|
130
|
+
readonly roleArn: pulumi.Output<string>;
|
|
131
|
+
/**
|
|
132
|
+
* A block that specifies the identifier of the AWS KMS customer managed key (CMK) that's used to encrypt data indexed by Amazon Kendra. Amazon Kendra doesn't support asymmetric CMKs. Documented below.
|
|
133
|
+
*/
|
|
134
|
+
readonly serverSideEncryptionConfiguration: pulumi.Output<outputs.kendra.IndexServerSideEncryptionConfiguration | undefined>;
|
|
135
|
+
/**
|
|
136
|
+
* The current status of the index. When the value is `ACTIVE`, the index is ready for use. If the Status field value is `FAILED`, the `errorMessage` field contains a message that explains why.
|
|
137
|
+
*/
|
|
138
|
+
readonly status: pulumi.Output<string>;
|
|
139
|
+
/**
|
|
140
|
+
* Tags to apply to the Index. If configured with a provider
|
|
141
|
+
* [`defaultTags` configuration block](https://www.terraform.io/docs/providers/aws/index.html#default_tags-configuration-block) present, tags with matching keys will overwrite those defined at the provider-level.
|
|
142
|
+
*/
|
|
143
|
+
readonly tags: pulumi.Output<{
|
|
144
|
+
[key: string]: string;
|
|
145
|
+
} | undefined>;
|
|
146
|
+
/**
|
|
147
|
+
* A map of tags assigned to the resource, including those inherited from the provider [`defaultTags` configuration block](https://www.terraform.io/docs/providers/aws/index.html#default_tags-configuration-block).
|
|
148
|
+
*/
|
|
149
|
+
readonly tagsAll: pulumi.Output<{
|
|
150
|
+
[key: string]: string;
|
|
151
|
+
}>;
|
|
152
|
+
/**
|
|
153
|
+
* The Unix datetime that the index was last updated.
|
|
154
|
+
*/
|
|
155
|
+
readonly updatedAt: pulumi.Output<string>;
|
|
156
|
+
/**
|
|
157
|
+
* The user context policy. Valid values are `ATTRIBUTE_FILTER` or `USER_TOKEN`. For more information, refer to [UserContextPolicy](https://docs.aws.amazon.com/kendra/latest/dg/API_CreateIndex.html#Kendra-CreateIndex-request-UserContextPolicy). Defaults to `ATTRIBUTE_FILTER`.
|
|
158
|
+
*/
|
|
159
|
+
readonly userContextPolicy: pulumi.Output<string | undefined>;
|
|
160
|
+
/**
|
|
161
|
+
* A block that enables fetching access levels of groups and users from an AWS Single Sign-On identity source. To configure this, see [UserGroupResolutionConfiguration](https://docs.aws.amazon.com/kendra/latest/dg/API_UserGroupResolutionConfiguration.html). Documented below.
|
|
162
|
+
*/
|
|
163
|
+
readonly userGroupResolutionConfiguration: pulumi.Output<outputs.kendra.IndexUserGroupResolutionConfiguration | undefined>;
|
|
164
|
+
/**
|
|
165
|
+
* A block that specifies the user token configuration. Documented below.
|
|
166
|
+
*/
|
|
167
|
+
readonly userTokenConfigurations: pulumi.Output<outputs.kendra.IndexUserTokenConfigurations | undefined>;
|
|
168
|
+
/**
|
|
169
|
+
* Create a Index resource with the given unique name, arguments, and options.
|
|
170
|
+
*
|
|
171
|
+
* @param name The _unique_ name of the resource.
|
|
172
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
173
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
174
|
+
*/
|
|
175
|
+
constructor(name: string, args: IndexArgs, opts?: pulumi.CustomResourceOptions);
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Input properties used for looking up and filtering Index resources.
|
|
179
|
+
*/
|
|
180
|
+
export interface IndexState {
|
|
181
|
+
/**
|
|
182
|
+
* The Amazon Resource Name (ARN) of the Index.
|
|
183
|
+
*/
|
|
184
|
+
arn?: pulumi.Input<string>;
|
|
185
|
+
/**
|
|
186
|
+
* A block that sets the number of additional document storage and query capacity units that should be used by the index.
|
|
187
|
+
*/
|
|
188
|
+
capacityUnits?: pulumi.Input<inputs.kendra.IndexCapacityUnits>;
|
|
189
|
+
/**
|
|
190
|
+
* The Unix datetime that the index was created.
|
|
191
|
+
*/
|
|
192
|
+
createdAt?: pulumi.Input<string>;
|
|
193
|
+
/**
|
|
194
|
+
* The description of the Index.
|
|
195
|
+
*/
|
|
196
|
+
description?: pulumi.Input<string>;
|
|
197
|
+
/**
|
|
198
|
+
* One or more blocks that specify the configuration settings for any metadata applied to the documents in the index. Documented below.
|
|
199
|
+
*/
|
|
200
|
+
documentMetadataConfigurationUpdates?: pulumi.Input<pulumi.Input<inputs.kendra.IndexDocumentMetadataConfigurationUpdate>[]>;
|
|
201
|
+
/**
|
|
202
|
+
* The Amazon Kendra edition to use for the index. Choose `DEVELOPER_EDITION` for indexes intended for development, testing, or proof of concept. Use `ENTERPRISE_EDITION` for your production databases. Once you set the edition for an index, it can't be changed. Defaults to `ENTERPRISE_EDITION`
|
|
203
|
+
*/
|
|
204
|
+
edition?: pulumi.Input<string>;
|
|
205
|
+
/**
|
|
206
|
+
* When the Status field value is `FAILED`, this contains a message that explains why.
|
|
207
|
+
*/
|
|
208
|
+
errorMessage?: pulumi.Input<string>;
|
|
209
|
+
/**
|
|
210
|
+
* A block that provides information about the number of FAQ questions and answers and the number of text documents indexed. Documented below.
|
|
211
|
+
*/
|
|
212
|
+
indexStatistics?: pulumi.Input<pulumi.Input<inputs.kendra.IndexIndexStatistic>[]>;
|
|
213
|
+
/**
|
|
214
|
+
* Specifies the name of the Index.
|
|
215
|
+
*/
|
|
216
|
+
name?: pulumi.Input<string>;
|
|
217
|
+
/**
|
|
218
|
+
* An AWS Identity and Access Management (IAM) role that gives Amazon Kendra permissions to access your Amazon CloudWatch logs and metrics. This is also the role you use when you call the `BatchPutDocument` API to index documents from an Amazon S3 bucket.
|
|
219
|
+
*/
|
|
220
|
+
roleArn?: pulumi.Input<string>;
|
|
221
|
+
/**
|
|
222
|
+
* A block that specifies the identifier of the AWS KMS customer managed key (CMK) that's used to encrypt data indexed by Amazon Kendra. Amazon Kendra doesn't support asymmetric CMKs. Documented below.
|
|
223
|
+
*/
|
|
224
|
+
serverSideEncryptionConfiguration?: pulumi.Input<inputs.kendra.IndexServerSideEncryptionConfiguration>;
|
|
225
|
+
/**
|
|
226
|
+
* The current status of the index. When the value is `ACTIVE`, the index is ready for use. If the Status field value is `FAILED`, the `errorMessage` field contains a message that explains why.
|
|
227
|
+
*/
|
|
228
|
+
status?: pulumi.Input<string>;
|
|
229
|
+
/**
|
|
230
|
+
* Tags to apply to the Index. If configured with a provider
|
|
231
|
+
* [`defaultTags` configuration block](https://www.terraform.io/docs/providers/aws/index.html#default_tags-configuration-block) present, tags with matching keys will overwrite those defined at the provider-level.
|
|
232
|
+
*/
|
|
233
|
+
tags?: pulumi.Input<{
|
|
234
|
+
[key: string]: pulumi.Input<string>;
|
|
235
|
+
}>;
|
|
236
|
+
/**
|
|
237
|
+
* A map of tags assigned to the resource, including those inherited from the provider [`defaultTags` configuration block](https://www.terraform.io/docs/providers/aws/index.html#default_tags-configuration-block).
|
|
238
|
+
*/
|
|
239
|
+
tagsAll?: pulumi.Input<{
|
|
240
|
+
[key: string]: pulumi.Input<string>;
|
|
241
|
+
}>;
|
|
242
|
+
/**
|
|
243
|
+
* The Unix datetime that the index was last updated.
|
|
244
|
+
*/
|
|
245
|
+
updatedAt?: pulumi.Input<string>;
|
|
246
|
+
/**
|
|
247
|
+
* The user context policy. Valid values are `ATTRIBUTE_FILTER` or `USER_TOKEN`. For more information, refer to [UserContextPolicy](https://docs.aws.amazon.com/kendra/latest/dg/API_CreateIndex.html#Kendra-CreateIndex-request-UserContextPolicy). Defaults to `ATTRIBUTE_FILTER`.
|
|
248
|
+
*/
|
|
249
|
+
userContextPolicy?: pulumi.Input<string>;
|
|
250
|
+
/**
|
|
251
|
+
* A block that enables fetching access levels of groups and users from an AWS Single Sign-On identity source. To configure this, see [UserGroupResolutionConfiguration](https://docs.aws.amazon.com/kendra/latest/dg/API_UserGroupResolutionConfiguration.html). Documented below.
|
|
252
|
+
*/
|
|
253
|
+
userGroupResolutionConfiguration?: pulumi.Input<inputs.kendra.IndexUserGroupResolutionConfiguration>;
|
|
254
|
+
/**
|
|
255
|
+
* A block that specifies the user token configuration. Documented below.
|
|
256
|
+
*/
|
|
257
|
+
userTokenConfigurations?: pulumi.Input<inputs.kendra.IndexUserTokenConfigurations>;
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* The set of arguments for constructing a Index resource.
|
|
261
|
+
*/
|
|
262
|
+
export interface IndexArgs {
|
|
263
|
+
/**
|
|
264
|
+
* A block that sets the number of additional document storage and query capacity units that should be used by the index.
|
|
265
|
+
*/
|
|
266
|
+
capacityUnits?: pulumi.Input<inputs.kendra.IndexCapacityUnits>;
|
|
267
|
+
/**
|
|
268
|
+
* The description of the Index.
|
|
269
|
+
*/
|
|
270
|
+
description?: pulumi.Input<string>;
|
|
271
|
+
/**
|
|
272
|
+
* The Amazon Kendra edition to use for the index. Choose `DEVELOPER_EDITION` for indexes intended for development, testing, or proof of concept. Use `ENTERPRISE_EDITION` for your production databases. Once you set the edition for an index, it can't be changed. Defaults to `ENTERPRISE_EDITION`
|
|
273
|
+
*/
|
|
274
|
+
edition?: pulumi.Input<string>;
|
|
275
|
+
/**
|
|
276
|
+
* Specifies the name of the Index.
|
|
277
|
+
*/
|
|
278
|
+
name?: pulumi.Input<string>;
|
|
279
|
+
/**
|
|
280
|
+
* An AWS Identity and Access Management (IAM) role that gives Amazon Kendra permissions to access your Amazon CloudWatch logs and metrics. This is also the role you use when you call the `BatchPutDocument` API to index documents from an Amazon S3 bucket.
|
|
281
|
+
*/
|
|
282
|
+
roleArn: pulumi.Input<string>;
|
|
283
|
+
/**
|
|
284
|
+
* A block that specifies the identifier of the AWS KMS customer managed key (CMK) that's used to encrypt data indexed by Amazon Kendra. Amazon Kendra doesn't support asymmetric CMKs. Documented below.
|
|
285
|
+
*/
|
|
286
|
+
serverSideEncryptionConfiguration?: pulumi.Input<inputs.kendra.IndexServerSideEncryptionConfiguration>;
|
|
287
|
+
/**
|
|
288
|
+
* Tags to apply to the Index. If configured with a provider
|
|
289
|
+
* [`defaultTags` configuration block](https://www.terraform.io/docs/providers/aws/index.html#default_tags-configuration-block) present, tags with matching keys will overwrite those defined at the provider-level.
|
|
290
|
+
*/
|
|
291
|
+
tags?: pulumi.Input<{
|
|
292
|
+
[key: string]: pulumi.Input<string>;
|
|
293
|
+
}>;
|
|
294
|
+
/**
|
|
295
|
+
* A map of tags assigned to the resource, including those inherited from the provider [`defaultTags` configuration block](https://www.terraform.io/docs/providers/aws/index.html#default_tags-configuration-block).
|
|
296
|
+
*/
|
|
297
|
+
tagsAll?: pulumi.Input<{
|
|
298
|
+
[key: string]: pulumi.Input<string>;
|
|
299
|
+
}>;
|
|
300
|
+
/**
|
|
301
|
+
* The user context policy. Valid values are `ATTRIBUTE_FILTER` or `USER_TOKEN`. For more information, refer to [UserContextPolicy](https://docs.aws.amazon.com/kendra/latest/dg/API_CreateIndex.html#Kendra-CreateIndex-request-UserContextPolicy). Defaults to `ATTRIBUTE_FILTER`.
|
|
302
|
+
*/
|
|
303
|
+
userContextPolicy?: pulumi.Input<string>;
|
|
304
|
+
/**
|
|
305
|
+
* A block that enables fetching access levels of groups and users from an AWS Single Sign-On identity source. To configure this, see [UserGroupResolutionConfiguration](https://docs.aws.amazon.com/kendra/latest/dg/API_UserGroupResolutionConfiguration.html). Documented below.
|
|
306
|
+
*/
|
|
307
|
+
userGroupResolutionConfiguration?: pulumi.Input<inputs.kendra.IndexUserGroupResolutionConfiguration>;
|
|
308
|
+
/**
|
|
309
|
+
* A block that specifies the user token configuration. Documented below.
|
|
310
|
+
*/
|
|
311
|
+
userTokenConfigurations?: pulumi.Input<inputs.kendra.IndexUserTokenConfigurations>;
|
|
312
|
+
}
|