@pulumi/aws 6.69.0-alpha.1739293705 → 6.69.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.
Files changed (80) hide show
  1. package/apigateway/method.d.ts +1 -1
  2. package/apigateway/method.js +1 -1
  3. package/batch/getComputeEnvironment.d.ts +2 -2
  4. package/batch/getComputeEnvironment.js +2 -2
  5. package/batch/getJobQueue.d.ts +2 -2
  6. package/batch/getJobQueue.js +2 -2
  7. package/cloudtrail/trail.d.ts +9 -9
  8. package/cloudtrail/trail.js +6 -6
  9. package/cloudwatch/logResourcePolicy.d.ts +2 -2
  10. package/cloudwatch/logResourcePolicy.js +2 -2
  11. package/controltower/getControls.d.ts +2 -2
  12. package/controltower/getControls.js +2 -2
  13. package/directoryservice/logService.d.ts +1 -1
  14. package/directoryservice/logService.js +1 -1
  15. package/directoryservice/serviceRegion.d.ts +1 -1
  16. package/directoryservice/serviceRegion.js +1 -1
  17. package/ec2/getInternetGateway.d.ts +2 -2
  18. package/ec2/getInternetGateway.js +2 -2
  19. package/ec2/getLaunchTemplate.d.ts +2 -2
  20. package/ec2/getLaunchTemplate.js +2 -2
  21. package/ec2/getNatGateway.d.ts +4 -4
  22. package/ec2/getNatGateway.js +4 -4
  23. package/ec2/getRoute.d.ts +2 -2
  24. package/ec2/getRoute.js +2 -2
  25. package/ec2/getSpotDatafeedSubscription.d.ts +2 -2
  26. package/ec2/getSpotDatafeedSubscription.js +2 -2
  27. package/ec2/instance.d.ts +2 -2
  28. package/ec2/instance.js +2 -2
  29. package/ec2/securityGroup.d.ts +1 -1
  30. package/ec2/securityGroup.js +1 -1
  31. package/ecs/getCluster.d.ts +2 -2
  32. package/ecs/getCluster.js +2 -2
  33. package/ecs/getContainerDefinition.d.ts +2 -2
  34. package/ecs/getContainerDefinition.js +2 -2
  35. package/eks/getAddonVersion.d.ts +2 -2
  36. package/eks/getAddonVersion.js +2 -2
  37. package/fms/policy.d.ts +9 -9
  38. package/glue/resourcePolicy.d.ts +1 -1
  39. package/glue/resourcePolicy.js +1 -1
  40. package/iam/getServerCertificate.d.ts +2 -2
  41. package/iam/getServerCertificate.js +2 -2
  42. package/kinesis/firehoseDeliveryStream.d.ts +1 -1
  43. package/kinesis/firehoseDeliveryStream.js +1 -1
  44. package/lightsail/containerService.d.ts +1 -1
  45. package/lightsail/containerService.js +1 -1
  46. package/package.json +2 -2
  47. package/rds/cluster.d.ts +24 -0
  48. package/rds/cluster.js +4 -0
  49. package/rds/cluster.js.map +1 -1
  50. package/rds/getCluster.d.ts +2 -0
  51. package/rds/getCluster.js.map +1 -1
  52. package/rds/instance.d.ts +3 -3
  53. package/rds/instance.js +3 -3
  54. package/route53/queryLog.d.ts +1 -1
  55. package/route53/queryLog.js +1 -1
  56. package/route53/record.d.ts +23 -0
  57. package/route53/record.js +23 -0
  58. package/route53/record.js.map +1 -1
  59. package/s3/bucketLifecycleConfigurationV2.d.ts +7 -4
  60. package/s3/bucketLifecycleConfigurationV2.js +3 -4
  61. package/s3/bucketLifecycleConfigurationV2.js.map +1 -1
  62. package/secretsmanager/getSecret.d.ts +4 -4
  63. package/secretsmanager/getSecret.js +4 -4
  64. package/secretsmanager/getSecretVersion.d.ts +4 -4
  65. package/secretsmanager/getSecretVersion.js +4 -4
  66. package/sesv2/configurationSetEventDestination.d.ts +1 -1
  67. package/sesv2/configurationSetEventDestination.js +1 -1
  68. package/sns/topicSubscription.d.ts +2 -2
  69. package/sns/topicSubscription.js +2 -2
  70. package/sqs/queue.d.ts +50 -46
  71. package/sqs/queue.js +4 -0
  72. package/sqs/queue.js.map +1 -1
  73. package/sqs/queuePolicy.d.ts +40 -14
  74. package/sqs/queuePolicy.js +37 -2
  75. package/sqs/queuePolicy.js.map +1 -1
  76. package/types/input.d.ts +148 -10
  77. package/types/input.js.map +1 -1
  78. package/types/output.d.ts +157 -19
  79. package/types/output.js.map +1 -1
  80. package/wafv2/webAcl.d.ts +3 -3
