@pulumi/aws 6.38.0-alpha.1716902128 → 6.38.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 -37
- package/apigateway/deployment.d.ts +14 -0
- package/apigateway/deployment.js +2 -0
- package/apigateway/deployment.js.map +1 -1
- package/budgets/budget.d.ts +1 -1
- package/budgets/budget.js +1 -1
- package/chatbot/getSlackWorkspace.d.ts +45 -0
- package/chatbot/getSlackWorkspace.js +29 -0
- package/chatbot/getSlackWorkspace.js.map +1 -0
- package/chatbot/index.d.ts +3 -0
- package/chatbot/index.js +10 -0
- package/chatbot/index.js.map +1 -0
- package/cloudfront/originAccessIdentity.d.ts +1 -1
- package/cloudfront/originAccessIdentity.js +1 -1
- package/ec2/amiFromInstance.d.ts +1 -1
- package/ec2/amiFromInstance.js +1 -1
- package/ec2/instance.d.ts +1 -1
- package/ec2/instance.js +1 -1
- package/ec2/launchConfiguration.d.ts +1 -1
- package/ec2/launchConfiguration.js +1 -1
- package/ec2/networkInsightsAnalysis.d.ts +1 -1
- package/ec2/networkInsightsAnalysis.js +1 -1
- package/ec2/vpcEndpoint.d.ts +1 -1
- package/ecs/service.d.ts +24 -12
- package/ecs/service.js +2 -0
- package/ecs/service.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +6 -4
- package/index.js.map +1 -1
- package/kms/grant.d.ts +1 -0
- package/kms/grant.js +3 -0
- package/kms/grant.js.map +1 -1
- package/kms/key.d.ts +289 -2
- package/kms/key.js +289 -2
- package/kms/key.js.map +1 -1
- package/lakeformation/lfTag.d.ts +1 -1
- package/lakeformation/lfTag.js +1 -1
- package/lambda/function.d.ts +26 -27
- package/lambda/function.js +2 -0
- package/lambda/function.js.map +1 -1
- package/lambda/getFunction.d.ts +7 -1
- package/lambda/getFunction.js.map +1 -1
- package/lambda/getLayerVersion.d.ts +8 -2
- package/lambda/getLayerVersion.js.map +1 -1
- package/lambda/index.d.ts +3 -0
- package/lambda/index.js +6 -1
- package/lambda/index.js.map +1 -1
- package/lambda/layerVersion.d.ts +8 -9
- package/lambda/layerVersion.js +2 -0
- package/lambda/layerVersion.js.map +1 -1
- package/lambda/runtimeManagementConfig.d.ts +143 -0
- package/lambda/runtimeManagementConfig.js +105 -0
- package/lambda/runtimeManagementConfig.js.map +1 -0
- package/macie2/classificationJob.d.ts +2 -2
- package/package.json +2 -2
- package/quicksight/getQuicksightUser.d.ts +1 -1
- package/route53/getZone.d.ts +0 -8
- package/route53/getZone.js +0 -1
- package/route53/getZone.js.map +1 -1
- package/s3/getBucketObject.d.ts +2 -2
- package/s3/getBucketObject.js +2 -2
- package/s3/getObject.d.ts +2 -2
- package/s3/getObject.js +2 -2
- package/ses/domainIdentity.d.ts +2 -16
- package/ses/domainIdentity.js.map +1 -1
- package/storagegateway/smbFileShare.d.ts +9 -3
- package/storagegateway/smbFileShare.js.map +1 -1
- package/types/input.d.ts +142 -28
- package/types/input.js.map +1 -1
- package/types/output.d.ts +142 -28
- package/types/output.js.map +1 -1
- package/vpc/endpointPrivateDns.d.ts +88 -0
- package/vpc/endpointPrivateDns.js +85 -0
- package/vpc/endpointPrivateDns.js.map +1 -0
- package/vpc/endpointServicePrivateDnsVerification.d.ts +95 -0
- package/vpc/endpointServicePrivateDnsVerification.js +80 -0
- package/vpc/endpointServicePrivateDnsVerification.js.map +1 -0
- package/vpc/index.d.ts +6 -0
- package/vpc/index.js +11 -1
- package/vpc/index.js.map +1 -1
package/README.md
CHANGED
|
@@ -103,46 +103,10 @@ The following configuration points are available:
|
|
|
103
103
|
- `aws:skipCredentialsValidation` - (Optional) Skip the credentials validation via the STS API. Useful for AWS API implementations that do not have STS available or implemented. Default value is `false`. Can be set via the environment variable `AWS_SKIP_CREDENTIALS_VALIDATION`.
|
|
104
104
|
- `aws:skipRegionValidation` - (Optional) Skip validation of provided region name. Useful for AWS-like implementations that use their own region names or to bypass the validation for regions that aren't publicly available yet. Default value is `true`.
|
|
105
105
|
- `aws:skipRequestionAccountId` - (Optional) Skip requesting the account ID. Useful for AWS API implementations that do not have the IAM, STS API, or metadata API. Default value is `false`. When specified, the use of ARNs is compromised as there is no accountID available to construct the ARN.
|
|
106
|
-
- `aws:skipMetadataApiCheck` - (Optional) Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. This provider from authenticating via the Metadata API by default. You may need to use other authentication methods like static credentials, configuration variables, or environment variables.
|
|
106
|
+
- `aws:skipMetadataApiCheck` - (Optional) Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. This provider from authenticating via the Metadata API by default. You may need to use other authentication methods like static credentials, configuration variables, or environment variables. Can be set via the environment variable `AWS_SKIP_METADATA_API_CHECK`.
|
|
107
107
|
- `aws:s3UsePathStyle` - (Optional) Set this to true to force the request to use path-style addressing, i.e., `http://s3.amazonaws.com/BUCKET/KEY`. By default, the S3 client will use virtual hosted bucket addressing, `http://BUCKET.s3.amazonaws.com/KEY`, when possible. Specific to the Amazon S3 service. Default is `false`.
|
|
108
108
|
- `aws:useFipsEndpoint` - (Optional) Force the provider to resolve endpoints with FIPS capability. Can also be set with the `AWS_USE_FIPS_ENDPOINT` environment variable.
|
|
109
109
|
|
|
110
|
-
### Authenticating pulumi-aws via EC2 Instance Metadata?
|
|
111
|
-
|
|
112
|
-
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, you need to do either of the following
|
|
113
|
-
|
|
114
|
-
1. When using the default provider:
|
|
115
|
-
```
|
|
116
|
-
pulumi config set aws:skipMetadataApiCheck false
|
|
117
|
-
```
|
|
118
|
-
|
|
119
|
-
2. When using a named provider
|
|
120
|
-
```typescript
|
|
121
|
-
const myProvider = new aws.Provider("named-provider", {
|
|
122
|
-
// other config
|
|
123
|
-
skipMetadataApiCheck: false,
|
|
124
|
-
});
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
```csharp
|
|
128
|
-
var provider = new Aws.Provider("named-provider", new Aws.ProviderArgs
|
|
129
|
-
{
|
|
130
|
-
// other config
|
|
131
|
-
SkipMetadataApiCheck = false,
|
|
132
|
-
});
|
|
133
|
-
```
|
|
134
|
-
|
|
135
|
-
```go
|
|
136
|
-
provider, err := aws.NewProvider(ctx, "named-provider", &aws.ProviderArgs{
|
|
137
|
-
// other config
|
|
138
|
-
SkipMetadataApiCheck: pulumi.BoolPtr(false),
|
|
139
|
-
})
|
|
140
|
-
```
|
|
141
|
-
|
|
142
|
-
```python
|
|
143
|
-
provider = pulumi_aws.Provider('named-provider', skip_metadata_api_check=False)
|
|
144
|
-
```
|
|
145
|
-
|
|
146
110
|
## Reference
|
|
147
111
|
|
|
148
112
|
For further information, visit [AWS in the Pulumi Registry](https://www.pulumi.com/registry/packages/aws/)
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
2
4
|
import { RestApi } from "./index";
|
|
3
5
|
/**
|
|
4
6
|
* Manages an API Gateway REST Deployment. A deployment is a snapshot of the REST API configuration. The deployment can then be published to callable endpoints via the `aws.apigateway.Stage` resource and optionally managed further with the `aws.apigateway.BasePathMapping` resource, `aws.apigateway.DomainName` resource, and `awsApiMethodSettings` resource. For more information, see the [API Gateway Developer Guide](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-deploy-api.html).
|
|
@@ -39,6 +41,10 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
39
41
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
40
42
|
*/
|
|
41
43
|
static isInstance(obj: any): obj is Deployment;
|
|
44
|
+
/**
|
|
45
|
+
* Input configuration for the canary deployment when the deployment is a canary release deployment. See `canarySettings below.
|
|
46
|
+
*/
|
|
47
|
+
readonly canarySettings: pulumi.Output<outputs.apigateway.DeploymentCanarySettings | undefined>;
|
|
42
48
|
/**
|
|
43
49
|
* Creation date of the deployment
|
|
44
50
|
*/
|
|
@@ -95,6 +101,10 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
95
101
|
* Input properties used for looking up and filtering Deployment resources.
|
|
96
102
|
*/
|
|
97
103
|
export interface DeploymentState {
|
|
104
|
+
/**
|
|
105
|
+
* Input configuration for the canary deployment when the deployment is a canary release deployment. See `canarySettings below.
|
|
106
|
+
*/
|
|
107
|
+
canarySettings?: pulumi.Input<inputs.apigateway.DeploymentCanarySettings>;
|
|
98
108
|
/**
|
|
99
109
|
* Creation date of the deployment
|
|
100
110
|
*/
|
|
@@ -143,6 +153,10 @@ export interface DeploymentState {
|
|
|
143
153
|
* The set of arguments for constructing a Deployment resource.
|
|
144
154
|
*/
|
|
145
155
|
export interface DeploymentArgs {
|
|
156
|
+
/**
|
|
157
|
+
* Input configuration for the canary deployment when the deployment is a canary release deployment. See `canarySettings below.
|
|
158
|
+
*/
|
|
159
|
+
canarySettings?: pulumi.Input<inputs.apigateway.DeploymentCanarySettings>;
|
|
146
160
|
/**
|
|
147
161
|
* Description of the deployment
|
|
148
162
|
*/
|
package/apigateway/deployment.js
CHANGED
|
@@ -56,6 +56,7 @@ class Deployment extends pulumi.CustomResource {
|
|
|
56
56
|
opts = opts || {};
|
|
57
57
|
if (opts.id) {
|
|
58
58
|
const state = argsOrState;
|
|
59
|
+
resourceInputs["canarySettings"] = state ? state.canarySettings : undefined;
|
|
59
60
|
resourceInputs["createdDate"] = state ? state.createdDate : undefined;
|
|
60
61
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
61
62
|
resourceInputs["executionArn"] = state ? state.executionArn : undefined;
|
|
@@ -71,6 +72,7 @@ class Deployment extends pulumi.CustomResource {
|
|
|
71
72
|
if ((!args || args.restApi === undefined) && !opts.urn) {
|
|
72
73
|
throw new Error("Missing required property 'restApi'");
|
|
73
74
|
}
|
|
75
|
+
resourceInputs["canarySettings"] = args ? args.canarySettings : undefined;
|
|
74
76
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
75
77
|
resourceInputs["restApi"] = args ? args.restApi : undefined;
|
|
76
78
|
resourceInputs["stageDescription"] = args ? args.stageDescription : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../../apigateway/deployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../../apigateway/deployment.ts"],"names":[],"mappings":"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"}
|
package/budgets/budget.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
|
-
* Provides a budgets budget resource. Budgets use the cost
|
|
5
|
+
* Provides a budgets budget resource. Budgets use the cost visualization provided by Cost Explorer to show you the status of your budgets, to provide forecasts of your estimated costs, and to track your AWS usage, including your free tier usage.
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
package/budgets/budget.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.Budget = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Provides a budgets budget resource. Budgets use the cost
|
|
9
|
+
* Provides a budgets budget resource. Budgets use the cost visualization provided by Cost Explorer to show you the status of your budgets, to provide forecasts of your estimated costs, and to track your AWS usage, including your free tier usage.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Data source for managing an AWS Chatbot Slack Workspace.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*/
|
|
7
|
+
export declare function getSlackWorkspace(args: GetSlackWorkspaceArgs, opts?: pulumi.InvokeOptions): Promise<GetSlackWorkspaceResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getSlackWorkspace.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetSlackWorkspaceArgs {
|
|
12
|
+
/**
|
|
13
|
+
* Slack workspace name configured with AWS Chabot.
|
|
14
|
+
*/
|
|
15
|
+
slackTeamName: string;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* A collection of values returned by getSlackWorkspace.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetSlackWorkspaceResult {
|
|
21
|
+
/**
|
|
22
|
+
* The provider-assigned unique ID for this managed resource.
|
|
23
|
+
*/
|
|
24
|
+
readonly id: string;
|
|
25
|
+
/**
|
|
26
|
+
* ID of the Slack Workspace assigned by AWS Chatbot.
|
|
27
|
+
*/
|
|
28
|
+
readonly slackTeamId: string;
|
|
29
|
+
readonly slackTeamName: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Data source for managing an AWS Chatbot Slack Workspace.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*/
|
|
36
|
+
export declare function getSlackWorkspaceOutput(args: GetSlackWorkspaceOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSlackWorkspaceResult>;
|
|
37
|
+
/**
|
|
38
|
+
* A collection of arguments for invoking getSlackWorkspace.
|
|
39
|
+
*/
|
|
40
|
+
export interface GetSlackWorkspaceOutputArgs {
|
|
41
|
+
/**
|
|
42
|
+
* Slack workspace name configured with AWS Chabot.
|
|
43
|
+
*/
|
|
44
|
+
slackTeamName: pulumi.Input<string>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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.getSlackWorkspaceOutput = exports.getSlackWorkspace = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data source for managing an AWS Chatbot Slack Workspace.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*/
|
|
13
|
+
function getSlackWorkspace(args, opts) {
|
|
14
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
15
|
+
return pulumi.runtime.invoke("aws:chatbot/getSlackWorkspace:getSlackWorkspace", {
|
|
16
|
+
"slackTeamName": args.slackTeamName,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getSlackWorkspace = getSlackWorkspace;
|
|
20
|
+
/**
|
|
21
|
+
* Data source for managing an AWS Chatbot Slack Workspace.
|
|
22
|
+
*
|
|
23
|
+
* ## Example Usage
|
|
24
|
+
*/
|
|
25
|
+
function getSlackWorkspaceOutput(args, opts) {
|
|
26
|
+
return pulumi.output(args).apply((a) => getSlackWorkspace(a, opts));
|
|
27
|
+
}
|
|
28
|
+
exports.getSlackWorkspaceOutput = getSlackWorkspaceOutput;
|
|
29
|
+
//# sourceMappingURL=getSlackWorkspace.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSlackWorkspace.js","sourceRoot":"","sources":["../../chatbot/getSlackWorkspace.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC;AA0BD;;;;GAIG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { GetSlackWorkspaceArgs, GetSlackWorkspaceResult, GetSlackWorkspaceOutputArgs } from "./getSlackWorkspace";
|
|
2
|
+
export declare const getSlackWorkspace: typeof import("./getSlackWorkspace").getSlackWorkspace;
|
|
3
|
+
export declare const getSlackWorkspaceOutput: typeof import("./getSlackWorkspace").getSlackWorkspaceOutput;
|
package/chatbot/index.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
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.getSlackWorkspaceOutput = exports.getSlackWorkspace = void 0;
|
|
6
|
+
const utilities = require("../utilities");
|
|
7
|
+
exports.getSlackWorkspace = null;
|
|
8
|
+
exports.getSlackWorkspaceOutput = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["getSlackWorkspace", "getSlackWorkspaceOutput"], () => require("./getSlackWorkspace"));
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../chatbot/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,0CAA0C;AAI7B,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACxF,QAAA,uBAAuB,GAAiE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,EAAC,yBAAyB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC"}
|
|
@@ -42,7 +42,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
42
42
|
* Note that the AWS API may translate the `s3CanonicalUserId` `CanonicalUser`
|
|
43
43
|
* principal into an `AWS` IAM ARN principal when supplied in an
|
|
44
44
|
* `aws.s3.BucketV2` bucket policy, causing spurious diffs. If
|
|
45
|
-
* you see this
|
|
45
|
+
* you see this behavior, use the `iamArn` instead:
|
|
46
46
|
*
|
|
47
47
|
* ```typescript
|
|
48
48
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -48,7 +48,7 @@ const utilities = require("../utilities");
|
|
|
48
48
|
* Note that the AWS API may translate the `s3CanonicalUserId` `CanonicalUser`
|
|
49
49
|
* principal into an `AWS` IAM ARN principal when supplied in an
|
|
50
50
|
* `aws.s3.BucketV2` bucket policy, causing spurious diffs. If
|
|
51
|
-
* you see this
|
|
51
|
+
* you see this behavior, use the `iamArn` instead:
|
|
52
52
|
*
|
|
53
53
|
* ```typescript
|
|
54
54
|
* import * as pulumi from "@pulumi/pulumi";
|
package/ec2/amiFromInstance.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as inputs from "../types/input";
|
|
|
3
3
|
import * as outputs from "../types/output";
|
|
4
4
|
/**
|
|
5
5
|
* The "AMI from instance" resource allows the creation of an Amazon Machine
|
|
6
|
-
* Image (AMI)
|
|
6
|
+
* Image (AMI) modeled after an existing EBS-backed EC2 instance.
|
|
7
7
|
*
|
|
8
8
|
* The created AMI will refer to implicitly-created snapshots of the instance's
|
|
9
9
|
* EBS volumes and mimick its assigned block device configuration at the time
|
package/ec2/amiFromInstance.js
CHANGED
|
@@ -7,7 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
9
|
* The "AMI from instance" resource allows the creation of an Amazon Machine
|
|
10
|
-
* Image (AMI)
|
|
10
|
+
* Image (AMI) modeled after an existing EBS-backed EC2 instance.
|
|
11
11
|
*
|
|
12
12
|
* The created AMI will refer to implicitly-created snapshots of the instance's
|
|
13
13
|
* EBS volumes and mimick its assigned block device configuration at the time
|
package/ec2/instance.d.ts
CHANGED
|
@@ -153,7 +153,7 @@ import { InstanceProfile } from "../iam";
|
|
|
153
153
|
* });
|
|
154
154
|
* ```
|
|
155
155
|
*
|
|
156
|
-
* ### Host resource group or
|
|
156
|
+
* ### Host resource group or License Manager registered AMI example
|
|
157
157
|
*
|
|
158
158
|
* A host resource group is a collection of Dedicated Hosts that you can manage as a single entity. As you launch instances, License Manager allocates the hosts and launches instances on them based on the settings that you configured. You can add existing Dedicated Hosts to a host resource group and take advantage of automated host management through License Manager.
|
|
159
159
|
*
|
package/ec2/instance.js
CHANGED
|
@@ -155,7 +155,7 @@ const utilities = require("../utilities");
|
|
|
155
155
|
* });
|
|
156
156
|
* ```
|
|
157
157
|
*
|
|
158
|
-
* ### Host resource group or
|
|
158
|
+
* ### Host resource group or License Manager registered AMI example
|
|
159
159
|
*
|
|
160
160
|
* A host resource group is a collection of Dedicated Hosts that you can manage as a single entity. As you launch instances, License Manager allocates the hosts and launches instances on them based on the settings that you configured. You can add existing Dedicated Hosts to a host resource group and take advantage of automated host management through License Manager.
|
|
161
161
|
*
|
|
@@ -5,7 +5,7 @@ import { InstanceProfile } from "../iam";
|
|
|
5
5
|
/**
|
|
6
6
|
* Provides a resource to create a new launch configuration, used for autoscaling groups.
|
|
7
7
|
*
|
|
8
|
-
* !> **WARNING:** The use of launch configurations is discouraged in
|
|
8
|
+
* !> **WARNING:** The use of launch configurations is discouraged in favor of launch templates. Read more in the [AWS EC2 Documentation](https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-configurations.html).
|
|
9
9
|
*
|
|
10
10
|
* > **Note** When using `aws.ec2.LaunchConfiguration` with `aws.autoscaling.Group`, it is recommended to use the `namePrefix` (Optional) instead of the `name` (Optional) attribute.
|
|
11
11
|
*
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Provides a resource to create a new launch configuration, used for autoscaling groups.
|
|
10
10
|
*
|
|
11
|
-
* !> **WARNING:** The use of launch configurations is discouraged in
|
|
11
|
+
* !> **WARNING:** The use of launch configurations is discouraged in favor of launch templates. Read more in the [AWS EC2 Documentation](https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-configurations.html).
|
|
12
12
|
*
|
|
13
13
|
* > **Note** When using `aws.ec2.LaunchConfiguration` with `aws.autoscaling.Group`, it is recommended to use the `namePrefix` (Optional) instead of the `name` (Optional) attribute.
|
|
14
14
|
*
|
|
@@ -20,7 +20,7 @@ import * as outputs from "../types/output";
|
|
|
20
20
|
*
|
|
21
21
|
* ## Import
|
|
22
22
|
*
|
|
23
|
-
* Using `pulumi import`, import Network Insights
|
|
23
|
+
* Using `pulumi import`, import Network Insights Analyzes using the `id`. For example:
|
|
24
24
|
*
|
|
25
25
|
* ```sh
|
|
26
26
|
* $ pulumi import aws:ec2/networkInsightsAnalysis:NetworkInsightsAnalysis test nia-0462085c957f11a55
|
|
@@ -24,7 +24,7 @@ const utilities = require("../utilities");
|
|
|
24
24
|
*
|
|
25
25
|
* ## Import
|
|
26
26
|
*
|
|
27
|
-
* Using `pulumi import`, import Network Insights
|
|
27
|
+
* Using `pulumi import`, import Network Insights Analyzes using the `id`. For example:
|
|
28
28
|
*
|
|
29
29
|
* ```sh
|
|
30
30
|
* $ pulumi import aws:ec2/networkInsightsAnalysis:NetworkInsightsAnalysis test nia-0462085c957f11a55
|
package/ec2/vpcEndpoint.d.ts
CHANGED
|
@@ -144,7 +144,7 @@ export declare class VpcEndpoint extends pulumi.CustomResource {
|
|
|
144
144
|
* Whether or not to associate a private hosted zone with the specified VPC. Applicable for endpoints of type `Interface`. Most users will want this enabled to allow services within the VPC to automatically use the endpoint.
|
|
145
145
|
* Defaults to `false`.
|
|
146
146
|
*/
|
|
147
|
-
readonly privateDnsEnabled: pulumi.Output<boolean
|
|
147
|
+
readonly privateDnsEnabled: pulumi.Output<boolean>;
|
|
148
148
|
/**
|
|
149
149
|
* Whether or not the VPC Endpoint is being managed by its service - `true` or `false`.
|
|
150
150
|
*/
|
package/ecs/service.d.ts
CHANGED
|
@@ -152,11 +152,11 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
152
152
|
*/
|
|
153
153
|
readonly desiredCount: pulumi.Output<number | undefined>;
|
|
154
154
|
/**
|
|
155
|
-
*
|
|
155
|
+
* Whether to enable Amazon ECS managed tags for the tasks within the service.
|
|
156
156
|
*/
|
|
157
157
|
readonly enableEcsManagedTags: pulumi.Output<boolean | undefined>;
|
|
158
158
|
/**
|
|
159
|
-
*
|
|
159
|
+
* Whether to enable Amazon ECS Exec for the tasks within the service.
|
|
160
160
|
*/
|
|
161
161
|
readonly enableExecuteCommand: pulumi.Output<boolean | undefined>;
|
|
162
162
|
/**
|
|
@@ -202,7 +202,7 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
202
202
|
*/
|
|
203
203
|
readonly platformVersion: pulumi.Output<string>;
|
|
204
204
|
/**
|
|
205
|
-
*
|
|
205
|
+
* Whether to propagate the tags from the task definition or the service to the tasks. The valid values are `SERVICE` and `TASK_DEFINITION`.
|
|
206
206
|
*/
|
|
207
207
|
readonly propagateTags: pulumi.Output<string | undefined>;
|
|
208
208
|
/**
|
|
@@ -210,7 +210,7 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
210
210
|
*/
|
|
211
211
|
readonly schedulingStrategy: pulumi.Output<string | undefined>;
|
|
212
212
|
/**
|
|
213
|
-
*
|
|
213
|
+
* ECS Service Connect configuration for this service to discover and connect to services, and be discovered by, and connected from, other services within a namespace. See below.
|
|
214
214
|
*/
|
|
215
215
|
readonly serviceConnectConfiguration: pulumi.Output<outputs.ecs.ServiceServiceConnectConfiguration | undefined>;
|
|
216
216
|
/**
|
|
@@ -241,6 +241,10 @@ export declare class Service extends pulumi.CustomResource {
|
|
|
241
241
|
readonly triggers: pulumi.Output<{
|
|
242
242
|
[key: string]: string;
|
|
243
243
|
}>;
|
|
244
|
+
/**
|
|
245
|
+
* Configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume. See below.
|
|
246
|
+
*/
|
|
247
|
+
readonly volumeConfiguration: pulumi.Output<outputs.ecs.ServiceVolumeConfiguration | undefined>;
|
|
244
248
|
/**
|
|
245
249
|
* If `true`, this provider will wait for the service to reach a steady state (like [`aws ecs wait services-stable`](https://docs.aws.amazon.com/cli/latest/reference/ecs/wait/services-stable.html)) before continuing. Default `false`.
|
|
246
250
|
*/
|
|
@@ -291,11 +295,11 @@ export interface ServiceState {
|
|
|
291
295
|
*/
|
|
292
296
|
desiredCount?: pulumi.Input<number>;
|
|
293
297
|
/**
|
|
294
|
-
*
|
|
298
|
+
* Whether to enable Amazon ECS managed tags for the tasks within the service.
|
|
295
299
|
*/
|
|
296
300
|
enableEcsManagedTags?: pulumi.Input<boolean>;
|
|
297
301
|
/**
|
|
298
|
-
*
|
|
302
|
+
* Whether to enable Amazon ECS Exec for the tasks within the service.
|
|
299
303
|
*/
|
|
300
304
|
enableExecuteCommand?: pulumi.Input<boolean>;
|
|
301
305
|
/**
|
|
@@ -341,7 +345,7 @@ export interface ServiceState {
|
|
|
341
345
|
*/
|
|
342
346
|
platformVersion?: pulumi.Input<string>;
|
|
343
347
|
/**
|
|
344
|
-
*
|
|
348
|
+
* Whether to propagate the tags from the task definition or the service to the tasks. The valid values are `SERVICE` and `TASK_DEFINITION`.
|
|
345
349
|
*/
|
|
346
350
|
propagateTags?: pulumi.Input<string>;
|
|
347
351
|
/**
|
|
@@ -349,7 +353,7 @@ export interface ServiceState {
|
|
|
349
353
|
*/
|
|
350
354
|
schedulingStrategy?: pulumi.Input<string>;
|
|
351
355
|
/**
|
|
352
|
-
*
|
|
356
|
+
* ECS Service Connect configuration for this service to discover and connect to services, and be discovered by, and connected from, other services within a namespace. See below.
|
|
353
357
|
*/
|
|
354
358
|
serviceConnectConfiguration?: pulumi.Input<inputs.ecs.ServiceServiceConnectConfiguration>;
|
|
355
359
|
/**
|
|
@@ -380,6 +384,10 @@ export interface ServiceState {
|
|
|
380
384
|
triggers?: pulumi.Input<{
|
|
381
385
|
[key: string]: pulumi.Input<string>;
|
|
382
386
|
}>;
|
|
387
|
+
/**
|
|
388
|
+
* Configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume. See below.
|
|
389
|
+
*/
|
|
390
|
+
volumeConfiguration?: pulumi.Input<inputs.ecs.ServiceVolumeConfiguration>;
|
|
383
391
|
/**
|
|
384
392
|
* If `true`, this provider will wait for the service to reach a steady state (like [`aws ecs wait services-stable`](https://docs.aws.amazon.com/cli/latest/reference/ecs/wait/services-stable.html)) before continuing. Default `false`.
|
|
385
393
|
*/
|
|
@@ -422,11 +430,11 @@ export interface ServiceArgs {
|
|
|
422
430
|
*/
|
|
423
431
|
desiredCount?: pulumi.Input<number>;
|
|
424
432
|
/**
|
|
425
|
-
*
|
|
433
|
+
* Whether to enable Amazon ECS managed tags for the tasks within the service.
|
|
426
434
|
*/
|
|
427
435
|
enableEcsManagedTags?: pulumi.Input<boolean>;
|
|
428
436
|
/**
|
|
429
|
-
*
|
|
437
|
+
* Whether to enable Amazon ECS Exec for the tasks within the service.
|
|
430
438
|
*/
|
|
431
439
|
enableExecuteCommand?: pulumi.Input<boolean>;
|
|
432
440
|
/**
|
|
@@ -472,7 +480,7 @@ export interface ServiceArgs {
|
|
|
472
480
|
*/
|
|
473
481
|
platformVersion?: pulumi.Input<string>;
|
|
474
482
|
/**
|
|
475
|
-
*
|
|
483
|
+
* Whether to propagate the tags from the task definition or the service to the tasks. The valid values are `SERVICE` and `TASK_DEFINITION`.
|
|
476
484
|
*/
|
|
477
485
|
propagateTags?: pulumi.Input<string>;
|
|
478
486
|
/**
|
|
@@ -480,7 +488,7 @@ export interface ServiceArgs {
|
|
|
480
488
|
*/
|
|
481
489
|
schedulingStrategy?: pulumi.Input<string>;
|
|
482
490
|
/**
|
|
483
|
-
*
|
|
491
|
+
* ECS Service Connect configuration for this service to discover and connect to services, and be discovered by, and connected from, other services within a namespace. See below.
|
|
484
492
|
*/
|
|
485
493
|
serviceConnectConfiguration?: pulumi.Input<inputs.ecs.ServiceServiceConnectConfiguration>;
|
|
486
494
|
/**
|
|
@@ -503,6 +511,10 @@ export interface ServiceArgs {
|
|
|
503
511
|
triggers?: pulumi.Input<{
|
|
504
512
|
[key: string]: pulumi.Input<string>;
|
|
505
513
|
}>;
|
|
514
|
+
/**
|
|
515
|
+
* Configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume. See below.
|
|
516
|
+
*/
|
|
517
|
+
volumeConfiguration?: pulumi.Input<inputs.ecs.ServiceVolumeConfiguration>;
|
|
506
518
|
/**
|
|
507
519
|
* If `true`, this provider will wait for the service to reach a steady state (like [`aws ecs wait services-stable`](https://docs.aws.amazon.com/cli/latest/reference/ecs/wait/services-stable.html)) before continuing. Default `false`.
|
|
508
520
|
*/
|
package/ecs/service.js
CHANGED
|
@@ -163,6 +163,7 @@ class Service extends pulumi.CustomResource {
|
|
|
163
163
|
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
164
164
|
resourceInputs["taskDefinition"] = state ? state.taskDefinition : undefined;
|
|
165
165
|
resourceInputs["triggers"] = state ? state.triggers : undefined;
|
|
166
|
+
resourceInputs["volumeConfiguration"] = state ? state.volumeConfiguration : undefined;
|
|
166
167
|
resourceInputs["waitForSteadyState"] = state ? state.waitForSteadyState : undefined;
|
|
167
168
|
}
|
|
168
169
|
else {
|
|
@@ -194,6 +195,7 @@ class Service extends pulumi.CustomResource {
|
|
|
194
195
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
195
196
|
resourceInputs["taskDefinition"] = args ? args.taskDefinition : undefined;
|
|
196
197
|
resourceInputs["triggers"] = args ? args.triggers : undefined;
|
|
198
|
+
resourceInputs["volumeConfiguration"] = args ? args.volumeConfiguration : undefined;
|
|
197
199
|
resourceInputs["waitForSteadyState"] = args ? args.waitForSteadyState : undefined;
|
|
198
200
|
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
199
201
|
}
|
package/ecs/service.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../ecs/service.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqGG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../ecs/service.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -70,6 +70,7 @@ import * as bedrockfoundation from "./bedrockfoundation";
|
|
|
70
70
|
import * as bedrockmodel from "./bedrockmodel";
|
|
71
71
|
import * as budgets from "./budgets";
|
|
72
72
|
import * as cfg from "./cfg";
|
|
73
|
+
import * as chatbot from "./chatbot";
|
|
73
74
|
import * as chime from "./chime";
|
|
74
75
|
import * as chimesdkmediapipelines from "./chimesdkmediapipelines";
|
|
75
76
|
import * as cleanrooms from "./cleanrooms";
|
|
@@ -246,4 +247,4 @@ import * as wafv2 from "./wafv2";
|
|
|
246
247
|
import * as worklink from "./worklink";
|
|
247
248
|
import * as workspaces from "./workspaces";
|
|
248
249
|
import * as xray from "./xray";
|
|
249
|
-
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, bcmdata, 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, datazone, dax, detective, devicefarm, devopsguru, 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, m2, 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, };
|
|
250
|
+
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, bcmdata, bedrock, bedrockfoundation, bedrockmodel, budgets, cfg, chatbot, 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, datazone, dax, detective, devicefarm, devopsguru, 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, m2, 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
|
@@ -17,10 +17,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.bedrock = exports.bcmdata = 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
|
-
exports.
|
|
21
|
-
exports.
|
|
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 = exports.shield = exports.sfn = exports.sesv2 = exports.ses = exports.servicequotas = void 0;
|
|
20
|
+
exports.ec2 = exports.ebs = exports.dynamodb = exports.docdb = exports.dms = exports.dlm = exports.directoryservice = exports.directconnect = exports.devopsguru = exports.devicefarm = exports.detective = exports.dax = exports.datazone = 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.chatbot = exports.cfg = exports.budgets = exports.bedrockmodel = exports.bedrockfoundation = void 0;
|
|
21
|
+
exports.mediaconvert = exports.macie2 = exports.macie = exports.m2 = 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 = exports.ecrpublic = exports.ecr = exports.ec2transitgateway = exports.ec2clientvpn = void 0;
|
|
22
|
+
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 = exports.mq = exports.memorydb = exports.mediastore = exports.mediapackage = exports.medialive = 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 = exports.sfn = exports.sesv2 = exports.ses = exports.servicequotas = exports.servicediscovery = void 0;
|
|
24
24
|
const pulumi = require("@pulumi/pulumi");
|
|
25
25
|
const utilities = require("./utilities");
|
|
26
26
|
// Export members:
|
|
@@ -128,6 +128,8 @@ const budgets = require("./budgets");
|
|
|
128
128
|
exports.budgets = budgets;
|
|
129
129
|
const cfg = require("./cfg");
|
|
130
130
|
exports.cfg = cfg;
|
|
131
|
+
const chatbot = require("./chatbot");
|
|
132
|
+
exports.chatbot = chatbot;
|
|
131
133
|
const chime = require("./chime");
|
|
132
134
|
exports.chime = chime;
|
|
133
135
|
const chimesdkmediapipelines = require("./chimesdkmediapipelines");
|