@pulumi/aws 6.59.0 → 6.59.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apigateway/account.d.ts +26 -2
- package/apigateway/account.js +3 -1
- package/apigateway/account.js.map +1 -1
- package/apigateway/deployment.d.ts +39 -6
- package/apigateway/deployment.js.map +1 -1
- package/backup/restoreTestingSelection.d.ts +9 -0
- package/backup/restoreTestingSelection.js.map +1 -1
- package/cloudwatch/eventBus.d.ts +36 -17
- package/cloudwatch/eventBus.js +4 -1
- package/cloudwatch/eventBus.js.map +1 -1
- package/cloudwatch/getEventBus.d.ts +8 -4
- package/cloudwatch/getEventBus.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +6 -2
- package/types/input.js.map +1 -1
- package/types/output.d.ts +4 -0
- package/types/output.js.map +1 -1
package/apigateway/account.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* Provides a settings of an API Gateway Account. Settings is applied region-wide per `provider` block.
|
|
6
6
|
*
|
|
7
|
-
* > **Note:**
|
|
7
|
+
* > **Note:** By default, destroying this resource will keep your account settings intact. Set `resetOnDelete` to `true` to reset the account setttings to default. In a future major version of the provider, destroying the resource will reset account settings.
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -80,11 +80,19 @@ export declare class Account extends pulumi.CustomResource {
|
|
|
80
80
|
/**
|
|
81
81
|
* ARN of an IAM role for CloudWatch (to allow logging & monitoring). See more [in AWS Docs](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-stage-settings.html#how-to-stage-settings-console). Logging & monitoring can be enabled/disabled and otherwise tuned on the API Gateway Stage level.
|
|
82
82
|
*/
|
|
83
|
-
readonly cloudwatchRoleArn: pulumi.Output<string
|
|
83
|
+
readonly cloudwatchRoleArn: pulumi.Output<string>;
|
|
84
84
|
/**
|
|
85
85
|
* A list of features supported for the account.
|
|
86
86
|
*/
|
|
87
87
|
readonly features: pulumi.Output<string[]>;
|
|
88
|
+
/**
|
|
89
|
+
* If `true`, destroying the resource will reset account settings to default, otherwise account settings are not modified.
|
|
90
|
+
* Defaults to `false`.
|
|
91
|
+
* Will be removed in a future major version of the provider.
|
|
92
|
+
*
|
|
93
|
+
* @deprecated The "resetOnDelete" attribute will be removed in a future version of the provider
|
|
94
|
+
*/
|
|
95
|
+
readonly resetOnDelete: pulumi.Output<boolean | undefined>;
|
|
88
96
|
/**
|
|
89
97
|
* Account-Level throttle settings. See exported fields below.
|
|
90
98
|
*/
|
|
@@ -114,6 +122,14 @@ export interface AccountState {
|
|
|
114
122
|
* A list of features supported for the account.
|
|
115
123
|
*/
|
|
116
124
|
features?: pulumi.Input<pulumi.Input<string>[]>;
|
|
125
|
+
/**
|
|
126
|
+
* If `true`, destroying the resource will reset account settings to default, otherwise account settings are not modified.
|
|
127
|
+
* Defaults to `false`.
|
|
128
|
+
* Will be removed in a future major version of the provider.
|
|
129
|
+
*
|
|
130
|
+
* @deprecated The "resetOnDelete" attribute will be removed in a future version of the provider
|
|
131
|
+
*/
|
|
132
|
+
resetOnDelete?: pulumi.Input<boolean>;
|
|
117
133
|
/**
|
|
118
134
|
* Account-Level throttle settings. See exported fields below.
|
|
119
135
|
*/
|
|
@@ -127,4 +143,12 @@ export interface AccountArgs {
|
|
|
127
143
|
* ARN of an IAM role for CloudWatch (to allow logging & monitoring). See more [in AWS Docs](https://docs.aws.amazon.com/apigateway/latest/developerguide/how-to-stage-settings.html#how-to-stage-settings-console). Logging & monitoring can be enabled/disabled and otherwise tuned on the API Gateway Stage level.
|
|
128
144
|
*/
|
|
129
145
|
cloudwatchRoleArn?: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* If `true`, destroying the resource will reset account settings to default, otherwise account settings are not modified.
|
|
148
|
+
* Defaults to `false`.
|
|
149
|
+
* Will be removed in a future major version of the provider.
|
|
150
|
+
*
|
|
151
|
+
* @deprecated The "resetOnDelete" attribute will be removed in a future version of the provider
|
|
152
|
+
*/
|
|
153
|
+
resetOnDelete?: pulumi.Input<boolean>;
|
|
130
154
|
}
|
package/apigateway/account.js
CHANGED
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Provides a settings of an API Gateway Account. Settings is applied region-wide per `provider` block.
|
|
10
10
|
*
|
|
11
|
-
* > **Note:**
|
|
11
|
+
* > **Note:** By default, destroying this resource will keep your account settings intact. Set `resetOnDelete` to `true` to reset the account setttings to default. In a future major version of the provider, destroying the resource will reset account settings.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -92,11 +92,13 @@ class Account extends pulumi.CustomResource {
|
|
|
92
92
|
resourceInputs["apiKeyVersion"] = state ? state.apiKeyVersion : undefined;
|
|
93
93
|
resourceInputs["cloudwatchRoleArn"] = state ? state.cloudwatchRoleArn : undefined;
|
|
94
94
|
resourceInputs["features"] = state ? state.features : undefined;
|
|
95
|
+
resourceInputs["resetOnDelete"] = state ? state.resetOnDelete : undefined;
|
|
95
96
|
resourceInputs["throttleSettings"] = state ? state.throttleSettings : undefined;
|
|
96
97
|
}
|
|
97
98
|
else {
|
|
98
99
|
const args = argsOrState;
|
|
99
100
|
resourceInputs["cloudwatchRoleArn"] = args ? args.cloudwatchRoleArn : undefined;
|
|
101
|
+
resourceInputs["resetOnDelete"] = args ? args.resetOnDelete : undefined;
|
|
100
102
|
resourceInputs["apiKeyVersion"] = undefined /*out*/;
|
|
101
103
|
resourceInputs["features"] = undefined /*out*/;
|
|
102
104
|
resourceInputs["throttleSettings"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.js","sourceRoot":"","sources":["../../apigateway/account.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"account.js","sourceRoot":"","sources":["../../apigateway/account.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;SACnF;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,eAAe,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACpD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,kBAAkB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC1D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AAjFL,0BAkFC;AApEG,gBAAgB;AACO,oBAAY,GAAG,gCAAgC,CAAC"}
|
|
@@ -42,7 +42,11 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
42
42
|
*/
|
|
43
43
|
static isInstance(obj: any): obj is Deployment;
|
|
44
44
|
/**
|
|
45
|
-
* Input configuration for the canary deployment when the deployment is a canary release deployment.
|
|
45
|
+
* Input configuration for the canary deployment when the deployment is a canary release deployment.
|
|
46
|
+
* See `canarySettings below.
|
|
47
|
+
* Has no effect when `stageName` is not set.
|
|
48
|
+
*
|
|
49
|
+
* @deprecated The attribute "canarySettings" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
46
50
|
*/
|
|
47
51
|
readonly canarySettings: pulumi.Output<outputs.apigateway.DeploymentCanarySettings | undefined>;
|
|
48
52
|
/**
|
|
@@ -70,10 +74,17 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
70
74
|
readonly restApi: pulumi.Output<string>;
|
|
71
75
|
/**
|
|
72
76
|
* Description to set on the stage managed by the `stageName` argument.
|
|
77
|
+
* Has no effect when `stageName` is not set.
|
|
78
|
+
*
|
|
79
|
+
* @deprecated The attribute "stageDescription" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
73
80
|
*/
|
|
74
81
|
readonly stageDescription: pulumi.Output<string | undefined>;
|
|
75
82
|
/**
|
|
76
|
-
* Name of the stage to create with this deployment.
|
|
83
|
+
* Name of the stage to create with this deployment.
|
|
84
|
+
* If the specified stage already exists, it will be updated to point to the new deployment.
|
|
85
|
+
* We recommend using the `aws.apigateway.Stage` resource instead to manage stages.
|
|
86
|
+
*
|
|
87
|
+
* @deprecated The attribute "stageName" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
77
88
|
*/
|
|
78
89
|
readonly stageName: pulumi.Output<string | undefined>;
|
|
79
90
|
/**
|
|
@@ -102,7 +113,11 @@ export declare class Deployment extends pulumi.CustomResource {
|
|
|
102
113
|
*/
|
|
103
114
|
export interface DeploymentState {
|
|
104
115
|
/**
|
|
105
|
-
* Input configuration for the canary deployment when the deployment is a canary release deployment.
|
|
116
|
+
* Input configuration for the canary deployment when the deployment is a canary release deployment.
|
|
117
|
+
* See `canarySettings below.
|
|
118
|
+
* Has no effect when `stageName` is not set.
|
|
119
|
+
*
|
|
120
|
+
* @deprecated The attribute "canarySettings" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
106
121
|
*/
|
|
107
122
|
canarySettings?: pulumi.Input<inputs.apigateway.DeploymentCanarySettings>;
|
|
108
123
|
/**
|
|
@@ -130,10 +145,17 @@ export interface DeploymentState {
|
|
|
130
145
|
restApi?: pulumi.Input<string | RestApi>;
|
|
131
146
|
/**
|
|
132
147
|
* Description to set on the stage managed by the `stageName` argument.
|
|
148
|
+
* Has no effect when `stageName` is not set.
|
|
149
|
+
*
|
|
150
|
+
* @deprecated The attribute "stageDescription" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
133
151
|
*/
|
|
134
152
|
stageDescription?: pulumi.Input<string>;
|
|
135
153
|
/**
|
|
136
|
-
* Name of the stage to create with this deployment.
|
|
154
|
+
* Name of the stage to create with this deployment.
|
|
155
|
+
* If the specified stage already exists, it will be updated to point to the new deployment.
|
|
156
|
+
* We recommend using the `aws.apigateway.Stage` resource instead to manage stages.
|
|
157
|
+
*
|
|
158
|
+
* @deprecated The attribute "stageName" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
137
159
|
*/
|
|
138
160
|
stageName?: pulumi.Input<string>;
|
|
139
161
|
/**
|
|
@@ -154,7 +176,11 @@ export interface DeploymentState {
|
|
|
154
176
|
*/
|
|
155
177
|
export interface DeploymentArgs {
|
|
156
178
|
/**
|
|
157
|
-
* Input configuration for the canary deployment when the deployment is a canary release deployment.
|
|
179
|
+
* Input configuration for the canary deployment when the deployment is a canary release deployment.
|
|
180
|
+
* See `canarySettings below.
|
|
181
|
+
* Has no effect when `stageName` is not set.
|
|
182
|
+
*
|
|
183
|
+
* @deprecated The attribute "canarySettings" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
158
184
|
*/
|
|
159
185
|
canarySettings?: pulumi.Input<inputs.apigateway.DeploymentCanarySettings>;
|
|
160
186
|
/**
|
|
@@ -167,10 +193,17 @@ export interface DeploymentArgs {
|
|
|
167
193
|
restApi: pulumi.Input<string | RestApi>;
|
|
168
194
|
/**
|
|
169
195
|
* Description to set on the stage managed by the `stageName` argument.
|
|
196
|
+
* Has no effect when `stageName` is not set.
|
|
197
|
+
*
|
|
198
|
+
* @deprecated The attribute "stageDescription" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
170
199
|
*/
|
|
171
200
|
stageDescription?: pulumi.Input<string>;
|
|
172
201
|
/**
|
|
173
|
-
* Name of the stage to create with this deployment.
|
|
202
|
+
* Name of the stage to create with this deployment.
|
|
203
|
+
* If the specified stage already exists, it will be updated to point to the new deployment.
|
|
204
|
+
* We recommend using the `aws.apigateway.Stage` resource instead to manage stages.
|
|
205
|
+
*
|
|
206
|
+
* @deprecated The attribute "stageName" will be removed in a future major version. Use an explicit "aws.apigateway.Stage" instead.
|
|
174
207
|
*/
|
|
175
208
|
stageName?: pulumi.Input<string>;
|
|
176
209
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../../apigateway/deployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAI1C;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IACjD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,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,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;
|
|
1
|
+
{"version":3,"file":"deployment.js","sourceRoot":"","sources":["../../apigateway/deployment.ts"],"names":[],"mappings":"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"}
|
|
@@ -95,6 +95,9 @@ export declare class RestoreTestingSelection extends pulumi.CustomResource {
|
|
|
95
95
|
* The name of the restore testing plan.
|
|
96
96
|
*/
|
|
97
97
|
readonly restoreTestingPlanName: pulumi.Output<string>;
|
|
98
|
+
/**
|
|
99
|
+
* The amount of hours available to run a validation script on the data. Valid range is `1` to `168`.
|
|
100
|
+
*/
|
|
98
101
|
readonly validationWindowHours: pulumi.Output<number>;
|
|
99
102
|
/**
|
|
100
103
|
* Create a RestoreTestingSelection resource with the given unique name, arguments, and options.
|
|
@@ -139,6 +142,9 @@ export interface RestoreTestingSelectionState {
|
|
|
139
142
|
* The name of the restore testing plan.
|
|
140
143
|
*/
|
|
141
144
|
restoreTestingPlanName?: pulumi.Input<string>;
|
|
145
|
+
/**
|
|
146
|
+
* The amount of hours available to run a validation script on the data. Valid range is `1` to `168`.
|
|
147
|
+
*/
|
|
142
148
|
validationWindowHours?: pulumi.Input<number>;
|
|
143
149
|
}
|
|
144
150
|
/**
|
|
@@ -175,5 +181,8 @@ export interface RestoreTestingSelectionArgs {
|
|
|
175
181
|
* The name of the restore testing plan.
|
|
176
182
|
*/
|
|
177
183
|
restoreTestingPlanName: pulumi.Input<string>;
|
|
184
|
+
/**
|
|
185
|
+
* The amount of hours available to run a validation script on the data. Valid range is `1` to `168`.
|
|
186
|
+
*/
|
|
178
187
|
validationWindowHours?: pulumi.Input<number>;
|
|
179
188
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"restoreTestingSelection.js","sourceRoot":"","sources":["../../backup/restoreTestingSelection.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,uBAAwB,SAAQ,MAAM,CAAC,cAAc;IAC9D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoC,EAAE,IAAmC;QAClI,OAAO,IAAI,uBAAuB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9E,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,uBAAuB,CAAC,YAAY,CAAC;IACxE,CAAC;
|
|
1
|
+
{"version":3,"file":"restoreTestingSelection.js","sourceRoot":"","sources":["../../backup/restoreTestingSelection.ts"],"names":[],"mappings":"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"}
|
package/cloudwatch/eventBus.d.ts
CHANGED
|
@@ -22,13 +22,14 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
22
22
|
* });
|
|
23
23
|
* const examplepartnerEventBus = new aws.cloudwatch.EventBus("examplepartner", {
|
|
24
24
|
* name: examplepartner.then(examplepartner => examplepartner.name),
|
|
25
|
+
* description: "Event bus for example partner events",
|
|
25
26
|
* eventSourceName: examplepartner.then(examplepartner => examplepartner.name),
|
|
26
27
|
* });
|
|
27
28
|
* ```
|
|
28
29
|
*
|
|
29
30
|
* ## Import
|
|
30
31
|
*
|
|
31
|
-
* Using `pulumi import`, import EventBridge event buses using the
|
|
32
|
+
* Using `pulumi import`, import EventBridge event buses using the name of the event bus (which can also be a partner event source name). For example:
|
|
32
33
|
*
|
|
33
34
|
* ```sh
|
|
34
35
|
* $ pulumi import aws:cloudwatch/eventBus:EventBus messenger chat-messages
|
|
@@ -51,29 +52,35 @@ export declare class EventBus extends pulumi.CustomResource {
|
|
|
51
52
|
*/
|
|
52
53
|
static isInstance(obj: any): obj is EventBus;
|
|
53
54
|
/**
|
|
54
|
-
*
|
|
55
|
+
* ARN of the event bus.
|
|
55
56
|
*/
|
|
56
57
|
readonly arn: pulumi.Output<string>;
|
|
57
58
|
/**
|
|
58
|
-
*
|
|
59
|
+
* Event bus description.
|
|
60
|
+
*/
|
|
61
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
62
|
+
/**
|
|
63
|
+
* Partner event source that the new event bus will be matched with. Must match `name`.
|
|
59
64
|
*/
|
|
60
65
|
readonly eventSourceName: pulumi.Output<string | undefined>;
|
|
61
66
|
/**
|
|
62
|
-
*
|
|
67
|
+
* Identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt events on this event bus. The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN.
|
|
63
68
|
*/
|
|
64
69
|
readonly kmsKeyIdentifier: pulumi.Output<string | undefined>;
|
|
65
70
|
/**
|
|
66
|
-
*
|
|
71
|
+
* Name of the new event bus. The names of custom event buses can't contain the / character. To create a partner event bus, ensure that the `name` matches the `eventSourceName`.
|
|
72
|
+
*
|
|
73
|
+
* The following arguments are optional:
|
|
67
74
|
*/
|
|
68
75
|
readonly name: pulumi.Output<string>;
|
|
69
76
|
/**
|
|
70
|
-
*
|
|
77
|
+
* Map of tags assigned to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
71
78
|
*/
|
|
72
79
|
readonly tags: pulumi.Output<{
|
|
73
80
|
[key: string]: string;
|
|
74
81
|
} | undefined>;
|
|
75
82
|
/**
|
|
76
|
-
*
|
|
83
|
+
* Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
|
|
77
84
|
*
|
|
78
85
|
* @deprecated Please use `tags` instead.
|
|
79
86
|
*/
|
|
@@ -94,29 +101,35 @@ export declare class EventBus extends pulumi.CustomResource {
|
|
|
94
101
|
*/
|
|
95
102
|
export interface EventBusState {
|
|
96
103
|
/**
|
|
97
|
-
*
|
|
104
|
+
* ARN of the event bus.
|
|
98
105
|
*/
|
|
99
106
|
arn?: pulumi.Input<string>;
|
|
100
107
|
/**
|
|
101
|
-
*
|
|
108
|
+
* Event bus description.
|
|
109
|
+
*/
|
|
110
|
+
description?: pulumi.Input<string>;
|
|
111
|
+
/**
|
|
112
|
+
* Partner event source that the new event bus will be matched with. Must match `name`.
|
|
102
113
|
*/
|
|
103
114
|
eventSourceName?: pulumi.Input<string>;
|
|
104
115
|
/**
|
|
105
|
-
*
|
|
116
|
+
* Identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt events on this event bus. The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN.
|
|
106
117
|
*/
|
|
107
118
|
kmsKeyIdentifier?: pulumi.Input<string>;
|
|
108
119
|
/**
|
|
109
|
-
*
|
|
120
|
+
* Name of the new event bus. The names of custom event buses can't contain the / character. To create a partner event bus, ensure that the `name` matches the `eventSourceName`.
|
|
121
|
+
*
|
|
122
|
+
* The following arguments are optional:
|
|
110
123
|
*/
|
|
111
124
|
name?: pulumi.Input<string>;
|
|
112
125
|
/**
|
|
113
|
-
*
|
|
126
|
+
* Map of tags assigned to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
114
127
|
*/
|
|
115
128
|
tags?: pulumi.Input<{
|
|
116
129
|
[key: string]: pulumi.Input<string>;
|
|
117
130
|
}>;
|
|
118
131
|
/**
|
|
119
|
-
*
|
|
132
|
+
* Map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
|
|
120
133
|
*
|
|
121
134
|
* @deprecated Please use `tags` instead.
|
|
122
135
|
*/
|
|
@@ -129,19 +142,25 @@ export interface EventBusState {
|
|
|
129
142
|
*/
|
|
130
143
|
export interface EventBusArgs {
|
|
131
144
|
/**
|
|
132
|
-
*
|
|
145
|
+
* Event bus description.
|
|
146
|
+
*/
|
|
147
|
+
description?: pulumi.Input<string>;
|
|
148
|
+
/**
|
|
149
|
+
* Partner event source that the new event bus will be matched with. Must match `name`.
|
|
133
150
|
*/
|
|
134
151
|
eventSourceName?: pulumi.Input<string>;
|
|
135
152
|
/**
|
|
136
|
-
*
|
|
153
|
+
* Identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt events on this event bus. The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN.
|
|
137
154
|
*/
|
|
138
155
|
kmsKeyIdentifier?: pulumi.Input<string>;
|
|
139
156
|
/**
|
|
140
|
-
*
|
|
157
|
+
* Name of the new event bus. The names of custom event buses can't contain the / character. To create a partner event bus, ensure that the `name` matches the `eventSourceName`.
|
|
158
|
+
*
|
|
159
|
+
* The following arguments are optional:
|
|
141
160
|
*/
|
|
142
161
|
name?: pulumi.Input<string>;
|
|
143
162
|
/**
|
|
144
|
-
*
|
|
163
|
+
* Map of tags assigned to the resource. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
145
164
|
*/
|
|
146
165
|
tags?: pulumi.Input<{
|
|
147
166
|
[key: string]: pulumi.Input<string>;
|
package/cloudwatch/eventBus.js
CHANGED
|
@@ -28,13 +28,14 @@ const utilities = require("../utilities");
|
|
|
28
28
|
* });
|
|
29
29
|
* const examplepartnerEventBus = new aws.cloudwatch.EventBus("examplepartner", {
|
|
30
30
|
* name: examplepartner.then(examplepartner => examplepartner.name),
|
|
31
|
+
* description: "Event bus for example partner events",
|
|
31
32
|
* eventSourceName: examplepartner.then(examplepartner => examplepartner.name),
|
|
32
33
|
* });
|
|
33
34
|
* ```
|
|
34
35
|
*
|
|
35
36
|
* ## Import
|
|
36
37
|
*
|
|
37
|
-
* Using `pulumi import`, import EventBridge event buses using the
|
|
38
|
+
* Using `pulumi import`, import EventBridge event buses using the name of the event bus (which can also be a partner event source name). For example:
|
|
38
39
|
*
|
|
39
40
|
* ```sh
|
|
40
41
|
* $ pulumi import aws:cloudwatch/eventBus:EventBus messenger chat-messages
|
|
@@ -69,6 +70,7 @@ class EventBus extends pulumi.CustomResource {
|
|
|
69
70
|
if (opts.id) {
|
|
70
71
|
const state = argsOrState;
|
|
71
72
|
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
73
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
72
74
|
resourceInputs["eventSourceName"] = state ? state.eventSourceName : undefined;
|
|
73
75
|
resourceInputs["kmsKeyIdentifier"] = state ? state.kmsKeyIdentifier : undefined;
|
|
74
76
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
@@ -77,6 +79,7 @@ class EventBus extends pulumi.CustomResource {
|
|
|
77
79
|
}
|
|
78
80
|
else {
|
|
79
81
|
const args = argsOrState;
|
|
82
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
80
83
|
resourceInputs["eventSourceName"] = args ? args.eventSourceName : undefined;
|
|
81
84
|
resourceInputs["kmsKeyIdentifier"] = args ? args.kmsKeyIdentifier : undefined;
|
|
82
85
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventBus.js","sourceRoot":"","sources":["../../cloudwatch/eventBus.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"eventBus.js","sourceRoot":"","sources":["../../cloudwatch/eventBus.ts"],"names":[],"mappings":"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"}
|
|
@@ -21,7 +21,7 @@ export declare function getEventBus(args: GetEventBusArgs, opts?: pulumi.InvokeO
|
|
|
21
21
|
*/
|
|
22
22
|
export interface GetEventBusArgs {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Name of the event bus.
|
|
25
25
|
*/
|
|
26
26
|
name: string;
|
|
27
27
|
}
|
|
@@ -30,15 +30,19 @@ export interface GetEventBusArgs {
|
|
|
30
30
|
*/
|
|
31
31
|
export interface GetEventBusResult {
|
|
32
32
|
/**
|
|
33
|
-
* ARN.
|
|
33
|
+
* ARN of the event bus.
|
|
34
34
|
*/
|
|
35
35
|
readonly arn: string;
|
|
36
|
+
/**
|
|
37
|
+
* Event bus description.
|
|
38
|
+
*/
|
|
39
|
+
readonly description: string;
|
|
36
40
|
/**
|
|
37
41
|
* The provider-assigned unique ID for this managed resource.
|
|
38
42
|
*/
|
|
39
43
|
readonly id: string;
|
|
40
44
|
/**
|
|
41
|
-
*
|
|
45
|
+
* Identifier of the AWS KMS customer managed key for EventBridge to use to encrypt events on this event bus, if one has been specified.
|
|
42
46
|
*/
|
|
43
47
|
readonly kmsKeyIdentifier: string;
|
|
44
48
|
readonly name: string;
|
|
@@ -65,7 +69,7 @@ export declare function getEventBusOutput(args: GetEventBusOutputArgs, opts?: pu
|
|
|
65
69
|
*/
|
|
66
70
|
export interface GetEventBusOutputArgs {
|
|
67
71
|
/**
|
|
68
|
-
*
|
|
72
|
+
* Name of the event bus.
|
|
69
73
|
*/
|
|
70
74
|
name: pulumi.Input<string>;
|
|
71
75
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getEventBus.js","sourceRoot":"","sources":["../../cloudwatch/getEventBus.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kCAKC;
|
|
1
|
+
{"version":3,"file":"getEventBus.js","sourceRoot":"","sources":["../../cloudwatch/getEventBus.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kCAKC;AAkCD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wCAAwC,EAAE;QACzE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aws",
|
|
3
|
-
"version": "6.59.
|
|
3
|
+
"version": "6.59.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"pulumi": {
|
|
27
27
|
"resource": true,
|
|
28
28
|
"name": "aws",
|
|
29
|
-
"version": "6.59.
|
|
29
|
+
"version": "6.59.1"
|
|
30
30
|
}
|
|
31
31
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -1242,6 +1242,10 @@ export interface ProviderEndpoint {
|
|
|
1242
1242
|
* Use this to override the default service endpoint URL
|
|
1243
1243
|
*/
|
|
1244
1244
|
synthetics?: pulumi.Input<string>;
|
|
1245
|
+
/**
|
|
1246
|
+
* Use this to override the default service endpoint URL
|
|
1247
|
+
*/
|
|
1248
|
+
taxsettings?: pulumi.Input<string>;
|
|
1245
1249
|
/**
|
|
1246
1250
|
* Use this to override the default service endpoint URL
|
|
1247
1251
|
*/
|
|
@@ -2334,11 +2338,11 @@ export declare namespace apigateway {
|
|
|
2334
2338
|
/**
|
|
2335
2339
|
* Absolute maximum number of times API Gateway allows the API to be called per second (RPS).
|
|
2336
2340
|
*/
|
|
2337
|
-
burstLimit
|
|
2341
|
+
burstLimit: pulumi.Input<number>;
|
|
2338
2342
|
/**
|
|
2339
2343
|
* Number of times API Gateway allows the API to be called per second on average (RPS).
|
|
2340
2344
|
*/
|
|
2341
|
-
rateLimit
|
|
2345
|
+
rateLimit: pulumi.Input<number>;
|
|
2342
2346
|
}
|
|
2343
2347
|
interface DeploymentCanarySettings {
|
|
2344
2348
|
/**
|
package/types/input.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"input.js","sourceRoot":"","sources":["../../types/input.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AA4z9DjF,IAAiB,GAAG,CAmanB;AAnaD,WAAiB,GAAG;IAmWhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAwDL,CAAC,EAnagB,GAAG,GAAH,WAAG,KAAH,WAAG,QAmanB"}
|
package/types/output.d.ts
CHANGED
|
@@ -18470,6 +18470,10 @@ export declare namespace config {
|
|
|
18470
18470
|
* Use this to override the default service endpoint URL
|
|
18471
18471
|
*/
|
|
18472
18472
|
synthetics?: string;
|
|
18473
|
+
/**
|
|
18474
|
+
* Use this to override the default service endpoint URL
|
|
18475
|
+
*/
|
|
18476
|
+
taxsettings?: string;
|
|
18473
18477
|
/**
|
|
18474
18478
|
* Use this to override the default service endpoint URL
|
|
18475
18479
|
*/
|
package/types/output.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;
|
|
1
|
+
{"version":3,"file":"output.js","sourceRoot":"","sources":["../../types/output.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAuztEjF,IAAiB,GAAG,CAuanB;AAvaD,WAAiB,GAAG;IAsWhB;;OAEG;IACH,SAAgB,sCAAsC,CAAC,GAA4B;;QAC/E,uCACO,GAAG,KACN,WAAW,EAAE,MAAA,CAAC,GAAG,CAAC,WAAW,CAAC,mCAAI,WAAW,IAC/C;IACN,CAAC;IALe,0CAAsC,yCAKrD,CAAA;AAyDL,CAAC,EAvagB,GAAG,GAAH,WAAG,KAAH,WAAG,QAuanB"}
|