@@ -34,7 +34,7 @@ import { RestApi } from "./index";
34
34
  *
35
35
  * const config = new pulumi.Config();
36
36
  * const cognitoUserPoolName = config.requireObject("cognitoUserPoolName");
37
- * const this = aws.cognito.getUserPools({
37
+ * const _this = aws.cognito.getUserPools({
38
38
  * name: cognitoUserPoolName,
39
39
  * });
40
40
  * const thisRestApi = new aws.apigateway.RestApi("this", {name: "with-authorizer"});
@@ -39,7 +39,7 @@ const utilities = require("../utilities");
39
39
  *
40
40
  * const config = new pulumi.Config();
41
41
  * const cognitoUserPoolName = config.requireObject("cognitoUserPoolName");
42
- * const this = aws.cognito.getUserPools({
42
+ * const _this = aws.cognito.getUserPools({
43
43
  * name: cognitoUserPoolName,
44
44
  * });
45
45
  * const thisRestApi = new aws.apigateway.RestApi("this", {name: "with-authorizer"});
@@ -10,7 +10,7 @@ import * as outputs from "../types/output";
10
10
  * import * as pulumi from "@pulumi/pulumi";
11
11
  * import * as aws from "@pulumi/aws";
12
12
  *
13
- * const batch-mongo = aws.batch.getComputeEnvironment({
13
+ * const batch_mongo = aws.batch.getComputeEnvironment({
14
14
  * computeEnvironmentName: "batch-mongo-production",
15
15
  * });
16
16
  * ```
@@ -89,7 +89,7 @@ export interface GetComputeEnvironmentResult {
89
89
  * import * as pulumi from "@pulumi/pulumi";
90
90
  * import * as aws from "@pulumi/aws";
91
91
  *
92
- * const batch-mongo = aws.batch.getComputeEnvironment({
92
+ * const batch_mongo = aws.batch.getComputeEnvironment({
93
93
  * computeEnvironmentName: "batch-mongo-production",
94
94
  * });
95
95
  * ```
@@ -15,7 +15,7 @@ const utilities = require("../utilities");
15
15
  * import * as pulumi from "@pulumi/pulumi";
16
16
  * import * as aws from "@pulumi/aws";
17
17
  *
18
- * const batch-mongo = aws.batch.getComputeEnvironment({
18
+ * const batch_mongo = aws.batch.getComputeEnvironment({
19
19
  * computeEnvironmentName: "batch-mongo-production",
20
20
  * });
21
21
  * ```
@@ -38,7 +38,7 @@ exports.getComputeEnvironment = getComputeEnvironment;
38
38
  * import * as pulumi from "@pulumi/pulumi";
39
39
  * import * as aws from "@pulumi/aws";
40
40
  *
41
- * const batch-mongo = aws.batch.getComputeEnvironment({
41
+ * const batch_mongo = aws.batch.getComputeEnvironment({
42
42
  * computeEnvironmentName: "batch-mongo-production",
43
43
  * });
44
44
  * ```
@@ -10,7 +10,7 @@ import * as outputs from "../types/output";
10
10
  * import * as pulumi from "@pulumi/pulumi";
11
11
  * import * as aws from "@pulumi/aws";
12
12
  *
13
- * const test-queue = aws.batch.getJobQueue({
13
+ * const test_queue = aws.batch.getJobQueue({
14
14
  * name: "tf-test-batch-job-queue",
15
15
  * });
16
16
  * ```
@@ -98,7 +98,7 @@ export interface GetJobQueueResult {
98
98
  * import * as pulumi from "@pulumi/pulumi";
99
99
  * import * as aws from "@pulumi/aws";
100
100
  *
101
- * const test-queue = aws.batch.getJobQueue({
101
+ * const test_queue = aws.batch.getJobQueue({
102
102
  * name: "tf-test-batch-job-queue",
103
103
  * });
104
104
  * ```
@@ -15,7 +15,7 @@ const utilities = require("../utilities");
15
15
  * import * as pulumi from "@pulumi/pulumi";
16
16
  * import * as aws from "@pulumi/aws";
17
17
  *
18
- * const test-queue = aws.batch.getJobQueue({
18
+ * const test_queue = aws.batch.getJobQueue({
19
19
  * name: "tf-test-batch-job-queue",
20
20
  * });
21
21
  * ```
@@ -38,7 +38,7 @@ exports.getJobQueue = getJobQueue;
38
38
  * import * as pulumi from "@pulumi/pulumi";
39
39
  * import * as aws from "@pulumi/aws";
40
40
  *
41
- * const test-queue = aws.batch.getJobQueue({
41
+ * const test_queue = aws.batch.getJobQueue({
42
42
  * name: "tf-test-batch-job-queue",
43
43
  * });
44
44
  * ```
@@ -126,7 +126,7 @@ import * as outputs from "../types/output";
126
126
  * import * as pulumi from "@pulumi/pulumi";
127
127
  * import * as aws from "@pulumi/aws";
128
128
  *
129
- * const important-bucket = aws.s3.getBucket({
129
+ * const important_bucket = aws.s3.getBucket({
130
130
  * bucket: "important-bucket",
131
131
  * });
132
132
  * const example = new aws.cloudtrail.Trail("example", {eventSelectors: [{
@@ -145,10 +145,10 @@ import * as outputs from "../types/output";
145
145
  * import * as pulumi from "@pulumi/pulumi";
146
146
  * import * as aws from "@pulumi/aws";
147
147
  *
148
- * const not-important-bucket-1 = aws.s3.getBucket({
148
+ * const not_important_bucket_1 = aws.s3.getBucket({
149
149
  * bucket: "not-important-bucket-1",
150
150
  * });
151
- * const not-important-bucket-2 = aws.s3.getBucket({
151
+ * const not_important_bucket_2 = aws.s3.getBucket({
152
152
  * bucket: "not-important-bucket-2",
153
153
  * });
154
154
  * const example = new aws.cloudtrail.Trail("example", {advancedEventSelectors: [
@@ -188,13 +188,13 @@ import * as outputs from "../types/output";
188
188
  * import * as pulumi from "@pulumi/pulumi";
189
189
  * import * as aws from "@pulumi/aws";
190
190
  *
191
- * const important-bucket-1 = aws.s3.getBucket({
191
+ * const important_bucket_1 = aws.s3.getBucket({
192
192
  * bucket: "important-bucket-1",
193
193
  * });
194
- * const important-bucket-2 = aws.s3.getBucket({
194
+ * const important_bucket_2 = aws.s3.getBucket({
195
195
  * bucket: "important-bucket-2",
196
196
  * });
197
- * const important-bucket-3 = aws.s3.getBucket({
197
+ * const important_bucket_3 = aws.s3.getBucket({
198
198
  * bucket: "important-bucket-3",
199
199
  * });
200
200
  * const example = new aws.cloudtrail.Trail("example", {advancedEventSelectors: [
@@ -362,7 +362,7 @@ export declare class Trail extends pulumi.CustomResource {
362
362
  */
363
363
  readonly snsTopicArn: pulumi.Output<string>;
364
364
  /**
365
- * Name of the Amazon SNS topic defined for notification of log file delivery.
365
+ * Name of the Amazon SNS topic defined for notification of log file delivery. Specify the SNS topic ARN if it resides in another region.
366
366
  */
367
367
  readonly snsTopicName: pulumi.Output<string | undefined>;
368
368
  /**
@@ -463,7 +463,7 @@ export interface TrailState {
463
463
  */
464
464
  snsTopicArn?: pulumi.Input<string>;
465
465
  /**
466
- * Name of the Amazon SNS topic defined for notification of log file delivery.
466
+ * Name of the Amazon SNS topic defined for notification of log file delivery. Specify the SNS topic ARN if it resides in another region.
467
467
  */
468
468
  snsTopicName?: pulumi.Input<string>;
469
469
  /**
@@ -544,7 +544,7 @@ export interface TrailArgs {
544
544
  */
545
545
  s3KeyPrefix?: pulumi.Input<string>;
546
546
  /**
547
- * Name of the Amazon SNS topic defined for notification of log file delivery.
547
+ * Name of the Amazon SNS topic defined for notification of log file delivery. Specify the SNS topic ARN if it resides in another region.
548
548
  */
549
549
  snsTopicName?: pulumi.Input<string>;
550
550
  /**
@@ -130,7 +130,7 @@ const utilities = require("../utilities");
130
130
  * import * as pulumi from "@pulumi/pulumi";
131
131
  * import * as aws from "@pulumi/aws";
132
132
  *
133
- * const important-bucket = aws.s3.getBucket({
133
+ * const important_bucket = aws.s3.getBucket({
134
134
  * bucket: "important-bucket",
135
135
  * });
136
136
  * const example = new aws.cloudtrail.Trail("example", {eventSelectors: [{
@@ -149,10 +149,10 @@ const utilities = require("../utilities");
149
149
  * import * as pulumi from "@pulumi/pulumi";
150
150
  * import * as aws from "@pulumi/aws";
151
151
  *
152
- * const not-important-bucket-1 = aws.s3.getBucket({
152
+ * const not_important_bucket_1 = aws.s3.getBucket({
153
153
  * bucket: "not-important-bucket-1",
154
154
  * });
155
- * const not-important-bucket-2 = aws.s3.getBucket({
155
+ * const not_important_bucket_2 = aws.s3.getBucket({
156
156
  * bucket: "not-important-bucket-2",
157
157
  * });
158
158
  * const example = new aws.cloudtrail.Trail("example", {advancedEventSelectors: [
@@ -192,13 +192,13 @@ const utilities = require("../utilities");
192
192
  * import * as pulumi from "@pulumi/pulumi";
193
193
  * import * as aws from "@pulumi/aws";
194
194
  *
195
- * const important-bucket-1 = aws.s3.getBucket({
195
+ * const important_bucket_1 = aws.s3.getBucket({
196
196
  * bucket: "important-bucket-1",
197
197
  * });
198
- * const important-bucket-2 = aws.s3.getBucket({
198
+ * const important_bucket_2 = aws.s3.getBucket({
199
199
  * bucket: "important-bucket-2",
200
200
  * });
201
- * const important-bucket-3 = aws.s3.getBucket({
201
+ * const important_bucket_3 = aws.s3.getBucket({
202
202
  * bucket: "important-bucket-3",
203
203
  * });
204
204
  * const example = new aws.cloudtrail.Trail("example", {advancedEventSelectors: [
@@ -11,7 +11,7 @@ import { PolicyDocument } from "../iam";
11
11
  * import * as pulumi from "@pulumi/pulumi";
12
12
  * import * as aws from "@pulumi/aws";
13
13
  *
14
- * const elasticsearch-log-publishing-policy = aws.iam.getPolicyDocument({
14
+ * const elasticsearch_log_publishing_policy = aws.iam.getPolicyDocument({
15
15
  * statements: [{
16
16
  * actions: [
17
17
  * "logs:CreateLogStream",
@@ -37,7 +37,7 @@ import { PolicyDocument } from "../iam";
37
37
  * import * as pulumi from "@pulumi/pulumi";
38
38
  * import * as aws from "@pulumi/aws";
39
39
  *
40
- * const route53-query-logging-policy = aws.iam.getPolicyDocument({
40
+ * const route53_query_logging_policy = aws.iam.getPolicyDocument({
41
41
  * statements: [{
42
42
  * actions: [
43
43
  * "logs:CreateLogStream",
@@ -16,7 +16,7 @@ const utilities = require("../utilities");
16
16
  * import * as pulumi from "@pulumi/pulumi";
17
17
  * import * as aws from "@pulumi/aws";
18
18
  *
19
- * const elasticsearch-log-publishing-policy = aws.iam.getPolicyDocument({
19
+ * const elasticsearch_log_publishing_policy = aws.iam.getPolicyDocument({
20
20
  * statements: [{
21
21
  * actions: [
22
22
  * "logs:CreateLogStream",
@@ -42,7 +42,7 @@ const utilities = require("../utilities");
42
42
  * import * as pulumi from "@pulumi/pulumi";
43
43
  * import * as aws from "@pulumi/aws";
44
44
  *
45
- * const route53-query-logging-policy = aws.iam.getPolicyDocument({
45
+ * const route53_query_logging_policy = aws.iam.getPolicyDocument({
46
46
  * statements: [{
47
47
  * actions: [
48
48
  * "logs:CreateLogStream",
@@ -8,7 +8,7 @@ import * as pulumi from "@pulumi/pulumi";
8
8
  * import * as pulumi from "@pulumi/pulumi";
9
9
  * import * as aws from "@pulumi/aws";
10
10
  *
11
- * const this = aws.organizations.getOrganization({});
11
+ * const _this = aws.organizations.getOrganization({});
12
12
  * const thisGetOrganizationalUnits = _this.then(_this => aws.organizations.getOrganizationalUnits({
13
13
  * parentId: _this.roots?.[0]?.id,
14
14
  * }));
@@ -50,7 +50,7 @@ export interface GetControlsResult {
50
50
  * import * as pulumi from "@pulumi/pulumi";
51
51
  * import * as aws from "@pulumi/aws";
52
52
  *
53
- * const this = aws.organizations.getOrganization({});
53
+ * const _this = aws.organizations.getOrganization({});
54
54
  * const thisGetOrganizationalUnits = _this.then(_this => aws.organizations.getOrganizationalUnits({
55
55
  * parentId: _this.roots?.[0]?.id,
56
56
  * }));
@@ -14,7 +14,7 @@ const utilities = require("../utilities");
14
14
  * import * as pulumi from "@pulumi/pulumi";
15
15
  * import * as aws from "@pulumi/aws";
16
16
  *
17
- * const this = aws.organizations.getOrganization({});
17
+ * const _this = aws.organizations.getOrganization({});
18
18
  * const thisGetOrganizationalUnits = _this.then(_this => aws.organizations.getOrganizationalUnits({
19
19
  * parentId: _this.roots?.[0]?.id,
20
20
  * }));
@@ -39,7 +39,7 @@ exports.getControls = getControls;
39
39
  * import * as pulumi from "@pulumi/pulumi";
40
40
  * import * as aws from "@pulumi/aws";
41
41
  *
42
- * const this = aws.organizations.getOrganization({});
42
+ * const _this = aws.organizations.getOrganization({});
43
43
  * const thisGetOrganizationalUnits = _this.then(_this => aws.organizations.getOrganizationalUnits({
44
44
  * parentId: _this.roots?.[0]?.id,
45
45
  * }));
@@ -12,7 +12,7 @@ import * as pulumi from "@pulumi/pulumi";
12
12
  * name: `/aws/directoryservice/${exampleAwsDirectoryServiceDirectory.id}`,
13
13
  * retentionInDays: 14,
14
14
  * });
15
- * const ad-log-policy = aws.iam.getPolicyDocumentOutput({
15
+ * const ad_log_policy = aws.iam.getPolicyDocumentOutput({
16
16
  * statements: [{
17
17
  * actions: [
18
18
  * "logs:CreateLogStream",
@@ -18,7 +18,7 @@ const utilities = require("../utilities");
18
18
  * name: `/aws/directoryservice/${exampleAwsDirectoryServiceDirectory.id}`,
19
19
  * retentionInDays: 14,
20
20
  * });
21
- * const ad-log-policy = aws.iam.getPolicyDocumentOutput({
21
+ * const ad_log_policy = aws.iam.getPolicyDocumentOutput({
22
22
  * statements: [{
23
23
  * actions: [
24
24
  * "logs:CreateLogStream",
@@ -50,7 +50,7 @@ import * as outputs from "../types/output";
50
50
  * subnetIds: exampleSubnet.map(__item => __item.id),
51
51
  * },
52
52
  * });
53
- * const available-secondary = aws.getAvailabilityZones({
53
+ * const available_secondary = aws.getAvailabilityZones({
54
54
  * state: "available",
55
55
  * filters: [{
56
56
  * name: "opt-in-status",
@@ -54,7 +54,7 @@ const utilities = require("../utilities");
54
54
  * subnetIds: exampleSubnet.map(__item => __item.id),
55
55
  * },
56
56
  * });
57
- * const available-secondary = aws.getAvailabilityZones({
57
+ * const available_secondary = aws.getAvailabilityZones({
58
58
  * state: "available",
59
59
  * filters: [{
60
60
  * name: "opt-in-status",
@@ -12,7 +12,7 @@ import * as outputs from "../types/output";
12
12
  *
13
13
  * const config = new pulumi.Config();
14
14
  * const vpcId = config.requireObject("vpcId");
15
- * const default = aws.ec2.getInternetGateway({
15
+ * const _default = aws.ec2.getInternetGateway({
16
16
  * filters: [{
17
17
  * name: "attachment.vpc-id",
18
18
  * values: [vpcId],
@@ -78,7 +78,7 @@ export interface GetInternetGatewayResult {
78
78
  *
79
79
  * const config = new pulumi.Config();
80
80
  * const vpcId = config.requireObject("vpcId");
81
- * const default = aws.ec2.getInternetGateway({
81
+ * const _default = aws.ec2.getInternetGateway({
82
82
  * filters: [{
83
83
  * name: "attachment.vpc-id",
84
84
  * values: [vpcId],
@@ -16,7 +16,7 @@ const utilities = require("../utilities");
16
16
  *
17
17
  * const config = new pulumi.Config();
18
18
  * const vpcId = config.requireObject("vpcId");
19
- * const default = aws.ec2.getInternetGateway({
19
+ * const _default = aws.ec2.getInternetGateway({
20
20
  * filters: [{
21
21
  * name: "attachment.vpc-id",
22
22
  * values: [vpcId],
@@ -45,7 +45,7 @@ exports.getInternetGateway = getInternetGateway;
45
45
  *
46
46
  * const config = new pulumi.Config();
47
47
  * const vpcId = config.requireObject("vpcId");
48
- * const default = aws.ec2.getInternetGateway({
48
+ * const _default = aws.ec2.getInternetGateway({
49
49
  * filters: [{
50
50
  * name: "attachment.vpc-id",
51
51
  * values: [vpcId],
@@ -10,7 +10,7 @@ import * as outputs from "../types/output";
10
10
  * import * as pulumi from "@pulumi/pulumi";
11
11
  * import * as aws from "@pulumi/aws";
12
12
  *
13
- * const default = aws.ec2.getLaunchTemplate({
13
+ * const _default = aws.ec2.getLaunchTemplate({
14
14
  * name: "my-launch-template",
15
15
  * });
16
16
  * ```
@@ -111,7 +111,7 @@ export interface GetLaunchTemplateResult {
111
111
  * import * as pulumi from "@pulumi/pulumi";
112
112
  * import * as aws from "@pulumi/aws";
113
113
  *
114
- * const default = aws.ec2.getLaunchTemplate({
114
+ * const _default = aws.ec2.getLaunchTemplate({
115
115
  * name: "my-launch-template",
116
116
  * });
117
117
  * ```
@@ -14,7 +14,7 @@ const utilities = require("../utilities");
14
14
  * import * as pulumi from "@pulumi/pulumi";
15
15
  * import * as aws from "@pulumi/aws";
16
16
  *
17
- * const default = aws.ec2.getLaunchTemplate({
17
+ * const _default = aws.ec2.getLaunchTemplate({
18
18
  * name: "my-launch-template",
19
19
  * });
20
20
  * ```
@@ -53,7 +53,7 @@ exports.getLaunchTemplate = getLaunchTemplate;
53
53
  * import * as pulumi from "@pulumi/pulumi";
54
54
  * import * as aws from "@pulumi/aws";
55
55
  *
56
- * const default = aws.ec2.getLaunchTemplate({
56
+ * const _default = aws.ec2.getLaunchTemplate({
57
57
  * name: "my-launch-template",
58
58
  * });
59
59
  * ```
@@ -10,7 +10,7 @@ import * as outputs from "../types/output";
10
10
  * import * as pulumi from "@pulumi/pulumi";
11
11
  * import * as aws from "@pulumi/aws";
12
12
  *
13
- * const default = aws.ec2.getNatGateway({
13
+ * const _default = aws.ec2.getNatGateway({
14
14
  * subnetId: _public.id,
15
15
  * });
16
16
  * ```
@@ -21,7 +21,7 @@ import * as outputs from "../types/output";
21
21
  * import * as pulumi from "@pulumi/pulumi";
22
22
  * import * as aws from "@pulumi/aws";
23
23
  *
24
- * const default = aws.ec2.getNatGateway({
24
+ * const _default = aws.ec2.getNatGateway({
25
25
  * subnetId: _public.id,
26
26
  * tags: {
27
27
  * Name: "gw NAT",
@@ -123,7 +123,7 @@ export interface GetNatGatewayResult {
123
123
  * import * as pulumi from "@pulumi/pulumi";
124
124
  * import * as aws from "@pulumi/aws";
125
125
  *
126
- * const default = aws.ec2.getNatGateway({
126
+ * const _default = aws.ec2.getNatGateway({
127
127
  * subnetId: _public.id,
128
128
  * });
129
129
  * ```
@@ -134,7 +134,7 @@ export interface GetNatGatewayResult {
134
134
  * import * as pulumi from "@pulumi/pulumi";
135
135
  * import * as aws from "@pulumi/aws";
136
136
  *
137
- * const default = aws.ec2.getNatGateway({
137
+ * const _default = aws.ec2.getNatGateway({
138
138
  * subnetId: _public.id,
139
139
  * tags: {
140
140
  * Name: "gw NAT",
@@ -14,7 +14,7 @@ const utilities = require("../utilities");
14
14
  * import * as pulumi from "@pulumi/pulumi";
15
15
  * import * as aws from "@pulumi/aws";
16
16
  *
17
- * const default = aws.ec2.getNatGateway({
17
+ * const _default = aws.ec2.getNatGateway({
18
18
  * subnetId: _public.id,
19
19
  * });
20
20
  * ```
@@ -25,7 +25,7 @@ const utilities = require("../utilities");
25
25
  * import * as pulumi from "@pulumi/pulumi";
26
26
  * import * as aws from "@pulumi/aws";
27
27
  *
28
- * const default = aws.ec2.getNatGateway({
28
+ * const _default = aws.ec2.getNatGateway({
29
29
  * subnetId: _public.id,
30
30
  * tags: {
31
31
  * Name: "gw NAT",
@@ -55,7 +55,7 @@ exports.getNatGateway = getNatGateway;
55
55
  * import * as pulumi from "@pulumi/pulumi";
56
56
  * import * as aws from "@pulumi/aws";
57
57
  *
58
- * const default = aws.ec2.getNatGateway({
58
+ * const _default = aws.ec2.getNatGateway({
59
59
  * subnetId: _public.id,
60
60
  * });
61
61
  * ```
@@ -66,7 +66,7 @@ exports.getNatGateway = getNatGateway;
66
66
  * import * as pulumi from "@pulumi/pulumi";
67
67
  * import * as aws from "@pulumi/aws";
68
68
  *
69
- * const default = aws.ec2.getNatGateway({
69
+ * const _default = aws.ec2.getNatGateway({
70
70
  * subnetId: _public.id,
71
71
  * tags: {
72
72
  * Name: "gw NAT",
package/ec2/getRoute.d.ts CHANGED
@@ -21,7 +21,7 @@ import * as pulumi from "@pulumi/pulumi";
21
21
  * routeTableId: selectedAwsRouteTable.id,
22
22
  * destinationCidrBlock: "10.0.1.0/24",
23
23
  * });
24
- * const interface = route.then(route => aws.ec2.getNetworkInterface({
24
+ * const _interface = route.then(route => aws.ec2.getNetworkInterface({
25
25
  * id: route.networkInterfaceId,
26
26
  * }));
27
27
  * ```
@@ -135,7 +135,7 @@ export interface GetRouteResult {
135
135
  * routeTableId: selectedAwsRouteTable.id,
136
136
  * destinationCidrBlock: "10.0.1.0/24",
137
137
  * });
138
- * const interface = route.then(route => aws.ec2.getNetworkInterface({
138
+ * const _interface = route.then(route => aws.ec2.getNetworkInterface({
139
139
  * id: route.networkInterfaceId,
140
140
  * }));
141
141
  * ```
package/ec2/getRoute.js CHANGED
@@ -27,7 +27,7 @@ const utilities = require("../utilities");
27
27
  * routeTableId: selectedAwsRouteTable.id,
28
28
  * destinationCidrBlock: "10.0.1.0/24",
29
29
  * });
30
- * const interface = route.then(route => aws.ec2.getNetworkInterface({
30
+ * const _interface = route.then(route => aws.ec2.getNetworkInterface({
31
31
  * id: route.networkInterfaceId,
32
32
  * }));
33
33
  * ```
@@ -74,7 +74,7 @@ exports.getRoute = getRoute;
74
74
  * routeTableId: selectedAwsRouteTable.id,
75
75
  * destinationCidrBlock: "10.0.1.0/24",
76
76
  * });
77
- * const interface = route.then(route => aws.ec2.getNetworkInterface({
77
+ * const _interface = route.then(route => aws.ec2.getNetworkInterface({
78
78
  * id: route.networkInterfaceId,
79
79
  * }));
80
80
  * ```
@@ -10,7 +10,7 @@ import * as pulumi from "@pulumi/pulumi";
10
10
  * import * as pulumi from "@pulumi/pulumi";
11
11
  * import * as aws from "@pulumi/aws";
12
12
  *
13
- * const default = aws.ec2.getSpotDatafeedSubscription({});
13
+ * const _default = aws.ec2.getSpotDatafeedSubscription({});
14
14
  * ```
15
15
  */
16
16
  export declare function getSpotDatafeedSubscription(opts?: pulumi.InvokeOptions): Promise<GetSpotDatafeedSubscriptionResult>;
@@ -42,7 +42,7 @@ export interface GetSpotDatafeedSubscriptionResult {
42
42
  * import * as pulumi from "@pulumi/pulumi";
43
43
  * import * as aws from "@pulumi/aws";
44
44
  *
45
- * const default = aws.ec2.getSpotDatafeedSubscription({});
45
+ * const _default = aws.ec2.getSpotDatafeedSubscription({});
46
46
  * ```
47
47
  */
48
48
  export declare function getSpotDatafeedSubscriptionOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSpotDatafeedSubscriptionResult>;
@@ -16,7 +16,7 @@ const utilities = require("../utilities");
16
16
  * import * as pulumi from "@pulumi/pulumi";
17
17
  * import * as aws from "@pulumi/aws";
18
18
  *
19
- * const default = aws.ec2.getSpotDatafeedSubscription({});
19
+ * const _default = aws.ec2.getSpotDatafeedSubscription({});
20
20
  * ```
21
21
  */
22
22
  function getSpotDatafeedSubscription(opts) {
@@ -35,7 +35,7 @@ exports.getSpotDatafeedSubscription = getSpotDatafeedSubscription;
35
35
  * import * as pulumi from "@pulumi/pulumi";
36
36
  * import * as aws from "@pulumi/aws";
37
37
  *
38
- * const default = aws.ec2.getSpotDatafeedSubscription({});
38
+ * const _default = aws.ec2.getSpotDatafeedSubscription({});
39
39
  * ```
40
40
  */
41
41
  function getSpotDatafeedSubscriptionOutput(opts) {
package/ec2/instance.d.ts CHANGED
@@ -43,7 +43,7 @@ import { InstanceProfile } from "../iam";
43
43
  * import * as pulumi from "@pulumi/pulumi";
44
44
  * import * as aws from "@pulumi/aws";
45
45
  *
46
- * const this = aws.ec2.getAmi({
46
+ * const _this = aws.ec2.getAmi({
47
47
  * mostRecent: true,
48
48
  * owners: ["amazon"],
49
49
  * filters: [
@@ -132,7 +132,7 @@ import { InstanceProfile } from "../iam";
132
132
  * Name: "tf-example",
133
133
  * },
134
134
  * });
135
- * const amzn-linux-2023-ami = aws.ec2.getAmi({
135
+ * const amzn_linux_2023_ami = aws.ec2.getAmi({
136
136
  * mostRecent: true,
137
137
  * owners: ["amazon"],
138
138
  * filters: [{
package/ec2/instance.js CHANGED
@@ -45,7 +45,7 @@ const utilities = require("../utilities");
45
45
  * import * as pulumi from "@pulumi/pulumi";
46
46
  * import * as aws from "@pulumi/aws";
47
47
  *
48
- * const this = aws.ec2.getAmi({
48
+ * const _this = aws.ec2.getAmi({
49
49
  * mostRecent: true,
50
50
  * owners: ["amazon"],
51
51
  * filters: [
@@ -134,7 +134,7 @@ const utilities = require("../utilities");
134
134
  * Name: "tf-example",
135
135
  * },
136
136
  * });
137
- * const amzn-linux-2023-ami = aws.ec2.getAmi({
137
+ * const amzn_linux_2023_ami = aws.ec2.getAmi({
138
138
  * mostRecent: true,
139
139
  * owners: ["amazon"],
140
140
  * filters: [{
@@ -147,7 +147,7 @@ import * as outputs from "../types/output";
147
147
  * import * as command from "@pulumi/command";
148
148
  * import * as std from "@pulumi/std";
149
149
  *
150
- * const default = aws.ec2.getSecurityGroup({
150
+ * const _default = aws.ec2.getSecurityGroup({
151
151
  * name: "default",
152
152
  * });
153
153
  * const example = new aws.ec2.SecurityGroup("example", {
@@ -151,7 +151,7 @@ const utilities = require("../utilities");
151
151
  * import * as command from "@pulumi/command";
152
152
  * import * as std from "@pulumi/std";
153
153
  *
154
- * const default = aws.ec2.getSecurityGroup({
154
+ * const _default = aws.ec2.getSecurityGroup({
155
155
  * name: "default",
156
156
  * });
157
157
  * const example = new aws.ec2.SecurityGroup("example", {
@@ -10,7 +10,7 @@ import * as outputs from "../types/output";
10
10
  * import * as pulumi from "@pulumi/pulumi";
11
11
  * import * as aws from "@pulumi/aws";
12
12
  *
13
- * const ecs-mongo = aws.ecs.getCluster({
13
+ * const ecs_mongo = aws.ecs.getCluster({
14
14
  * clusterName: "ecs-mongo-production",
15
15
  * });
16
16
  * ```
@@ -85,7 +85,7 @@ export interface GetClusterResult {
85
85
  * import * as pulumi from "@pulumi/pulumi";
86
86
  * import * as aws from "@pulumi/aws";
87
87
  *
88
- * const ecs-mongo = aws.ecs.getCluster({
88
+ * const ecs_mongo = aws.ecs.getCluster({
89
89
  * clusterName: "ecs-mongo-production",
90
90
  * });
91
91
  * ```
package/ecs/getCluster.js CHANGED
@@ -15,7 +15,7 @@ const utilities = require("../utilities");
15
15
  * import * as pulumi from "@pulumi/pulumi";
16
16
  * import * as aws from "@pulumi/aws";
17
17
  *
18
- * const ecs-mongo = aws.ecs.getCluster({
18
+ * const ecs_mongo = aws.ecs.getCluster({
19
19
  * clusterName: "ecs-mongo-production",
20
20
  * });
21
21
  * ```
@@ -38,7 +38,7 @@ exports.getCluster = getCluster;
38
38
  * import * as pulumi from "@pulumi/pulumi";
39
39
  * import * as aws from "@pulumi/aws";
40
40
  *
41
- * const ecs-mongo = aws.ecs.getCluster({
41
+ * const ecs_mongo = aws.ecs.getCluster({
42
42
  * clusterName: "ecs-mongo-production",
43
43
  * });
44
44
  * ```
@@ -9,7 +9,7 @@ import * as pulumi from "@pulumi/pulumi";
9
9
  * import * as pulumi from "@pulumi/pulumi";
10
10
  * import * as aws from "@pulumi/aws";
11
11
  *
12
- * const ecs-mongo = aws.ecs.getContainerDefinition({
12
+ * const ecs_mongo = aws.ecs.getContainerDefinition({
13
13
  * taskDefinition: mongo.id,
14
14
  * containerName: "mongodb",
15
15
  * });
@@ -86,7 +86,7 @@ export interface GetContainerDefinitionResult {
86
86
  * import * as pulumi from "@pulumi/pulumi";
87
87
  * import * as aws from "@pulumi/aws";
88
88
  *
89
- * const ecs-mongo = aws.ecs.getContainerDefinition({
89
+ * const ecs_mongo = aws.ecs.getContainerDefinition({
90
90
  * taskDefinition: mongo.id,
91
91
  * containerName: "mongodb",
92
92
  * });