@pulumi/aws 5.34.0-alpha.1680199795 → 5.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/appmesh/getRoute.d.ts +103 -0
- package/appmesh/getRoute.js +29 -0
- package/appmesh/getRoute.js.map +1 -0
- package/appmesh/getVirtualGateway.d.ts +90 -0
- package/appmesh/getVirtualGateway.js +31 -0
- package/appmesh/getVirtualGateway.js.map +1 -0
- package/appmesh/getVirtualService.d.ts +1 -1
- package/appmesh/index.d.ts +6 -0
- package/appmesh/index.js +7 -1
- package/appmesh/index.js.map +1 -1
- package/appmesh/mesh.d.ts +6 -0
- package/appmesh/mesh.js +1 -1
- package/appmesh/mesh.js.map +1 -1
- package/appmesh/route.d.ts +6 -0
- package/appmesh/route.js +1 -1
- package/appmesh/route.js.map +1 -1
- package/appmesh/virtualGateway.d.ts +6 -0
- package/appmesh/virtualGateway.js +1 -1
- package/appmesh/virtualGateway.js.map +1 -1
- package/appmesh/virtualService.d.ts +6 -0
- package/appmesh/virtualService.js +1 -1
- package/appmesh/virtualService.js.map +1 -1
- package/cloudwatch/eventBusPolicy.d.ts +6 -3
- package/cloudwatch/eventBusPolicy.js.map +1 -1
- package/cloudwatch/eventPermission.d.ts +6 -3
- package/cloudwatch/eventPermission.js.map +1 -1
- package/cloudwatch/eventRule.d.ts +6 -3
- package/cloudwatch/eventRule.js.map +1 -1
- package/cloudwatch/eventTarget.d.ts +6 -3
- package/cloudwatch/eventTarget.js.map +1 -1
- package/codepipeline/pipeline.d.ts +125 -0
- package/codepipeline/pipeline.js +125 -0
- package/codepipeline/pipeline.js.map +1 -1
- package/cognito/userPoolClient.d.ts +14 -11
- package/cognito/userPoolClient.js +14 -11
- package/cognito/userPoolClient.js.map +1 -1
- package/ec2/placementGroup.d.ts +10 -10
- package/ec2/securityGroup.d.ts +48 -14
- package/ec2/securityGroup.js +45 -8
- package/ec2/securityGroup.js.map +1 -1
- package/ec2/vpcIpam.d.ts +12 -0
- package/ec2/vpcIpam.js.map +1 -1
- package/ec2/vpcIpamResourceDiscoveryAssociation.d.ts +38 -11
- package/ec2/vpcIpamResourceDiscoveryAssociation.js +3 -0
- package/ec2/vpcIpamResourceDiscoveryAssociation.js.map +1 -1
- package/ec2/vpcIpamScope.d.ts +8 -2
- package/ec2/vpcIpamScope.js.map +1 -1
- package/ecs/getCluster.d.ts +18 -0
- package/ecs/getCluster.js +1 -0
- package/ecs/getCluster.js.map +1 -1
- package/gamelift/matchmakingConfiguration.d.ts +4 -4
- package/gamelift/matchmakingConfiguration.js +0 -6
- package/gamelift/matchmakingConfiguration.js.map +1 -1
- package/lightsail/instance.d.ts +18 -3
- package/lightsail/instance.js +15 -0
- package/lightsail/instance.js.map +1 -1
- package/oam/index.d.ts +3 -0
- package/oam/index.js +6 -1
- package/oam/index.js.map +1 -1
- package/oam/link.d.ts +156 -0
- package/oam/link.js +102 -0
- package/oam/link.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/rds/cluster.d.ts +25 -3
- package/rds/cluster.js +22 -0
- package/rds/cluster.js.map +1 -1
- package/rds/getReservedInstanceOffering.d.ts +4 -4
- package/rds/reservedInstance.d.ts +15 -0
- package/rds/reservedInstance.js.map +1 -1
- package/securityhub/account.d.ts +12 -0
- package/securityhub/account.js +2 -0
- package/securityhub/account.js.map +1 -1
- package/securityhub/member.d.ts +2 -2
- package/securityhub/member.js +0 -3
- package/securityhub/member.js.map +1 -1
- package/sesv2/contactList.d.ts +154 -0
- package/sesv2/contactList.js +104 -0
- package/sesv2/contactList.js.map +1 -0
- package/sesv2/index.d.ts +3 -0
- package/sesv2/index.js +6 -1
- package/sesv2/index.js.map +1 -1
- package/types/input.d.ts +77 -7
- package/types/output.d.ts +702 -7
package/securityhub/account.d.ts
CHANGED
|
@@ -37,6 +37,10 @@ export declare class Account extends pulumi.CustomResource {
|
|
|
37
37
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
38
38
|
*/
|
|
39
39
|
static isInstance(obj: any): obj is Account;
|
|
40
|
+
/**
|
|
41
|
+
* Whether to enable the security standards that Security Hub has designated as automatically enabled including: ` AWS Foundational Security Best Practices v1.0.0` and `CIS AWS Foundations Benchmark v1.2.0`. Defaults to `true`.
|
|
42
|
+
*/
|
|
43
|
+
readonly enableDefaultStandards: pulumi.Output<boolean | undefined>;
|
|
40
44
|
/**
|
|
41
45
|
* Create a Account resource with the given unique name, arguments, and options.
|
|
42
46
|
*
|
|
@@ -50,9 +54,17 @@ export declare class Account extends pulumi.CustomResource {
|
|
|
50
54
|
* Input properties used for looking up and filtering Account resources.
|
|
51
55
|
*/
|
|
52
56
|
export interface AccountState {
|
|
57
|
+
/**
|
|
58
|
+
* Whether to enable the security standards that Security Hub has designated as automatically enabled including: ` AWS Foundational Security Best Practices v1.0.0` and `CIS AWS Foundations Benchmark v1.2.0`. Defaults to `true`.
|
|
59
|
+
*/
|
|
60
|
+
enableDefaultStandards?: pulumi.Input<boolean>;
|
|
53
61
|
}
|
|
54
62
|
/**
|
|
55
63
|
* The set of arguments for constructing a Account resource.
|
|
56
64
|
*/
|
|
57
65
|
export interface AccountArgs {
|
|
66
|
+
/**
|
|
67
|
+
* Whether to enable the security standards that Security Hub has designated as automatically enabled including: ` AWS Foundational Security Best Practices v1.0.0` and `CIS AWS Foundations Benchmark v1.2.0`. Defaults to `true`.
|
|
68
|
+
*/
|
|
69
|
+
enableDefaultStandards?: pulumi.Input<boolean>;
|
|
58
70
|
}
|
package/securityhub/account.js
CHANGED
|
@@ -55,9 +55,11 @@ class Account extends pulumi.CustomResource {
|
|
|
55
55
|
opts = opts || {};
|
|
56
56
|
if (opts.id) {
|
|
57
57
|
const state = argsOrState;
|
|
58
|
+
resourceInputs["enableDefaultStandards"] = state ? state.enableDefaultStandards : undefined;
|
|
58
59
|
}
|
|
59
60
|
else {
|
|
60
61
|
const args = argsOrState;
|
|
62
|
+
resourceInputs["enableDefaultStandards"] = args ? args.enableDefaultStandards : undefined;
|
|
61
63
|
}
|
|
62
64
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
63
65
|
super(Account.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.js","sourceRoot":"","sources":["../../securityhub/account.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;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":["../../securityhub/account.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;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;IAeD,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,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/F;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7F;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;;AArDL,0BAsDC;AAxCG,gBAAgB;AACO,oBAAY,GAAG,iCAAiC,CAAC"}
|
package/securityhub/member.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare class Member extends pulumi.CustomResource {
|
|
|
49
49
|
/**
|
|
50
50
|
* The email of the member AWS account.
|
|
51
51
|
*/
|
|
52
|
-
readonly email: pulumi.Output<string>;
|
|
52
|
+
readonly email: pulumi.Output<string | undefined>;
|
|
53
53
|
/**
|
|
54
54
|
* Boolean whether to invite the account to Security Hub as a member. Defaults to `false`.
|
|
55
55
|
*/
|
|
@@ -107,7 +107,7 @@ export interface MemberArgs {
|
|
|
107
107
|
/**
|
|
108
108
|
* The email of the member AWS account.
|
|
109
109
|
*/
|
|
110
|
-
email
|
|
110
|
+
email?: pulumi.Input<string>;
|
|
111
111
|
/**
|
|
112
112
|
* Boolean whether to invite the account to Security Hub as a member. Defaults to `false`.
|
|
113
113
|
*/
|
package/securityhub/member.js
CHANGED
|
@@ -71,9 +71,6 @@ class Member extends pulumi.CustomResource {
|
|
|
71
71
|
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
72
72
|
throw new Error("Missing required property 'accountId'");
|
|
73
73
|
}
|
|
74
|
-
if ((!args || args.email === undefined) && !opts.urn) {
|
|
75
|
-
throw new Error("Missing required property 'email'");
|
|
76
|
-
}
|
|
77
74
|
resourceInputs["accountId"] = args ? args.accountId : undefined;
|
|
78
75
|
resourceInputs["email"] = args ? args.email : undefined;
|
|
79
76
|
resourceInputs["invite"] = args ? args.invite : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"member.js","sourceRoot":"","sources":["../../securityhub/member.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3E;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,
|
|
1
|
+
{"version":3,"file":"member.js","sourceRoot":"","sources":["../../securityhub/member.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3E;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,cAAc,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACtD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;;AAhFL,wBAiFC;AAnEG,gBAAgB;AACO,mBAAY,GAAG,+BAA+B,CAAC"}
|
|
@@ -0,0 +1,154 @@
|
|
|
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) Contact List.
|
|
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.ContactList("example", {contactListName: "example"});
|
|
15
|
+
* ```
|
|
16
|
+
* ### Extended Usage
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as aws from "@pulumi/aws";
|
|
21
|
+
*
|
|
22
|
+
* const example = new aws.sesv2.ContactList("example", {
|
|
23
|
+
* contactListName: "example",
|
|
24
|
+
* description: "description",
|
|
25
|
+
* topics: [{
|
|
26
|
+
* defaultSubscriptionStatus: "OPT_IN",
|
|
27
|
+
* description: "topic description",
|
|
28
|
+
* displayName: "Example Topic",
|
|
29
|
+
* topicName: "example-topic",
|
|
30
|
+
* }],
|
|
31
|
+
* });
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
34
|
+
* ## Import
|
|
35
|
+
*
|
|
36
|
+
* SESv2 (Simple Email V2) Contact List can be imported using the `example_id_arg`, e.g.,
|
|
37
|
+
*
|
|
38
|
+
* ```sh
|
|
39
|
+
* $ pulumi import aws:sesv2/contactList:ContactList example example
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
export declare class ContactList extends pulumi.CustomResource {
|
|
43
|
+
/**
|
|
44
|
+
* Get an existing ContactList resource's state with the given name, ID, and optional extra
|
|
45
|
+
* properties used to qualify the lookup.
|
|
46
|
+
*
|
|
47
|
+
* @param name The _unique_ name of the resulting resource.
|
|
48
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
49
|
+
* @param state Any extra arguments used during the lookup.
|
|
50
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
51
|
+
*/
|
|
52
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ContactListState, opts?: pulumi.CustomResourceOptions): ContactList;
|
|
53
|
+
/**
|
|
54
|
+
* Returns true if the given object is an instance of ContactList. This is designed to work even
|
|
55
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
56
|
+
*/
|
|
57
|
+
static isInstance(obj: any): obj is ContactList;
|
|
58
|
+
readonly arn: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The name of the contact list.
|
|
61
|
+
*/
|
|
62
|
+
readonly contactListName: pulumi.Output<string>;
|
|
63
|
+
/**
|
|
64
|
+
* A timestamp noting when the contact list was created in ISO 8601 format.
|
|
65
|
+
*/
|
|
66
|
+
readonly createdTimestamp: pulumi.Output<string>;
|
|
67
|
+
/**
|
|
68
|
+
* A description of what the contact list is about.
|
|
69
|
+
*/
|
|
70
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
71
|
+
/**
|
|
72
|
+
* A timestamp noting the last time the contact list was updated in ISO 8601 format.
|
|
73
|
+
*/
|
|
74
|
+
readonly lastUpdatedTimestamp: pulumi.Output<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Key-value map of resource tags for the contact list. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
77
|
+
*/
|
|
78
|
+
readonly tags: pulumi.Output<{
|
|
79
|
+
[key: string]: string;
|
|
80
|
+
} | undefined>;
|
|
81
|
+
readonly tagsAll: pulumi.Output<{
|
|
82
|
+
[key: string]: string;
|
|
83
|
+
}>;
|
|
84
|
+
/**
|
|
85
|
+
* Configuration block(s) with topic for the contact list. Detailed below.
|
|
86
|
+
*/
|
|
87
|
+
readonly topics: pulumi.Output<outputs.sesv2.ContactListTopic[] | undefined>;
|
|
88
|
+
/**
|
|
89
|
+
* Create a ContactList resource with the given unique name, arguments, and options.
|
|
90
|
+
*
|
|
91
|
+
* @param name The _unique_ name of the resource.
|
|
92
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
93
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
94
|
+
*/
|
|
95
|
+
constructor(name: string, args: ContactListArgs, opts?: pulumi.CustomResourceOptions);
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Input properties used for looking up and filtering ContactList resources.
|
|
99
|
+
*/
|
|
100
|
+
export interface ContactListState {
|
|
101
|
+
arn?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* The name of the contact list.
|
|
104
|
+
*/
|
|
105
|
+
contactListName?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* A timestamp noting when the contact list was created in ISO 8601 format.
|
|
108
|
+
*/
|
|
109
|
+
createdTimestamp?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* A description of what the contact list is about.
|
|
112
|
+
*/
|
|
113
|
+
description?: pulumi.Input<string>;
|
|
114
|
+
/**
|
|
115
|
+
* A timestamp noting the last time the contact list was updated in ISO 8601 format.
|
|
116
|
+
*/
|
|
117
|
+
lastUpdatedTimestamp?: pulumi.Input<string>;
|
|
118
|
+
/**
|
|
119
|
+
* Key-value map of resource tags for the contact list. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
120
|
+
*/
|
|
121
|
+
tags?: pulumi.Input<{
|
|
122
|
+
[key: string]: pulumi.Input<string>;
|
|
123
|
+
}>;
|
|
124
|
+
tagsAll?: pulumi.Input<{
|
|
125
|
+
[key: string]: pulumi.Input<string>;
|
|
126
|
+
}>;
|
|
127
|
+
/**
|
|
128
|
+
* Configuration block(s) with topic for the contact list. Detailed below.
|
|
129
|
+
*/
|
|
130
|
+
topics?: pulumi.Input<pulumi.Input<inputs.sesv2.ContactListTopic>[]>;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* The set of arguments for constructing a ContactList resource.
|
|
134
|
+
*/
|
|
135
|
+
export interface ContactListArgs {
|
|
136
|
+
/**
|
|
137
|
+
* The name of the contact list.
|
|
138
|
+
*/
|
|
139
|
+
contactListName: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* A description of what the contact list is about.
|
|
142
|
+
*/
|
|
143
|
+
description?: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* Key-value map of resource tags for the contact list. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
|
|
146
|
+
*/
|
|
147
|
+
tags?: pulumi.Input<{
|
|
148
|
+
[key: string]: pulumi.Input<string>;
|
|
149
|
+
}>;
|
|
150
|
+
/**
|
|
151
|
+
* Configuration block(s) with topic for the contact list. Detailed below.
|
|
152
|
+
*/
|
|
153
|
+
topics?: pulumi.Input<pulumi.Input<inputs.sesv2.ContactListTopic>[]>;
|
|
154
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
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.ContactList = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource for managing an AWS SESv2 (Simple Email V2) Contact List.
|
|
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.ContactList("example", {contactListName: "example"});
|
|
19
|
+
* ```
|
|
20
|
+
* ### Extended Usage
|
|
21
|
+
*
|
|
22
|
+
* ```typescript
|
|
23
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
24
|
+
* import * as aws from "@pulumi/aws";
|
|
25
|
+
*
|
|
26
|
+
* const example = new aws.sesv2.ContactList("example", {
|
|
27
|
+
* contactListName: "example",
|
|
28
|
+
* description: "description",
|
|
29
|
+
* topics: [{
|
|
30
|
+
* defaultSubscriptionStatus: "OPT_IN",
|
|
31
|
+
* description: "topic description",
|
|
32
|
+
* displayName: "Example Topic",
|
|
33
|
+
* topicName: "example-topic",
|
|
34
|
+
* }],
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* ## Import
|
|
39
|
+
*
|
|
40
|
+
* SESv2 (Simple Email V2) Contact List can be imported using the `example_id_arg`, e.g.,
|
|
41
|
+
*
|
|
42
|
+
* ```sh
|
|
43
|
+
* $ pulumi import aws:sesv2/contactList:ContactList example example
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
class ContactList extends pulumi.CustomResource {
|
|
47
|
+
/**
|
|
48
|
+
* Get an existing ContactList resource's state with the given name, ID, and optional extra
|
|
49
|
+
* properties used to qualify the lookup.
|
|
50
|
+
*
|
|
51
|
+
* @param name The _unique_ name of the resulting resource.
|
|
52
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
53
|
+
* @param state Any extra arguments used during the lookup.
|
|
54
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
55
|
+
*/
|
|
56
|
+
static get(name, id, state, opts) {
|
|
57
|
+
return new ContactList(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Returns true if the given object is an instance of ContactList. This is designed to work even
|
|
61
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
62
|
+
*/
|
|
63
|
+
static isInstance(obj) {
|
|
64
|
+
if (obj === undefined || obj === null) {
|
|
65
|
+
return false;
|
|
66
|
+
}
|
|
67
|
+
return obj['__pulumiType'] === ContactList.__pulumiType;
|
|
68
|
+
}
|
|
69
|
+
constructor(name, argsOrState, opts) {
|
|
70
|
+
let resourceInputs = {};
|
|
71
|
+
opts = opts || {};
|
|
72
|
+
if (opts.id) {
|
|
73
|
+
const state = argsOrState;
|
|
74
|
+
resourceInputs["arn"] = state ? state.arn : undefined;
|
|
75
|
+
resourceInputs["contactListName"] = state ? state.contactListName : undefined;
|
|
76
|
+
resourceInputs["createdTimestamp"] = state ? state.createdTimestamp : undefined;
|
|
77
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
78
|
+
resourceInputs["lastUpdatedTimestamp"] = state ? state.lastUpdatedTimestamp : undefined;
|
|
79
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
80
|
+
resourceInputs["tagsAll"] = state ? state.tagsAll : undefined;
|
|
81
|
+
resourceInputs["topics"] = state ? state.topics : undefined;
|
|
82
|
+
}
|
|
83
|
+
else {
|
|
84
|
+
const args = argsOrState;
|
|
85
|
+
if ((!args || args.contactListName === undefined) && !opts.urn) {
|
|
86
|
+
throw new Error("Missing required property 'contactListName'");
|
|
87
|
+
}
|
|
88
|
+
resourceInputs["contactListName"] = args ? args.contactListName : undefined;
|
|
89
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
90
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
91
|
+
resourceInputs["topics"] = args ? args.topics : undefined;
|
|
92
|
+
resourceInputs["arn"] = undefined /*out*/;
|
|
93
|
+
resourceInputs["createdTimestamp"] = undefined /*out*/;
|
|
94
|
+
resourceInputs["lastUpdatedTimestamp"] = undefined /*out*/;
|
|
95
|
+
resourceInputs["tagsAll"] = undefined /*out*/;
|
|
96
|
+
}
|
|
97
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
98
|
+
super(ContactList.__pulumiType, name, resourceInputs, opts);
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
exports.ContactList = ContactList;
|
|
102
|
+
/** @internal */
|
|
103
|
+
ContactList.__pulumiType = 'aws:sesv2/contactList:ContactList';
|
|
104
|
+
//# sourceMappingURL=contactList.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contactList.js","sourceRoot":"","sources":["../../sesv2/contactList.ts"],"names":[],"mappings":"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"}
|
package/sesv2/index.d.ts
CHANGED
|
@@ -4,6 +4,9 @@ export declare const ConfigurationSet: typeof import("./configurationSet").Confi
|
|
|
4
4
|
export { ConfigurationSetEventDestinationArgs, ConfigurationSetEventDestinationState } from "./configurationSetEventDestination";
|
|
5
5
|
export type ConfigurationSetEventDestination = import("./configurationSetEventDestination").ConfigurationSetEventDestination;
|
|
6
6
|
export declare const ConfigurationSetEventDestination: typeof import("./configurationSetEventDestination").ConfigurationSetEventDestination;
|
|
7
|
+
export { ContactListArgs, ContactListState } from "./contactList";
|
|
8
|
+
export type ContactList = import("./contactList").ContactList;
|
|
9
|
+
export declare const ContactList: typeof import("./contactList").ContactList;
|
|
7
10
|
export { DedicatedIpAssignmentArgs, DedicatedIpAssignmentState } from "./dedicatedIpAssignment";
|
|
8
11
|
export type DedicatedIpAssignment = import("./dedicatedIpAssignment").DedicatedIpAssignment;
|
|
9
12
|
export declare const DedicatedIpAssignment: typeof import("./dedicatedIpAssignment").DedicatedIpAssignment;
|
package/sesv2/index.js
CHANGED
|
@@ -2,13 +2,15 @@
|
|
|
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.getDedicatedIpPoolOutput = exports.getDedicatedIpPool = exports.EmailIdentityMailFromAttributes = exports.EmailIdentityFeedbackAttributes = exports.EmailIdentity = exports.DedicatedIpPool = exports.DedicatedIpAssignment = exports.ConfigurationSetEventDestination = exports.ConfigurationSet = void 0;
|
|
5
|
+
exports.getDedicatedIpPoolOutput = exports.getDedicatedIpPool = exports.EmailIdentityMailFromAttributes = exports.EmailIdentityFeedbackAttributes = exports.EmailIdentity = exports.DedicatedIpPool = exports.DedicatedIpAssignment = exports.ContactList = exports.ConfigurationSetEventDestination = exports.ConfigurationSet = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.ConfigurationSet = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["ConfigurationSet"], () => require("./configurationSet"));
|
|
10
10
|
exports.ConfigurationSetEventDestination = null;
|
|
11
11
|
utilities.lazyLoad(exports, ["ConfigurationSetEventDestination"], () => require("./configurationSetEventDestination"));
|
|
12
|
+
exports.ContactList = null;
|
|
13
|
+
utilities.lazyLoad(exports, ["ContactList"], () => require("./contactList"));
|
|
12
14
|
exports.DedicatedIpAssignment = null;
|
|
13
15
|
utilities.lazyLoad(exports, ["DedicatedIpAssignment"], () => require("./dedicatedIpAssignment"));
|
|
14
16
|
exports.DedicatedIpPool = null;
|
|
@@ -30,6 +32,8 @@ const _module = {
|
|
|
30
32
|
return new exports.ConfigurationSet(name, undefined, { urn });
|
|
31
33
|
case "aws:sesv2/configurationSetEventDestination:ConfigurationSetEventDestination":
|
|
32
34
|
return new exports.ConfigurationSetEventDestination(name, undefined, { urn });
|
|
35
|
+
case "aws:sesv2/contactList:ContactList":
|
|
36
|
+
return new exports.ContactList(name, undefined, { urn });
|
|
33
37
|
case "aws:sesv2/dedicatedIpAssignment:DedicatedIpAssignment":
|
|
34
38
|
return new exports.DedicatedIpAssignment(name, undefined, { urn });
|
|
35
39
|
case "aws:sesv2/dedicatedIpPool:DedicatedIpPool":
|
|
@@ -47,6 +51,7 @@ const _module = {
|
|
|
47
51
|
};
|
|
48
52
|
pulumi.runtime.registerResourceModule("aws", "sesv2/configurationSet", _module);
|
|
49
53
|
pulumi.runtime.registerResourceModule("aws", "sesv2/configurationSetEventDestination", _module);
|
|
54
|
+
pulumi.runtime.registerResourceModule("aws", "sesv2/contactList", _module);
|
|
50
55
|
pulumi.runtime.registerResourceModule("aws", "sesv2/dedicatedIpAssignment", _module);
|
|
51
56
|
pulumi.runtime.registerResourceModule("aws", "sesv2/dedicatedIpPool", _module);
|
|
52
57
|
pulumi.runtime.registerResourceModule("aws", "sesv2/emailIdentity", _module);
|
package/sesv2/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../sesv2/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,gCAAgC,GAAyF,IAAW,CAAC;AAClJ,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kCAAkC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oCAAoC,CAAC,CAAC,CAAC;AAI1G,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,+BAA+B,GAAuF,IAAW,CAAC;AAC/I,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iCAAiC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mCAAmC,CAAC,CAAC,CAAC;AAIxG,QAAA,+BAA+B,GAAuF,IAAW,CAAC;AAC/I,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iCAAiC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mCAAmC,CAAC,CAAC,CAAC;AAGxG,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AAC3F,QAAA,wBAAwB,GAAmE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAC,0BAA0B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAGtH,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,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,6EAA6E;gBAC9E,OAAO,IAAI,wCAAgC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9E,KAAK,uDAAuD;gBACxD,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,2EAA2E;gBAC5E,OAAO,IAAI,uCAA+B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7E,KAAK,2EAA2E;gBAC5E,OAAO,IAAI,uCAA+B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7E;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,wCAAwC,EAAE,OAAO,CAAC,CAAA;AAC/F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,6BAA6B,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,uCAAuC,EAAE,OAAO,CAAC,CAAA;AAC9F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,uCAAuC,EAAE,OAAO,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../sesv2/index.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -5206,11 +5206,35 @@ export declare namespace appmesh {
|
|
|
5206
5206
|
file?: pulumi.Input<inputs.appmesh.VirtualGatewaySpecLoggingAccessLogFile>;
|
|
5207
5207
|
}
|
|
5208
5208
|
interface VirtualGatewaySpecLoggingAccessLogFile {
|
|
5209
|
+
/**
|
|
5210
|
+
* The specified format for the logs.
|
|
5211
|
+
*/
|
|
5212
|
+
format?: pulumi.Input<inputs.appmesh.VirtualGatewaySpecLoggingAccessLogFileFormat>;
|
|
5209
5213
|
/**
|
|
5210
5214
|
* File path to write access logs to. You can use `/dev/stdout` to send access logs to standard out. Must be between 1 and 255 characters in length.
|
|
5211
5215
|
*/
|
|
5212
5216
|
path: pulumi.Input<string>;
|
|
5213
5217
|
}
|
|
5218
|
+
interface VirtualGatewaySpecLoggingAccessLogFileFormat {
|
|
5219
|
+
/**
|
|
5220
|
+
* The logging format for JSON.
|
|
5221
|
+
*/
|
|
5222
|
+
jsons?: pulumi.Input<pulumi.Input<inputs.appmesh.VirtualGatewaySpecLoggingAccessLogFileFormatJson>[]>;
|
|
5223
|
+
/**
|
|
5224
|
+
* The logging format for text. Must be between 1 and 1000 characters in length.
|
|
5225
|
+
*/
|
|
5226
|
+
text?: pulumi.Input<string>;
|
|
5227
|
+
}
|
|
5228
|
+
interface VirtualGatewaySpecLoggingAccessLogFileFormatJson {
|
|
5229
|
+
/**
|
|
5230
|
+
* The specified key for the JSON. Must be between 1 and 100 characters in length.
|
|
5231
|
+
*/
|
|
5232
|
+
key: pulumi.Input<string>;
|
|
5233
|
+
/**
|
|
5234
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5235
|
+
*/
|
|
5236
|
+
value: pulumi.Input<string>;
|
|
5237
|
+
}
|
|
5214
5238
|
interface VirtualNodeSpec {
|
|
5215
5239
|
/**
|
|
5216
5240
|
* Defaults for backends.
|
|
@@ -5600,7 +5624,7 @@ export declare namespace appmesh {
|
|
|
5600
5624
|
*/
|
|
5601
5625
|
unit: pulumi.Input<string>;
|
|
5602
5626
|
/**
|
|
5603
|
-
*
|
|
5627
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5604
5628
|
*/
|
|
5605
5629
|
value: pulumi.Input<number>;
|
|
5606
5630
|
}
|
|
@@ -5658,7 +5682,7 @@ export declare namespace appmesh {
|
|
|
5658
5682
|
*/
|
|
5659
5683
|
unit: pulumi.Input<string>;
|
|
5660
5684
|
/**
|
|
5661
|
-
*
|
|
5685
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5662
5686
|
*/
|
|
5663
5687
|
value: pulumi.Input<number>;
|
|
5664
5688
|
}
|
|
@@ -5698,7 +5722,7 @@ export declare namespace appmesh {
|
|
|
5698
5722
|
*/
|
|
5699
5723
|
unit: pulumi.Input<string>;
|
|
5700
5724
|
/**
|
|
5701
|
-
*
|
|
5725
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5702
5726
|
*/
|
|
5703
5727
|
value: pulumi.Input<number>;
|
|
5704
5728
|
}
|
|
@@ -5718,7 +5742,7 @@ export declare namespace appmesh {
|
|
|
5718
5742
|
*/
|
|
5719
5743
|
unit: pulumi.Input<string>;
|
|
5720
5744
|
/**
|
|
5721
|
-
*
|
|
5745
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5722
5746
|
*/
|
|
5723
5747
|
value: pulumi.Input<number>;
|
|
5724
5748
|
}
|
|
@@ -5845,11 +5869,35 @@ export declare namespace appmesh {
|
|
|
5845
5869
|
file?: pulumi.Input<inputs.appmesh.VirtualNodeSpecLoggingAccessLogFile>;
|
|
5846
5870
|
}
|
|
5847
5871
|
interface VirtualNodeSpecLoggingAccessLogFile {
|
|
5872
|
+
/**
|
|
5873
|
+
* The specified format for the logs.
|
|
5874
|
+
*/
|
|
5875
|
+
format?: pulumi.Input<inputs.appmesh.VirtualNodeSpecLoggingAccessLogFileFormat>;
|
|
5848
5876
|
/**
|
|
5849
5877
|
* File path to write access logs to. You can use `/dev/stdout` to send access logs to standard out. Must be between 1 and 255 characters in length.
|
|
5850
5878
|
*/
|
|
5851
5879
|
path: pulumi.Input<string>;
|
|
5852
5880
|
}
|
|
5881
|
+
interface VirtualNodeSpecLoggingAccessLogFileFormat {
|
|
5882
|
+
/**
|
|
5883
|
+
* The logging format for JSON.
|
|
5884
|
+
*/
|
|
5885
|
+
jsons?: pulumi.Input<pulumi.Input<inputs.appmesh.VirtualNodeSpecLoggingAccessLogFileFormatJson>[]>;
|
|
5886
|
+
/**
|
|
5887
|
+
* The logging format for text. Must be between 1 and 1000 characters in length.
|
|
5888
|
+
*/
|
|
5889
|
+
text?: pulumi.Input<string>;
|
|
5890
|
+
}
|
|
5891
|
+
interface VirtualNodeSpecLoggingAccessLogFileFormatJson {
|
|
5892
|
+
/**
|
|
5893
|
+
* The specified key for the JSON. Must be between 1 and 100 characters in length.
|
|
5894
|
+
*/
|
|
5895
|
+
key: pulumi.Input<string>;
|
|
5896
|
+
/**
|
|
5897
|
+
* The specified value for the JSON. Must be between 1 and 100 characters in length.
|
|
5898
|
+
*/
|
|
5899
|
+
value: pulumi.Input<string>;
|
|
5900
|
+
}
|
|
5853
5901
|
interface VirtualNodeSpecServiceDiscovery {
|
|
5854
5902
|
/**
|
|
5855
5903
|
* Any AWS Cloud Map information for the virtual node.
|
|
@@ -11303,7 +11351,7 @@ export declare namespace codepipeline {
|
|
|
11303
11351
|
export declare namespace codestarconnections {
|
|
11304
11352
|
interface HostVpcConfiguration {
|
|
11305
11353
|
/**
|
|
11306
|
-
*
|
|
11354
|
+
* ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
|
|
11307
11355
|
*/
|
|
11308
11356
|
securityGroupIds: pulumi.Input<pulumi.Input<string>[]>;
|
|
11309
11357
|
/**
|
|
@@ -11528,11 +11576,15 @@ export declare namespace cognito {
|
|
|
11528
11576
|
}
|
|
11529
11577
|
interface RiskConfigurationRiskExceptionConfiguration {
|
|
11530
11578
|
/**
|
|
11531
|
-
* Overrides the risk decision to always block the pre-authentication requests.
|
|
11579
|
+
* Overrides the risk decision to always block the pre-authentication requests.
|
|
11580
|
+
* The IP range is in CIDR notation, a compact representation of an IP address and its routing prefix.
|
|
11581
|
+
* Can contain a maximum of 200 items.
|
|
11532
11582
|
*/
|
|
11533
11583
|
blockedIpRangeLists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11534
11584
|
/**
|
|
11535
|
-
* Risk detection isn't performed on the IP addresses in this range list.
|
|
11585
|
+
* Risk detection isn't performed on the IP addresses in this range list.
|
|
11586
|
+
* The IP range is in CIDR notation.
|
|
11587
|
+
* Can contain a maximum of 200 items.
|
|
11536
11588
|
*/
|
|
11537
11589
|
skippedIpRangeLists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11538
11590
|
}
|
|
@@ -43395,6 +43447,24 @@ export declare namespace sesv2 {
|
|
|
43395
43447
|
*/
|
|
43396
43448
|
optimizedSharedDelivery?: pulumi.Input<string>;
|
|
43397
43449
|
}
|
|
43450
|
+
interface ContactListTopic {
|
|
43451
|
+
/**
|
|
43452
|
+
* The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.
|
|
43453
|
+
*/
|
|
43454
|
+
defaultSubscriptionStatus: pulumi.Input<string>;
|
|
43455
|
+
/**
|
|
43456
|
+
* A description of what the topic is about, which the contact will see.
|
|
43457
|
+
*/
|
|
43458
|
+
description?: pulumi.Input<string>;
|
|
43459
|
+
/**
|
|
43460
|
+
* The name of the topic the contact will see.
|
|
43461
|
+
*/
|
|
43462
|
+
displayName: pulumi.Input<string>;
|
|
43463
|
+
/**
|
|
43464
|
+
* The name of the topic.
|
|
43465
|
+
*/
|
|
43466
|
+
topicName: pulumi.Input<string>;
|
|
43467
|
+
}
|
|
43398
43468
|
interface EmailIdentityDkimSigningAttributes {
|
|
43399
43469
|
/**
|
|
43400
43470
|
* [Easy DKIM] The key length of the DKIM key pair in use.
|