@pulumi/aws 6.5.0-alpha.1696862389 → 6.5.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 (38) hide show
  1. package/codecommit/repository.d.ts +3 -1
  2. package/codecommit/repository.js +3 -1
  3. package/codecommit/repository.js.map +1 -1
  4. package/guardduty/detector.d.ts +4 -4
  5. package/guardduty/detector.js +1 -1
  6. package/guardduty/detectorFeature.d.ts +108 -0
  7. package/guardduty/detectorFeature.js +83 -0
  8. package/guardduty/detectorFeature.js.map +1 -0
  9. package/guardduty/getDetector.d.ts +5 -0
  10. package/guardduty/getDetector.js.map +1 -1
  11. package/guardduty/index.d.ts +3 -0
  12. package/guardduty/index.js +6 -1
  13. package/guardduty/index.js.map +1 -1
  14. package/kinesis/firehoseDeliveryStream.d.ts +80 -29
  15. package/kinesis/firehoseDeliveryStream.js +39 -2
  16. package/kinesis/firehoseDeliveryStream.js.map +1 -1
  17. package/medialive/channel.d.ts +3 -3
  18. package/package.json +1 -1
  19. package/servicequotas/index.d.ts +3 -0
  20. package/servicequotas/index.js +6 -1
  21. package/servicequotas/index.js.map +1 -1
  22. package/servicequotas/template.d.ts +144 -0
  23. package/servicequotas/template.js +103 -0
  24. package/servicequotas/template.js.map +1 -0
  25. package/sesv2/accountVdmAttributes.d.ts +109 -0
  26. package/sesv2/accountVdmAttributes.js +85 -0
  27. package/sesv2/accountVdmAttributes.js.map +1 -0
  28. package/sesv2/index.d.ts +3 -0
  29. package/sesv2/index.js +6 -1
  30. package/sesv2/index.js.map +1 -1
  31. package/types/input.d.ts +226 -7
  32. package/types/output.d.ts +251 -8
  33. package/verifiedaccess/index.d.ts +3 -0
  34. package/verifiedaccess/index.js +6 -1
  35. package/verifiedaccess/index.js.map +1 -1
  36. package/verifiedaccess/instanceTrustProviderAttachment.d.ts +92 -0
  37. package/verifiedaccess/instanceTrustProviderAttachment.js +89 -0
  38. package/verifiedaccess/instanceTrustProviderAttachment.js.map +1 -0
@@ -311,7 +311,7 @@ const utilities = require("../utilities");
311
311
  * dependsOn: [firehose_elasticsearchRolePolicy],
312
312
  * });
313
313
  * ```
314
- * ### Opensearch Destination
314
+ * ### OpenSearch Destination
315
315
  *
316
316
  * ```typescript
317
317
  * import * as pulumi from "@pulumi/pulumi";
@@ -344,7 +344,7 @@ const utilities = require("../utilities");
344
344
  * },
345
345
  * });
346
346
  * ```
347
- * ### Opensearch Destination With VPC
347
+ * ### OpenSearch Destination With VPC
348
348
  *
349
349
  * ```typescript
350
350
  * import * as pulumi from "@pulumi/pulumi";
@@ -426,6 +426,39 @@ const utilities = require("../utilities");
426
426
  * dependsOn: [firehose_opensearch],
427
427
  * });
428
428
  * ```
429
+ * ### OpenSearch Serverless Destination
430
+ *
431
+ * ```typescript
432
+ * import * as pulumi from "@pulumi/pulumi";
433
+ * import * as aws from "@pulumi/aws";
434
+ *
435
+ * const testCollection = new aws.opensearch.ServerlessCollection("testCollection", {});
436
+ * const testStream = new aws.kinesis.FirehoseDeliveryStream("testStream", {
437
+ * destination: "opensearchserverless",
438
+ * opensearchserverlessConfiguration: {
439
+ * collectionEndpoint: testCollection.collectionEndpoint,
440
+ * roleArn: aws_iam_role.firehose_role.arn,
441
+ * indexName: "test",
442
+ * s3Configuration: {
443
+ * roleArn: aws_iam_role.firehose_role.arn,
444
+ * bucketArn: aws_s3_bucket.bucket.arn,
445
+ * bufferingSize: 10,
446
+ * bufferingInterval: 400,
447
+ * compressionFormat: "GZIP",
448
+ * },
449
+ * processingConfiguration: {
450
+ * enabled: true,
451
+ * processors: [{
452
+ * type: "Lambda",
453
+ * parameters: [{
454
+ * parameterName: "LambdaArn",
455
+ * parameterValue: `${aws_lambda_function.lambda_processor.arn}:$LATEST`,
456
+ * }],
457
+ * }],
458
+ * },
459
+ * },
460
+ * });
461
+ * ```
429
462
  * ### Splunk Destination
430
463
  *
431
464
  * ```typescript
