@pulumi/aws 6.78.0-alpha.1745512144 → 6.78.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 (61) hide show
  1. package/acm/certificate.d.ts +3 -6
  2. package/acm/certificate.js.map +1 -1
  3. package/amplify/app.d.ts +12 -0
  4. package/amplify/app.js +2 -0
  5. package/amplify/app.js.map +1 -1
  6. package/apigateway/deployment.d.ts +12 -4
  7. package/apigateway/deployment.js.map +1 -1
  8. package/backup/restoreTestingPlan.d.ts +1 -0
  9. package/backup/restoreTestingPlan.js +1 -0
  10. package/backup/restoreTestingPlan.js.map +1 -1
  11. package/codebuild/webhook.d.ts +12 -0
  12. package/codebuild/webhook.js +2 -0
  13. package/codebuild/webhook.js.map +1 -1
  14. package/cognito/userPoolDomain.d.ts +12 -0
  15. package/cognito/userPoolDomain.js +2 -0
  16. package/cognito/userPoolDomain.js.map +1 -1
  17. package/drs/replicationConfigurationTemplate.d.ts +44 -0
  18. package/drs/replicationConfigurationTemplate.js +44 -0
  19. package/drs/replicationConfigurationTemplate.js.map +1 -1
  20. package/ec2/getNetworkInsightsPath.d.ts +8 -0
  21. package/ec2/getNetworkInsightsPath.js.map +1 -1
  22. package/ec2/instance.d.ts +17 -0
  23. package/ec2/instance.js +17 -0
  24. package/ec2/instance.js.map +1 -1
  25. package/ec2/networkInsightsPath.d.ts +11 -3
  26. package/ec2/networkInsightsPath.js +4 -0
  27. package/ec2/networkInsightsPath.js.map +1 -1
  28. package/ec2/vpcIpv6CidrBlockAssociation.d.ts +6 -6
  29. package/eks/cluster.d.ts +12 -0
  30. package/eks/cluster.js +2 -0
  31. package/eks/cluster.js.map +1 -1
  32. package/elasticache/cluster.d.ts +6 -6
  33. package/iot/caCertificate.d.ts +6 -6
  34. package/lakeformation/optIn.d.ts +0 -8
  35. package/lakeformation/optIn.js +0 -8
  36. package/lakeformation/optIn.js.map +1 -1
  37. package/package.json +2 -2
  38. package/redshift/index.d.ts +3 -0
  39. package/redshift/index.js +6 -1
  40. package/redshift/index.js.map +1 -1
  41. package/redshift/integration.d.ts +291 -0
  42. package/redshift/integration.js +188 -0
  43. package/redshift/integration.js.map +1 -0
  44. package/redshiftserverless/workgroup.d.ts +12 -0
  45. package/redshiftserverless/workgroup.js +2 -0
  46. package/redshiftserverless/workgroup.js.map +1 -1
  47. package/sagemaker/imageVersion.d.ts +86 -2
  48. package/sagemaker/imageVersion.js +14 -0
  49. package/sagemaker/imageVersion.js.map +1 -1
  50. package/sagemaker/notebookInstanceLifecycleConfiguration.d.ts +34 -0
  51. package/sagemaker/notebookInstanceLifecycleConfiguration.js +4 -0
  52. package/sagemaker/notebookInstanceLifecycleConfiguration.js.map +1 -1
  53. package/sns/topicSubscription.d.ts +35 -25
  54. package/sns/topicSubscription.js +35 -25
  55. package/sns/topicSubscription.js.map +1 -1
  56. package/transfer/server.d.ts +9 -0
  57. package/transfer/server.js.map +1 -1
  58. package/types/input.d.ts +123 -14
  59. package/types/input.js.map +1 -1
  60. package/types/output.d.ts +151 -14
  61. package/types/output.js.map +1 -1