@@ -534,8 +567,10 @@ class FirehoseDeliveryStream extends pulumi.CustomResource {
534
567
  resourceInputs["extendedS3Configuration"] = state ? state.extendedS3Configuration : undefined;
535
568
  resourceInputs["httpEndpointConfiguration"] = state ? state.httpEndpointConfiguration : undefined;
536
569
  resourceInputs["kinesisSourceConfiguration"] = state ? state.kinesisSourceConfiguration : undefined;
570
+ resourceInputs["mskSourceConfiguration"] = state ? state.mskSourceConfiguration : undefined;
537
571
  resourceInputs["name"] = state ? state.name : undefined;
538
572
  resourceInputs["opensearchConfiguration"] = state ? state.opensearchConfiguration : undefined;
573
+ resourceInputs["opensearchserverlessConfiguration"] = state ? state.opensearchserverlessConfiguration : undefined;
539
574
  resourceInputs["redshiftConfiguration"] = state ? state.redshiftConfiguration : undefined;
540
575
  resourceInputs["serverSideEncryption"] = state ? state.serverSideEncryption : undefined;
541
576
  resourceInputs["splunkConfiguration"] = state ? state.splunkConfiguration : undefined;
@@ -555,8 +590,10 @@ class FirehoseDeliveryStream extends pulumi.CustomResource {
555
590
  resourceInputs["extendedS3Configuration"] = args ? args.extendedS3Configuration : undefined;
556
591
  resourceInputs["httpEndpointConfiguration"] = args ? args.httpEndpointConfiguration : undefined;
557
592
  resourceInputs["kinesisSourceConfiguration"] = args ? args.kinesisSourceConfiguration : undefined;
593
+ resourceInputs["mskSourceConfiguration"] = args ? args.mskSourceConfiguration : undefined;
558
594
  resourceInputs["name"] = args ? args.name : undefined;
559
595
  resourceInputs["opensearchConfiguration"] = args ? args.opensearchConfiguration : undefined;
596
+ resourceInputs["opensearchserverlessConfiguration"] = args ? args.opensearchserverlessConfiguration : undefined;
560
597
  resourceInputs["redshiftConfiguration"] = args ? args.redshiftConfiguration : undefined;
561
598
  resourceInputs["serverSideEncryption"] = args ? args.serverSideEncryption : undefined;
562
599
  resourceInputs["splunkConfiguration"] = args ? args.splunkConfiguration : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"firehoseDeliveryStream.js","sourceRoot":"","sources":["../../kinesis/firehoseDeliveryStream.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"firehoseDeliveryStream.js","sourceRoot":"","sources":["../../kinesis/firehoseDeliveryStream.ts"],"names":[],"mappings":"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"}
@@ -167,7 +167,7 @@ export declare class Channel extends pulumi.CustomResource {
167
167
  [key: string]: string;
168
168
  }>;
169
169
  /**
170
- * Settings for the VPC outputs.
170
+ * Settings for the VPC outputs. See VPC for more details.
171
171
  */
172
172
  readonly vpc: pulumi.Output<outputs.medialive.ChannelVpc | undefined>;
173
173
  /**
@@ -250,7 +250,7 @@ export interface ChannelState {
250
250
  [key: string]: pulumi.Input<string>;
251
251
  }>;
252
252
  /**
253
- * Settings for the VPC outputs.
253
+ * Settings for the VPC outputs. See VPC for more details.
254
254
  */
255
255
  vpc?: pulumi.Input<inputs.medialive.ChannelVpc>;
256
256
  }
@@ -311,7 +311,7 @@ export interface ChannelArgs {
311
311
  [key: string]: pulumi.Input<string>;
312
312
  }>;
313
313
  /**
314
- * Settings for the VPC outputs.
314
+ * Settings for the VPC outputs. See VPC for more details.
315
315
  */
316
316
  vpc?: pulumi.Input<inputs.medialive.ChannelVpc>;
317
317
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/aws",
3
- "version": "v6.5.0-alpha.1696862389+d1c71728",
3
+ "version": "v6.5.0",
4
4
  "description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -7,3 +7,6 @@ export declare const getServiceQuotaOutput: typeof import("./getServiceQuota").g
7
7
  export { ServiceQuotaArgs, ServiceQuotaState } from "./serviceQuota";
8
8
  export type ServiceQuota = import("./serviceQuota").ServiceQuota;
9
9
  export declare const ServiceQuota: typeof import("./serviceQuota").ServiceQuota;
10
+ export { TemplateArgs, TemplateState } from "./template";
11
+ export type Template = import("./template").Template;
12
+ export declare const Template: typeof import("./template").Template;
@@ -2,7 +2,7 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.ServiceQuota = exports.getServiceQuotaOutput = exports.getServiceQuota = exports.getServiceOutput = exports.getService = void 0;
5
+ exports.Template = exports.ServiceQuota = exports.getServiceQuotaOutput = exports.getServiceQuota = exports.getServiceOutput = exports.getService = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.getService = null;
@@ -13,16 +13,21 @@ exports.getServiceQuotaOutput = null;
13
13
  utilities.lazyLoad(exports, ["getServiceQuota", "getServiceQuotaOutput"], () => require("./getServiceQuota"));
14
14
  exports.ServiceQuota = null;
15
15
  utilities.lazyLoad(exports, ["ServiceQuota"], () => require("./serviceQuota"));
16
+ exports.Template = null;
17
+ utilities.lazyLoad(exports, ["Template"], () => require("./template"));
16
18
  const _module = {
17
19
  version: utilities.getVersion(),
18
20
  construct: (name, type, urn) => {
19
21
  switch (type) {
20
22
  case "aws:servicequotas/serviceQuota:ServiceQuota":
21
23
  return new exports.ServiceQuota(name, undefined, { urn });
24
+ case "aws:servicequotas/template:Template":
25
+ return new exports.Template(name, undefined, { urn });
22
26
  default:
23
27
  throw new Error(`unknown resource type ${type}`);
24
28
  }
25
29
  },
26
30
  };
27
31
  pulumi.runtime.registerResourceModule("aws", "servicequotas/serviceQuota", _module);
32
+ pulumi.runtime.registerResourceModule("aws", "servicequotas/template", _module);
28
33
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../servicequotas/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI7B,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAClF,QAAA,qBAAqB,GAA6D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,EAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIhG,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAG/E,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,6CAA6C;gBAC9C,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../servicequotas/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI7B,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAClF,QAAA,qBAAqB,GAA6D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,EAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIhG,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAIlE,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAGvE,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,6CAA6C;gBAC9C,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,qCAAqC;gBACtC,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA"}
@@ -0,0 +1,144 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Resource for managing an AWS Service Quotas Template.
4
+ *
5
+ * > Only the management account of an organization can alter Service Quota templates, and this must be done from the `us-east-1` region.
6
+ *
7
+ * ## Example Usage
8
+ * ### Basic Usage
9
+ *
10
+ * ```typescript
11
+ * import * as pulumi from "@pulumi/pulumi";
12
+ * import * as aws from "@pulumi/aws";
13
+ *
14
+ * const example = new aws.servicequotas.Template("example", {
15
+ * quotaCode: "L-2ACBD22F",
16
+ * region: "us-east-1",
17
+ * serviceCode: "lambda",
18
+ * value: 80,
19
+ * });
20
+ * ```
21
+ *
22
+ * ## Import
23
+ *
24
+ * In TODO v1.5.0 and later, use an `import` block to import Service Quotas Template using the `example_id_arg`. For exampleterraform import {
25
+ *
26
+ * to = aws_servicequotas_template.example
27
+ *
28
+ * id = "us-east-1,L-2ACBD22F,lambda" } Using `TODO import`, import Service Quotas Template using the `id`. For exampleconsole % TODO import aws_servicequotas_template.example us-east-1,L-2ACBD22F,lambda
29
+ */
30
+ export declare class Template extends pulumi.CustomResource {
31
+ /**
32
+ * Get an existing Template resource's state with the given name, ID, and optional extra
33
+ * properties used to qualify the lookup.
34
+ *
35
+ * @param name The _unique_ name of the resulting resource.
36
+ * @param id The _unique_ provider ID of the resource to lookup.
37
+ * @param state Any extra arguments used during the lookup.
38
+ * @param opts Optional settings to control the behavior of the CustomResource.
39
+ */
40
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TemplateState, opts?: pulumi.CustomResourceOptions): Template;
41
+ /**
42
+ * Returns true if the given object is an instance of Template. This is designed to work even
43
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
44
+ */
45
+ static isInstance(obj: any): obj is Template;
46
+ /**
47
+ * Indicates whether the quota is global.
48
+ */
49
+ readonly globalQuota: pulumi.Output<boolean>;
50
+ /**
51
+ * Quota identifier. To find the quota code for a specific quota, use the aws.servicequotas.ServiceQuota data source.
52
+ */
53
+ readonly quotaCode: pulumi.Output<string>;
54
+ /**
55
+ * Quota name.
56
+ */
57
+ readonly quotaName: pulumi.Output<string>;
58
+ /**
59
+ * AWS Region to which the template applies.
60
+ */
61
+ readonly region: pulumi.Output<string>;
62
+ /**
63
+ * Service identifier. To find the service code value for an AWS service, use the aws.servicequotas.getService data source.
64
+ */
65
+ readonly serviceCode: pulumi.Output<string>;
66
+ /**
67
+ * Service name.
68
+ */
69
+ readonly serviceName: pulumi.Output<string>;
70
+ /**
71
+ * Unit of measurement.
72
+ */
73
+ readonly unit: pulumi.Output<string>;
74
+ /**
75
+ * The new, increased value for the quota.
76
+ */
77
+ readonly value: pulumi.Output<number>;
78
+ /**
79
+ * Create a Template resource with the given unique name, arguments, and options.
80
+ *
81
+ * @param name The _unique_ name of the resource.
82
+ * @param args The arguments to use to populate this resource's properties.
83
+ * @param opts A bag of options that control this resource's behavior.
84
+ */
85
+ constructor(name: string, args: TemplateArgs, opts?: pulumi.CustomResourceOptions);
86
+ }
87
+ /**
88
+ * Input properties used for looking up and filtering Template resources.
89
+ */
90
+ export interface TemplateState {
91
+ /**
92
+ * Indicates whether the quota is global.
93
+ */
94
+ globalQuota?: pulumi.Input<boolean>;
95
+ /**
96
+ * Quota identifier. To find the quota code for a specific quota, use the aws.servicequotas.ServiceQuota data source.
97
+ */
98
+ quotaCode?: pulumi.Input<string>;
99
+ /**
100
+ * Quota name.
101
+ */
102
+ quotaName?: pulumi.Input<string>;
103
+ /**
104
+ * AWS Region to which the template applies.
105
+ */
106
+ region?: pulumi.Input<string>;
107
+ /**
108
+ * Service identifier. To find the service code value for an AWS service, use the aws.servicequotas.getService data source.
109
+ */
110
+ serviceCode?: pulumi.Input<string>;
111
+ /**
112
+ * Service name.
113
+ */
114
+ serviceName?: pulumi.Input<string>;
115
+ /**
116
+ * Unit of measurement.
117
+ */
118
+ unit?: pulumi.Input<string>;
119
+ /**
120
+ * The new, increased value for the quota.
121
+ */
122
+ value?: pulumi.Input<number>;
123
+ }
124
+ /**
125
+ * The set of arguments for constructing a Template resource.
126
+ */
127
+ export interface TemplateArgs {
128
+ /**
129
+ * Quota identifier. To find the quota code for a specific quota, use the aws.servicequotas.ServiceQuota data source.
130
+ */
131
+ quotaCode: pulumi.Input<string>;
132
+ /**
133
+ * AWS Region to which the template applies.
134
+ */
135
+ region: pulumi.Input<string>;
136
+ /**
137
+ * Service identifier. To find the service code value for an AWS service, use the aws.servicequotas.getService data source.
138
+ */
139
+ serviceCode: pulumi.Input<string>;
140
+ /**
141
+ * The new, increased value for the quota.
142
+ */
143
+ value: pulumi.Input<number>;
144
+ }
@@ -0,0 +1,103 @@
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.Template = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Resource for managing an AWS Service Quotas Template.
10
+ *
11
+ * > Only the management account of an organization can alter Service Quota templates, and this must be done from the `us-east-1` region.
12
+ *
13
+ * ## Example Usage
14
+ * ### Basic Usage
15
+ *
16
+ * ```typescript
17
+ * import * as pulumi from "@pulumi/pulumi";
18
+ * import * as aws from "@pulumi/aws";
19
+ *
20
+ * const example = new aws.servicequotas.Template("example", {
21
+ * quotaCode: "L-2ACBD22F",
22
+ * region: "us-east-1",
23
+ * serviceCode: "lambda",
24
+ * value: 80,
25
+ * });
26
+ * ```
27
+ *
28
+ * ## Import
29
+ *
30
+ * In TODO v1.5.0 and later, use an `import` block to import Service Quotas Template using the `example_id_arg`. For exampleterraform import {
31
+ *
32
+ * to = aws_servicequotas_template.example
33
+ *
34
+ * id = "us-east-1,L-2ACBD22F,lambda" } Using `TODO import`, import Service Quotas Template using the `id`. For exampleconsole % TODO import aws_servicequotas_template.example us-east-1,L-2ACBD22F,lambda
35
+ */
36
+ class Template extends pulumi.CustomResource {
37
+ /**
38
+ * Get an existing Template resource's state with the given name, ID, and optional extra
39
+ * properties used to qualify the lookup.
40
+ *
41
+ * @param name The _unique_ name of the resulting resource.
42
+ * @param id The _unique_ provider ID of the resource to lookup.
43
+ * @param state Any extra arguments used during the lookup.
44
+ * @param opts Optional settings to control the behavior of the CustomResource.
45
+ */
46
+ static get(name, id, state, opts) {
47
+ return new Template(name, state, Object.assign(Object.assign({}, opts), { id: id }));
48
+ }
49
+ /**
50
+ * Returns true if the given object is an instance of Template. This is designed to work even
51
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
52
+ */
53
+ static isInstance(obj) {
54
+ if (obj === undefined || obj === null) {
55
+ return false;
56
+ }
57
+ return obj['__pulumiType'] === Template.__pulumiType;
58
+ }
59
+ constructor(name, argsOrState, opts) {
60
+ let resourceInputs = {};
61
+ opts = opts || {};
62
+ if (opts.id) {
63
+ const state = argsOrState;
64
+ resourceInputs["globalQuota"] = state ? state.globalQuota : undefined;
65
+ resourceInputs["quotaCode"] = state ? state.quotaCode : undefined;
66
+ resourceInputs["quotaName"] = state ? state.quotaName : undefined;
67
+ resourceInputs["region"] = state ? state.region : undefined;
68
+ resourceInputs["serviceCode"] = state ? state.serviceCode : undefined;
69
+ resourceInputs["serviceName"] = state ? state.serviceName : undefined;
70
+ resourceInputs["unit"] = state ? state.unit : undefined;
71
+ resourceInputs["value"] = state ? state.value : undefined;
72
+ }
73
+ else {
74
+ const args = argsOrState;
75
+ if ((!args || args.quotaCode === undefined) && !opts.urn) {
76
+ throw new Error("Missing required property 'quotaCode'");
77
+ }
78
+ if ((!args || args.region === undefined) && !opts.urn) {
79
+ throw new Error("Missing required property 'region'");
80
+ }
81
+ if ((!args || args.serviceCode === undefined) && !opts.urn) {
82
+ throw new Error("Missing required property 'serviceCode'");
83
+ }
84
+ if ((!args || args.value === undefined) && !opts.urn) {
85
+ throw new Error("Missing required property 'value'");
86
+ }
87
+ resourceInputs["quotaCode"] = args ? args.quotaCode : undefined;
88
+ resourceInputs["region"] = args ? args.region : undefined;
89
+ resourceInputs["serviceCode"] = args ? args.serviceCode : undefined;
90
+ resourceInputs["value"] = args ? args.value : undefined;
91
+ resourceInputs["globalQuota"] = undefined /*out*/;
92
+ resourceInputs["quotaName"] = undefined /*out*/;
93
+ resourceInputs["serviceName"] = undefined /*out*/;
94
+ resourceInputs["unit"] = undefined /*out*/;
95
+ }
96
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
97
+ super(Template.__pulumiType, name, resourceInputs, opts);
98
+ }
99
+ }
100
+ exports.Template = Template;
101
+ /** @internal */
102
+ Template.__pulumiType = 'aws:servicequotas/template:Template';
103
+ //# sourceMappingURL=template.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"template.js","sourceRoot":"","sources":["../../servicequotas/template.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,109 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * Resource for managing an AWS SESv2 (Simple Email V2) Account VDM Attributes.
6
+ *
7
+ * ## Example Usage
8
+ * ### Basic Usage
9
+ *
10
+ * ```typescript
11
+ * import * as pulumi from "@pulumi/pulumi";
12
+ * import * as aws from "@pulumi/aws";
13
+ *
14
+ * const example = new aws.sesv2.AccountVdmAttributes("example", {
15
+ * dashboardAttributes: {
16
+ * engagementMetrics: "ENABLED",
17
+ * },
18
+ * guardianAttributes: {
19
+ * optimizedSharedDelivery: "ENABLED",
20
+ * },
21
+ * vdmEnabled: "ENABLED",
22
+ * });
23
+ * ```
24
+ *
25
+ * ## Import
26
+ *
27
+ * In TODO v1.5.0 and later, use an `import` block to import SESv2 (Simple Email V2) Account VDM Attributes using the word `ses-account-vdm-attributes`. For exampleterraform import {
28
+ *
29
+ * to = aws_sesv2_account_vdm_attributes.example
30
+ *
31
+ * id = "ses-account-vdm-attributes" } Using `TODO import`, import SESv2 (Simple Email V2) Account VDM Attributes using the word `ses-account-vdm-attributes`. For exampleconsole % TODO import aws_sesv2_account_vdm_attributes.example ses-account-vdm-attributes
32
+ */
33
+ export declare class AccountVdmAttributes extends pulumi.CustomResource {
34
+ /**
35
+ * Get an existing AccountVdmAttributes resource's state with the given name, ID, and optional extra
36
+ * properties used to qualify the lookup.
37
+ *
38
+ * @param name The _unique_ name of the resulting resource.
39
+ * @param id The _unique_ provider ID of the resource to lookup.
40
+ * @param state Any extra arguments used during the lookup.
41
+ * @param opts Optional settings to control the behavior of the CustomResource.
42
+ */
43
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountVdmAttributesState, opts?: pulumi.CustomResourceOptions): AccountVdmAttributes;
44
+ /**
45
+ * Returns true if the given object is an instance of AccountVdmAttributes. This is designed to work even
46
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
47
+ */
48
+ static isInstance(obj: any): obj is AccountVdmAttributes;
49
+ /**
50
+ * Specifies additional settings for your VDM configuration as applicable to the Dashboard.
51
+ */
52
+ readonly dashboardAttributes: pulumi.Output<outputs.sesv2.AccountVdmAttributesDashboardAttributes>;
53
+ /**
54
+ * Specifies additional settings for your VDM configuration as applicable to the Guardian.
55
+ */
56
+ readonly guardianAttributes: pulumi.Output<outputs.sesv2.AccountVdmAttributesGuardianAttributes>;
57
+ /**
58
+ * Specifies the status of your VDM configuration. Valid values: `ENABLED`, `DISABLED`.
59
+ *
60
+ * The following arguments are optional:
61
+ */
62
+ readonly vdmEnabled: pulumi.Output<string>;
63
+ /**
64
+ * Create a AccountVdmAttributes resource with the given unique name, arguments, and options.
65
+ *
66
+ * @param name The _unique_ name of the resource.
67
+ * @param args The arguments to use to populate this resource's properties.
68
+ * @param opts A bag of options that control this resource's behavior.
69
+ */
70
+ constructor(name: string, args: AccountVdmAttributesArgs, opts?: pulumi.CustomResourceOptions);
71
+ }
72
+ /**
73
+ * Input properties used for looking up and filtering AccountVdmAttributes resources.
74
+ */
75
+ export interface AccountVdmAttributesState {
76
+ /**
77
+ * Specifies additional settings for your VDM configuration as applicable to the Dashboard.
78
+ */
79
+ dashboardAttributes?: pulumi.Input<inputs.sesv2.AccountVdmAttributesDashboardAttributes>;
80
+ /**
81
+ * Specifies additional settings for your VDM configuration as applicable to the Guardian.
82
+ */
83
+ guardianAttributes?: pulumi.Input<inputs.sesv2.AccountVdmAttributesGuardianAttributes>;
84
+ /**
85
+ * Specifies the status of your VDM configuration. Valid values: `ENABLED`, `DISABLED`.
86
+ *
87
+ * The following arguments are optional:
88
+ */
89
+ vdmEnabled?: pulumi.Input<string>;
90
+ }
91
+ /**
92
+ * The set of arguments for constructing a AccountVdmAttributes resource.
93
+ */
94
+ export interface AccountVdmAttributesArgs {
95
+ /**
96
+ * Specifies additional settings for your VDM configuration as applicable to the Dashboard.
97
+ */
98
+ dashboardAttributes?: pulumi.Input<inputs.sesv2.AccountVdmAttributesDashboardAttributes>;
99
+ /**
100
+ * Specifies additional settings for your VDM configuration as applicable to the Guardian.
101
+ */
102
+ guardianAttributes?: pulumi.Input<inputs.sesv2.AccountVdmAttributesGuardianAttributes>;
103
+ /**
104
+ * Specifies the status of your VDM configuration. Valid values: `ENABLED`, `DISABLED`.
105
+ *
106
+ * The following arguments are optional:
107
+ */
108
+ vdmEnabled: pulumi.Input<string>;
109
+ }
@@ -0,0 +1,85 @@
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.AccountVdmAttributes = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Resource for managing an AWS SESv2 (Simple Email V2) Account VDM Attributes.
10
+ *
11
+ * ## Example Usage
12
+ * ### Basic Usage
13
+ *
14
+ * ```typescript
15
+ * import * as pulumi from "@pulumi/pulumi";
16
+ * import * as aws from "@pulumi/aws";
17
+ *
18
+ * const example = new aws.sesv2.AccountVdmAttributes("example", {
19
+ * dashboardAttributes: {
20
+ * engagementMetrics: "ENABLED",
21
+ * },
22
+ * guardianAttributes: {
23
+ * optimizedSharedDelivery: "ENABLED",
24
+ * },
25
+ * vdmEnabled: "ENABLED",
26
+ * });
27
+ * ```
28
+ *
29
+ * ## Import
30
+ *
31
+ * In TODO v1.5.0 and later, use an `import` block to import SESv2 (Simple Email V2) Account VDM Attributes using the word `ses-account-vdm-attributes`. For exampleterraform import {
32
+ *
33
+ * to = aws_sesv2_account_vdm_attributes.example
34
+ *
35
+ * id = "ses-account-vdm-attributes" } Using `TODO import`, import SESv2 (Simple Email V2) Account VDM Attributes using the word `ses-account-vdm-attributes`. For exampleconsole % TODO import aws_sesv2_account_vdm_attributes.example ses-account-vdm-attributes
36
+ */
37
+ class AccountVdmAttributes extends pulumi.CustomResource {
38
+ /**
39
+ * Get an existing AccountVdmAttributes resource's state with the given name, ID, and optional extra
40
+ * properties used to qualify the lookup.
41
+ *
42
+ * @param name The _unique_ name of the resulting resource.
43
+ * @param id The _unique_ provider ID of the resource to lookup.
44
+ * @param state Any extra arguments used during the lookup.
45
+ * @param opts Optional settings to control the behavior of the CustomResource.
46
+ */
47
+ static get(name, id, state, opts) {
48
+ return new AccountVdmAttributes(name, state, Object.assign(Object.assign({}, opts), { id: id }));
49
+ }
50
+ /**
51
+ * Returns true if the given object is an instance of AccountVdmAttributes. This is designed to work even
52
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
53
+ */
54
+ static isInstance(obj) {
55
+ if (obj === undefined || obj === null) {
56
+ return false;
57
+ }
58
+ return obj['__pulumiType'] === AccountVdmAttributes.__pulumiType;
59
+ }
60
+ constructor(name, argsOrState, opts) {
61
+ let resourceInputs = {};
62
+ opts = opts || {};
63
+ if (opts.id) {
64
+ const state = argsOrState;
65
+ resourceInputs["dashboardAttributes"] = state ? state.dashboardAttributes : undefined;
66
+ resourceInputs["guardianAttributes"] = state ? state.guardianAttributes : undefined;
67
+ resourceInputs["vdmEnabled"] = state ? state.vdmEnabled : undefined;
68
+ }
69
+ else {
70
+ const args = argsOrState;
71
+ if ((!args || args.vdmEnabled === undefined) && !opts.urn) {
72
+ throw new Error("Missing required property 'vdmEnabled'");
73
+ }
74
+ resourceInputs["dashboardAttributes"] = args ? args.dashboardAttributes : undefined;
75
+ resourceInputs["guardianAttributes"] = args ? args.guardianAttributes : undefined;
76
+ resourceInputs["vdmEnabled"] = args ? args.vdmEnabled : undefined;
77
+ }
78
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
79
+ super(AccountVdmAttributes.__pulumiType, name, resourceInputs, opts);
80
+ }
81
+ }
82
+ exports.AccountVdmAttributes = AccountVdmAttributes;
83
+ /** @internal */
84
+ AccountVdmAttributes.__pulumiType = 'aws:sesv2/accountVdmAttributes:AccountVdmAttributes';
85
+ //# sourceMappingURL=accountVdmAttributes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountVdmAttributes.js","sourceRoot":"","sources":["../../sesv2/accountVdmAttributes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,oBAAqB,SAAQ,MAAM,CAAC,cAAc;IAC3D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiC,EAAE,IAAmC;QAC/H,OAAO,IAAI,oBAAoB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3E,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,oBAAoB,CAAC,YAAY,CAAC;IACrE,CAAC;IAyBD,YAAY,IAAY,EAAE,WAAkE,EAAE,IAAmC;QAC7H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoD,CAAC;YACnE,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAAmD,CAAC;YACjE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzE,CAAC;;AAtEL,oDAuEC;AAzDG,gBAAgB;AACO,iCAAY,GAAG,qDAAqD,CAAC"}
package/sesv2/index.d.ts CHANGED
@@ -1,3 +1,6 @@
1
+ export { AccountVdmAttributesArgs, AccountVdmAttributesState } from "./accountVdmAttributes";
2
+ export type AccountVdmAttributes = import("./accountVdmAttributes").AccountVdmAttributes;
3
+ export declare const AccountVdmAttributes: typeof import("./accountVdmAttributes").AccountVdmAttributes;
1
4
  export { ConfigurationSetArgs, ConfigurationSetState } from "./configurationSet";
2
5
  export type ConfigurationSet = import("./configurationSet").ConfigurationSet;
3
6
  export declare const ConfigurationSet: typeof import("./configurationSet").ConfigurationSet;