@@ -0,0 +1,291 @@
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 a DynamoDB zero-ETL integration or S3 event integration with Amazon Redshift. You can refer to the [User Guide](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/RedshiftforDynamoDB-zero-etl.html) for a DynamoDB zero-ETL integration or the [User Guide](https://docs.aws.amazon.com/redshift/latest/dg/loading-data-copy-job.html) for a S3 event integration.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ### Basic Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as aws from "@pulumi/aws";
14
+ *
15
+ * const example = new aws.dynamodb.Table("example", {
16
+ * name: "dynamodb-table-example",
17
+ * readCapacity: 1,
18
+ * writeCapacity: 1,
19
+ * hashKey: "example",
20
+ * attributes: [{
21
+ * name: "example",
22
+ * type: "S",
23
+ * }],
24
+ * pointInTimeRecovery: {
25
+ * enabled: true,
26
+ * },
27
+ * });
28
+ * const exampleNamespace = new aws.redshiftserverless.Namespace("example", {namespaceName: "redshift-example"});
29
+ * const exampleWorkgroup = new aws.redshiftserverless.Workgroup("example", {
30
+ * namespaceName: exampleNamespace.namespaceName,
31
+ * workgroupName: "example-workgroup",
32
+ * baseCapacity: 8,
33
+ * publiclyAccessible: false,
34
+ * subnetIds: [
35
+ * example1.id,
36
+ * example2.id,
37
+ * example3.id,
38
+ * ],
39
+ * configParameters: [{
40
+ * parameterKey: "enable_case_sensitive_identifier",
41
+ * parameterValue: "true",
42
+ * }],
43
+ * });
44
+ * const exampleIntegration = new aws.redshift.Integration("example", {
45
+ * integrationName: "example",
46
+ * sourceArn: example.arn,
47
+ * targetArn: exampleNamespace.arn,
48
+ * });
49
+ * ```
50
+ *
51
+ * ### Use own KMS key
52
+ *
53
+ * ```typescript
54
+ * import * as pulumi from "@pulumi/pulumi";
55
+ * import * as aws from "@pulumi/aws";
56
+ *
57
+ * const current = aws.getCallerIdentity({});
58
+ * const example = new aws.kms.Key("example", {
59
+ * description: "example",
60
+ * deletionWindowInDays: 10,
61
+ * });
62
+ * const exampleKeyPolicy = new aws.kms.KeyPolicy("example", {
63
+ * keyId: example.id,
64
+ * policy: JSON.stringify({
65
+ * Version: "2008-10-17",
66
+ * Statement: [
67
+ * {
68
+ * Effect: "Allow",
69
+ * Principal: {
70
+ * AWS: current.then(current => `arn:aws:iam::${current.accountId}:root`),
71
+ * },
72
+ * Action: "kms:*",
73
+ * Resource: "*",
74
+ * },
75
+ * {
76
+ * Effect: "Allow",
77
+ * Principal: {
78
+ * Service: "redshift.amazonaws.com",
79
+ * },
80
+ * Action: [
81
+ * "kms:Decrypt",
82
+ * "kms:CreateGrant",
83
+ * ],
84
+ * Resource: "*",
85
+ * Condition: {
86
+ * StringEquals: {
87
+ * "aws:SourceAccount": current.then(current => current.accountId),
88
+ * },
89
+ * ArnEquals: {
90
+ * "aws:SourceArn": current.then(current => `arn:aws:redshift:*:${current.accountId}:integration:*`),
91
+ * },
92
+ * },
93
+ * },
94
+ * ],
95
+ * }),
96
+ * });
97
+ * const exampleIntegration = new aws.redshift.Integration("example", {
98
+ * integrationName: "example",
99
+ * sourceArn: exampleAwsDynamodbTable.arn,
100
+ * targetArn: exampleAwsRedshiftserverlessNamespace.arn,
101
+ * kmsKeyId: example.arn,
102
+ * additionalEncryptionContext: {
103
+ * example: "test",
104
+ * },
105
+ * });
106
+ * ```
107
+ *
108
+ * ## Import
109
+ *
110
+ * Using `pulumi import`, import Redshift Integration using the `arn`. For example:
111
+ *
112
+ * ```sh
113
+ * $ pulumi import aws:redshift/integration:Integration example arn:aws:redshift:us-west-2:123456789012:integration:abcdefgh-0000-1111-2222-123456789012
114
+ * ```
115
+ */
116
+ export declare class Integration extends pulumi.CustomResource {
117
+ /**
118
+ * Get an existing Integration resource's state with the given name, ID, and optional extra
119
+ * properties used to qualify the lookup.
120
+ *
121
+ * @param name The _unique_ name of the resulting resource.
122
+ * @param id The _unique_ provider ID of the resource to lookup.
123
+ * @param state Any extra arguments used during the lookup.
124
+ * @param opts Optional settings to control the behavior of the CustomResource.
125
+ */
126
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IntegrationState, opts?: pulumi.CustomResourceOptions): Integration;
127
+ /**
128
+ * Returns true if the given object is an instance of Integration. This is designed to work even
129
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
130
+ */
131
+ static isInstance(obj: any): obj is Integration;
132
+ /**
133
+ * Set of non-secret key–value pairs that contains additional contextual information about the data.
134
+ * For more information, see the [User Guide](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context).
135
+ * You can only include this parameter if you specify the `kmsKeyId` parameter.
136
+ */
137
+ readonly additionalEncryptionContext: pulumi.Output<{
138
+ [key: string]: string;
139
+ } | undefined>;
140
+ /**
141
+ * ARN of the Integration.
142
+ */
143
+ readonly arn: pulumi.Output<string>;
144
+ /**
145
+ * Description of the integration.
146
+ */
147
+ readonly description: pulumi.Output<string | undefined>;
148
+ /**
149
+ * Name of the integration.
150
+ */
151
+ readonly integrationName: pulumi.Output<string>;
152
+ /**
153
+ * KMS key identifier for the key to use to encrypt the integration.
154
+ * If you don't specify an encryption key, Redshift uses a default AWS owned key.
155
+ * You can only include this parameter if `sourceArn` references a DynamoDB table.
156
+ */
157
+ readonly kmsKeyId: pulumi.Output<string>;
158
+ /**
159
+ * ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
160
+ */
161
+ readonly sourceArn: pulumi.Output<string>;
162
+ /**
163
+ * Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
164
+ */
165
+ readonly tags: pulumi.Output<{
166
+ [key: string]: string;
167
+ } | undefined>;
168
+ /**
169
+ * A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
170
+ *
171
+ * @deprecated Please use `tags` instead.
172
+ */
173
+ readonly tagsAll: pulumi.Output<{
174
+ [key: string]: string;
175
+ }>;
176
+ /**
177
+ * ARN of the Redshift data warehouse to use as the target for replication.
178
+ *
179
+ * The following arguments are optional:
180
+ */
181
+ readonly targetArn: pulumi.Output<string>;
182
+ readonly timeouts: pulumi.Output<outputs.redshift.IntegrationTimeouts | undefined>;
183
+ /**
184
+ * Create a Integration resource with the given unique name, arguments, and options.
185
+ *
186
+ * @param name The _unique_ name of the resource.
187
+ * @param args The arguments to use to populate this resource's properties.
188
+ * @param opts A bag of options that control this resource's behavior.
189
+ */
190
+ constructor(name: string, args: IntegrationArgs, opts?: pulumi.CustomResourceOptions);
191
+ }
192
+ /**
193
+ * Input properties used for looking up and filtering Integration resources.
194
+ */
195
+ export interface IntegrationState {
196
+ /**
197
+ * Set of non-secret key–value pairs that contains additional contextual information about the data.
198
+ * For more information, see the [User Guide](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context).
199
+ * You can only include this parameter if you specify the `kmsKeyId` parameter.
200
+ */
201
+ additionalEncryptionContext?: pulumi.Input<{
202
+ [key: string]: pulumi.Input<string>;
203
+ }>;
204
+ /**
205
+ * ARN of the Integration.
206
+ */
207
+ arn?: pulumi.Input<string>;
208
+ /**
209
+ * Description of the integration.
210
+ */
211
+ description?: pulumi.Input<string>;
212
+ /**
213
+ * Name of the integration.
214
+ */
215
+ integrationName?: pulumi.Input<string>;
216
+ /**
217
+ * KMS key identifier for the key to use to encrypt the integration.
218
+ * If you don't specify an encryption key, Redshift uses a default AWS owned key.
219
+ * You can only include this parameter if `sourceArn` references a DynamoDB table.
220
+ */
221
+ kmsKeyId?: pulumi.Input<string>;
222
+ /**
223
+ * ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
224
+ */
225
+ sourceArn?: pulumi.Input<string>;
226
+ /**
227
+ * Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
228
+ */
229
+ tags?: pulumi.Input<{
230
+ [key: string]: pulumi.Input<string>;
231
+ }>;
232
+ /**
233
+ * A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
234
+ *
235
+ * @deprecated Please use `tags` instead.
236
+ */
237
+ tagsAll?: pulumi.Input<{
238
+ [key: string]: pulumi.Input<string>;
239
+ }>;
240
+ /**
241
+ * ARN of the Redshift data warehouse to use as the target for replication.
242
+ *
243
+ * The following arguments are optional:
244
+ */
245
+ targetArn?: pulumi.Input<string>;
246
+ timeouts?: pulumi.Input<inputs.redshift.IntegrationTimeouts>;
247
+ }
248
+ /**
249
+ * The set of arguments for constructing a Integration resource.
250
+ */
251
+ export interface IntegrationArgs {
252
+ /**
253
+ * Set of non-secret key–value pairs that contains additional contextual information about the data.
254
+ * For more information, see the [User Guide](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context).
255
+ * You can only include this parameter if you specify the `kmsKeyId` parameter.
256
+ */
257
+ additionalEncryptionContext?: pulumi.Input<{
258
+ [key: string]: pulumi.Input<string>;
259
+ }>;
260
+ /**
261
+ * Description of the integration.
262
+ */
263
+ description?: pulumi.Input<string>;
264
+ /**
265
+ * Name of the integration.
266
+ */
267
+ integrationName: pulumi.Input<string>;
268
+ /**
269
+ * KMS key identifier for the key to use to encrypt the integration.
270
+ * If you don't specify an encryption key, Redshift uses a default AWS owned key.
271
+ * You can only include this parameter if `sourceArn` references a DynamoDB table.
272
+ */
273
+ kmsKeyId?: pulumi.Input<string>;
274
+ /**
275
+ * ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
276
+ */
277
+ sourceArn: pulumi.Input<string>;
278
+ /**
279
+ * Key-value map of resource tags. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
280
+ */
281
+ tags?: pulumi.Input<{
282
+ [key: string]: pulumi.Input<string>;
283
+ }>;
284
+ /**
285
+ * ARN of the Redshift data warehouse to use as the target for replication.
286
+ *
287
+ * The following arguments are optional:
288
+ */
289
+ targetArn: pulumi.Input<string>;
290
+ timeouts?: pulumi.Input<inputs.redshift.IntegrationTimeouts>;
291
+ }
@@ -0,0 +1,188 @@
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.Integration = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Resource for managing a DynamoDB zero-ETL integration or S3 event integration with Amazon Redshift. You can refer to the [User Guide](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/RedshiftforDynamoDB-zero-etl.html) for a DynamoDB zero-ETL integration or the [User Guide](https://docs.aws.amazon.com/redshift/latest/dg/loading-data-copy-job.html) for a S3 event integration.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ### Basic Usage
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as aws from "@pulumi/aws";
18
+ *
19
+ * const example = new aws.dynamodb.Table("example", {
20
+ * name: "dynamodb-table-example",
21
+ * readCapacity: 1,
22
+ * writeCapacity: 1,
23
+ * hashKey: "example",
24
+ * attributes: [{
25
+ * name: "example",
26
+ * type: "S",
27
+ * }],
28
+ * pointInTimeRecovery: {
29
+ * enabled: true,
30
+ * },
31
+ * });
32
+ * const exampleNamespace = new aws.redshiftserverless.Namespace("example", {namespaceName: "redshift-example"});
33
+ * const exampleWorkgroup = new aws.redshiftserverless.Workgroup("example", {
34
+ * namespaceName: exampleNamespace.namespaceName,
35
+ * workgroupName: "example-workgroup",
36
+ * baseCapacity: 8,
37
+ * publiclyAccessible: false,
38
+ * subnetIds: [
39
+ * example1.id,
40
+ * example2.id,
41
+ * example3.id,
42
+ * ],
43
+ * configParameters: [{
44
+ * parameterKey: "enable_case_sensitive_identifier",
45
+ * parameterValue: "true",
46
+ * }],
47
+ * });
48
+ * const exampleIntegration = new aws.redshift.Integration("example", {
49
+ * integrationName: "example",
50
+ * sourceArn: example.arn,
51
+ * targetArn: exampleNamespace.arn,
52
+ * });
53
+ * ```
54
+ *
55
+ * ### Use own KMS key
56
+ *
57
+ * ```typescript
58
+ * import * as pulumi from "@pulumi/pulumi";
59
+ * import * as aws from "@pulumi/aws";
60
+ *
61
+ * const current = aws.getCallerIdentity({});
62
+ * const example = new aws.kms.Key("example", {
63
+ * description: "example",
64
+ * deletionWindowInDays: 10,
65
+ * });
66
+ * const exampleKeyPolicy = new aws.kms.KeyPolicy("example", {
67
+ * keyId: example.id,
68
+ * policy: JSON.stringify({
69
+ * Version: "2008-10-17",
70
+ * Statement: [
71
+ * {
72
+ * Effect: "Allow",
73
+ * Principal: {
74
+ * AWS: current.then(current => `arn:aws:iam::${current.accountId}:root`),
75
+ * },
76
+ * Action: "kms:*",
77
+ * Resource: "*",
78
+ * },
79
+ * {
80
+ * Effect: "Allow",
81
+ * Principal: {
82
+ * Service: "redshift.amazonaws.com",
83
+ * },
84
+ * Action: [
85
+ * "kms:Decrypt",
86
+ * "kms:CreateGrant",
87
+ * ],
88
+ * Resource: "*",
89
+ * Condition: {
90
+ * StringEquals: {
91
+ * "aws:SourceAccount": current.then(current => current.accountId),
92
+ * },
93
+ * ArnEquals: {
94
+ * "aws:SourceArn": current.then(current => `arn:aws:redshift:*:${current.accountId}:integration:*`),
95
+ * },
96
+ * },
97
+ * },
98
+ * ],
99
+ * }),
100
+ * });
101
+ * const exampleIntegration = new aws.redshift.Integration("example", {
102
+ * integrationName: "example",
103
+ * sourceArn: exampleAwsDynamodbTable.arn,
104
+ * targetArn: exampleAwsRedshiftserverlessNamespace.arn,
105
+ * kmsKeyId: example.arn,
106
+ * additionalEncryptionContext: {
107
+ * example: "test",
108
+ * },
109
+ * });
110
+ * ```
111
+ *
112
+ * ## Import
113
+ *
114
+ * Using `pulumi import`, import Redshift Integration using the `arn`. For example:
115
+ *
116
+ * ```sh
117
+ * $ pulumi import aws:redshift/integration:Integration example arn:aws:redshift:us-west-2:123456789012:integration:abcdefgh-0000-1111-2222-123456789012
118
+ * ```
119
+ */
120
+ class Integration extends pulumi.CustomResource {
121
+ /**
122
+ * Get an existing Integration resource's state with the given name, ID, and optional extra
123
+ * properties used to qualify the lookup.
124
+ *
125
+ * @param name The _unique_ name of the resulting resource.
126
+ * @param id The _unique_ provider ID of the resource to lookup.
127
+ * @param state Any extra arguments used during the lookup.
128
+ * @param opts Optional settings to control the behavior of the CustomResource.
129
+ */
130
+ static get(name, id, state, opts) {
131
+ return new Integration(name, state, Object.assign(Object.assign({}, opts), { id: id }));
132
+ }
133
+ /**
134
+ * Returns true if the given object is an instance of Integration. This is designed to work even
135
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
136
+ */
137
+ static isInstance(obj) {
138
+ if (obj === undefined || obj === null) {
139
+ return false;
140
+ }
141
+ return obj['__pulumiType'] === Integration.__pulumiType;
142
+ }
143
+ constructor(name, argsOrState, opts) {
144
+ let resourceInputs = {};
145
+ opts = opts || {};
146
+ if (opts.id) {
147
+ const state = argsOrState;
148
+ resourceInputs["additionalEncryptionContext"] = state ? state.additionalEncryptionContext : undefined;
149
+ resourceInputs["arn"] = state ? state.arn : undefined;
150
+ resourceInputs["description"] = state ? state.description : undefined;
151
+ resourceInputs["integrationName"] = state ? state.integrationName : undefined;
152
+ resourceInputs["kmsKeyId"] = state ? state.kmsKeyId : undefined;
153
+ resourceInputs["sourceArn"] = state ? state.sourceArn : undefined;
154
+ resourceInputs["tags"] = state ? state.tags : undefined;
155
+ resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
156
+ resourceInputs["targetArn"] = state ? state.targetArn : undefined;
157
+ resourceInputs["timeouts"] = state ? state.timeouts : undefined;
158
+ }
159
+ else {
160
+ const args = argsOrState;
161
+ if ((!args || args.integrationName === undefined) && !opts.urn) {
162
+ throw new Error("Missing required property 'integrationName'");
163
+ }
164
+ if ((!args || args.sourceArn === undefined) && !opts.urn) {
165
+ throw new Error("Missing required property 'sourceArn'");
166
+ }
167
+ if ((!args || args.targetArn === undefined) && !opts.urn) {
168
+ throw new Error("Missing required property 'targetArn'");
169
+ }
170
+ resourceInputs["additionalEncryptionContext"] = args ? args.additionalEncryptionContext : undefined;
171
+ resourceInputs["description"] = args ? args.description : undefined;
172
+ resourceInputs["integrationName"] = args ? args.integrationName : undefined;
173
+ resourceInputs["kmsKeyId"] = args ? args.kmsKeyId : undefined;
174
+ resourceInputs["sourceArn"] = args ? args.sourceArn : undefined;
175
+ resourceInputs["tags"] = args ? args.tags : undefined;
176
+ resourceInputs["targetArn"] = args ? args.targetArn : undefined;
177
+ resourceInputs["timeouts"] = args ? args.timeouts : undefined;
178
+ resourceInputs["arn"] = undefined /*out*/;
179
+ resourceInputs["tagsAll"] = undefined /*out*/;
180
+ }
181
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
182
+ super(Integration.__pulumiType, name, resourceInputs, opts);
183
+ }
184
+ }
185
+ exports.Integration = Integration;
186
+ /** @internal */
187
+ Integration.__pulumiType = 'aws:redshift/integration:Integration';
188
+ //# sourceMappingURL=integration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"integration.js","sourceRoot":"","sources":["../../redshift/integration.ts"],"names":[],"mappings":"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"}
@@ -72,6 +72,10 @@ export declare class Workgroup extends pulumi.CustomResource {
72
72
  * The port number on which the cluster accepts incoming connections.
73
73
  */
74
74
  readonly port: pulumi.Output<number>;
75
+ /**
76
+ * Price-performance scaling for the workgroup. See `Price Performance Target` below.
77
+ */
78
+ readonly pricePerformanceTarget: pulumi.Output<outputs.redshiftserverless.WorkgroupPricePerformanceTarget>;
75
79
  /**
76
80
  * A value that specifies whether the workgroup can be accessed from a public network.
77
81
  */
@@ -153,6 +157,10 @@ export interface WorkgroupState {
153
157
  * The port number on which the cluster accepts incoming connections.
154
158
  */
155
159
  port?: pulumi.Input<number>;
160
+ /**
161
+ * Price-performance scaling for the workgroup. See `Price Performance Target` below.
162
+ */
163
+ pricePerformanceTarget?: pulumi.Input<inputs.redshiftserverless.WorkgroupPricePerformanceTarget>;
156
164
  /**
157
165
  * A value that specifies whether the workgroup can be accessed from a public network.
158
166
  */
@@ -218,6 +226,10 @@ export interface WorkgroupArgs {
218
226
  * The port number on which the cluster accepts incoming connections.
219
227
  */
220
228
  port?: pulumi.Input<number>;
229
+ /**
230
+ * Price-performance scaling for the workgroup. See `Price Performance Target` below.
231
+ */
232
+ pricePerformanceTarget?: pulumi.Input<inputs.redshiftserverless.WorkgroupPricePerformanceTarget>;
221
233
  /**
222
234
  * A value that specifies whether the workgroup can be accessed from a public network.
223
235
  */
@@ -64,6 +64,7 @@ class Workgroup extends pulumi.CustomResource {
64
64
  resourceInputs["maxCapacity"] = state ? state.maxCapacity : undefined;
65
65
  resourceInputs["namespaceName"] = state ? state.namespaceName : undefined;
66
66
  resourceInputs["port"] = state ? state.port : undefined;
67
+ resourceInputs["pricePerformanceTarget"] = state ? state.pricePerformanceTarget : undefined;
67
68
  resourceInputs["publiclyAccessible"] = state ? state.publiclyAccessible : undefined;
68
69
  resourceInputs["securityGroupIds"] = state ? state.securityGroupIds : undefined;
69
70
  resourceInputs["subnetIds"] = state ? state.subnetIds : undefined;
@@ -86,6 +87,7 @@ class Workgroup extends pulumi.CustomResource {
86
87
  resourceInputs["maxCapacity"] = args ? args.maxCapacity : undefined;
87
88
  resourceInputs["namespaceName"] = args ? args.namespaceName : undefined;
88
89
  resourceInputs["port"] = args ? args.port : undefined;
90
+ resourceInputs["pricePerformanceTarget"] = args ? args.pricePerformanceTarget : undefined;
89
91
  resourceInputs["publiclyAccessible"] = args ? args.publiclyAccessible : undefined;
90
92
  resourceInputs["securityGroupIds"] = args ? args.securityGroupIds : undefined;
91
93
  resourceInputs["subnetIds"] = args ? args.subnetIds : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"workgroup.js","sourceRoot":"","sources":["../../redshiftserverless/workgroup.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"workgroup.js","sourceRoot":"","sources":["../../redshiftserverless/workgroup.ts"],"names":[],"mappings":"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"}
@@ -53,13 +53,41 @@ export declare class ImageVersion extends pulumi.CustomResource {
53
53
  */
54
54
  readonly containerImage: pulumi.Output<string>;
55
55
  /**
56
- * The Amazon Resource Name (ARN) of the image the version is based on.
56
+ * Indicates Horovod compatibility.
57
57
  */
58
+ readonly horovod: pulumi.Output<boolean | undefined>;
58
59
  readonly imageArn: pulumi.Output<string>;
59
60
  /**
60
61
  * The name of the image. Must be unique to your account.
61
62
  */
62
63
  readonly imageName: pulumi.Output<string>;
64
+ /**
65
+ * Indicates SageMaker AI job type compatibility. Valid values are: `TRAINING`, `INFERENCE`, and `NOTEBOOK_KERNEL`.
66
+ */
67
+ readonly jobType: pulumi.Output<string | undefined>;
68
+ /**
69
+ * The machine learning framework vended in the image version.
70
+ */
71
+ readonly mlFramework: pulumi.Output<string | undefined>;
72
+ /**
73
+ * Indicates CPU or GPU compatibility. Valid values are: `CPU` and `GPU`.
74
+ */
75
+ readonly processor: pulumi.Output<string | undefined>;
76
+ /**
77
+ * The supported programming language and its version.
78
+ */
79
+ readonly programmingLang: pulumi.Output<string | undefined>;
80
+ /**
81
+ * The maintainer description of the image version.
82
+ */
83
+ readonly releaseNotes: pulumi.Output<string | undefined>;
84
+ /**
85
+ * The stability of the image version, specified by the maintainer. Valid values are: `NOT_PROVIDED`, `STABLE`, `TO_BE_ARCHIVED`, and `ARCHIVED`.
86
+ */
87
+ readonly vendorGuidance: pulumi.Output<string | undefined>;
88
+ /**
89
+ * The version of the image. If not specified, the latest version is described.
90
+ */
63
91
  readonly version: pulumi.Output<number>;
64
92
  /**
65
93
  * Create a ImageVersion resource with the given unique name, arguments, and options.
@@ -87,13 +115,41 @@ export interface ImageVersionState {
87
115
  */
88
116
  containerImage?: pulumi.Input<string>;
89
117
  /**
90
- * The Amazon Resource Name (ARN) of the image the version is based on.
118
+ * Indicates Horovod compatibility.
91
119
  */
120
+ horovod?: pulumi.Input<boolean>;
92
121
  imageArn?: pulumi.Input<string>;
93
122
  /**
94
123
  * The name of the image. Must be unique to your account.
95
124
  */
96
125
  imageName?: pulumi.Input<string>;
126
+ /**
127
+ * Indicates SageMaker AI job type compatibility. Valid values are: `TRAINING`, `INFERENCE`, and `NOTEBOOK_KERNEL`.
128
+ */
129
+ jobType?: pulumi.Input<string>;
130
+ /**
131
+ * The machine learning framework vended in the image version.
132
+ */
133
+ mlFramework?: pulumi.Input<string>;
134
+ /**
135
+ * Indicates CPU or GPU compatibility. Valid values are: `CPU` and `GPU`.
136
+ */
137
+ processor?: pulumi.Input<string>;
138
+ /**
139
+ * The supported programming language and its version.
140
+ */
141
+ programmingLang?: pulumi.Input<string>;
142
+ /**
143
+ * The maintainer description of the image version.
144
+ */
145
+ releaseNotes?: pulumi.Input<string>;
146
+ /**
147
+ * The stability of the image version, specified by the maintainer. Valid values are: `NOT_PROVIDED`, `STABLE`, `TO_BE_ARCHIVED`, and `ARCHIVED`.
148
+ */
149
+ vendorGuidance?: pulumi.Input<string>;
150
+ /**
151
+ * The version of the image. If not specified, the latest version is described.
152
+ */
97
153
  version?: pulumi.Input<number>;
98
154
  }
99
155
  /**
@@ -104,8 +160,36 @@ export interface ImageVersionArgs {
104
160
  * The registry path of the container image on which this image version is based.
105
161
  */
106
162
  baseImage: pulumi.Input<string>;
163
+ /**
164
+ * Indicates Horovod compatibility.
165
+ */
166
+ horovod?: pulumi.Input<boolean>;
107
167
  /**
108
168
  * The name of the image. Must be unique to your account.
109
169
  */
110
170
  imageName: pulumi.Input<string>;
171
+ /**
172
+ * Indicates SageMaker AI job type compatibility. Valid values are: `TRAINING`, `INFERENCE`, and `NOTEBOOK_KERNEL`.
173
+ */
174
+ jobType?: pulumi.Input<string>;
175
+ /**
176
+ * The machine learning framework vended in the image version.
177
+ */
178
+ mlFramework?: pulumi.Input<string>;
179
+ /**
180
+ * Indicates CPU or GPU compatibility. Valid values are: `CPU` and `GPU`.
181
+ */
182
+ processor?: pulumi.Input<string>;
183
+ /**
184
+ * The supported programming language and its version.
185
+ */
186
+ programmingLang?: pulumi.Input<string>;
187
+ /**
188
+ * The maintainer description of the image version.
189
+ */
190
+ releaseNotes?: pulumi.Input<string>;
191
+ /**
192
+ * The stability of the image version, specified by the maintainer. Valid values are: `NOT_PROVIDED`, `STABLE`, `TO_BE_ARCHIVED`, and `ARCHIVED`.
193
+ */
194
+ vendorGuidance?: pulumi.Input<string>;
111
195
  }