@pulumi/aws 4.20.0 → 4.21.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/apprunner/service.d.ts +1 -1
- package/apprunner/service.js +1 -1
- package/autoscaling/group.d.ts +6 -6
- package/cfg/deliveryChannel.d.ts +12 -0
- package/cfg/deliveryChannel.js +2 -0
- package/cfg/deliveryChannel.js.map +1 -1
- package/chime/index.d.ts +1 -0
- package/chime/index.js +5 -0
- package/chime/index.js.map +1 -1
- package/chime/voiceConnectorLogging.d.ts +84 -0
- package/chime/voiceConnectorLogging.js +80 -0
- package/chime/voiceConnectorLogging.js.map +1 -0
- package/cloudfront/keyGroup.d.ts +8 -0
- package/cloudfront/keyGroup.js +8 -0
- package/cloudfront/keyGroup.js.map +1 -1
- package/cloudtrail/trail.d.ts +147 -10
- package/cloudtrail/trail.js +131 -4
- package/cloudtrail/trail.js.map +1 -1
- package/dms/replicationInstance.d.ts +8 -0
- package/dms/replicationInstance.js +8 -0
- package/dms/replicationInstance.js.map +1 -1
- package/ec2clientvpn/endpoint.d.ts +12 -0
- package/ec2clientvpn/endpoint.js +2 -0
- package/ec2clientvpn/endpoint.js.map +1 -1
- package/efs/fileSystemPolicy.d.ts +13 -0
- package/efs/fileSystemPolicy.js +3 -0
- package/efs/fileSystemPolicy.js.map +1 -1
- package/eks/getClusters.d.ts +18 -0
- package/eks/getClusters.js +21 -0
- package/eks/getClusters.js.map +1 -0
- package/eks/getNodeGroup.d.ts +108 -0
- package/eks/getNodeGroup.js +37 -0
- package/eks/getNodeGroup.js.map +1 -0
- package/eks/getNodeGroups.d.ts +43 -0
- package/eks/getNodeGroups.js +38 -0
- package/eks/getNodeGroups.js.map +1 -0
- package/eks/index.d.ts +3 -0
- package/eks/index.js +3 -0
- package/eks/index.js.map +1 -1
- package/iam/role.d.ts +1 -1
- package/imagebuilder/infrastructureConfiguration.d.ts +1 -1
- package/imagebuilder/infrastructureConfiguration.js +1 -1
- package/lambda/function.d.ts +4 -1
- package/lambda/function.js +4 -1
- package/lambda/function.js.map +1 -1
- package/lambda/permission.d.ts +2 -2
- package/lambda/permission.js +2 -2
- package/networkfirewall/ruleGroup.d.ts +50 -0
- package/networkfirewall/ruleGroup.js +50 -0
- package/networkfirewall/ruleGroup.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/sagemaker/endpointConfiguration.d.ts +12 -0
- package/sagemaker/endpointConfiguration.js +2 -0
- package/sagemaker/endpointConfiguration.js.map +1 -1
- package/storagegateway/smbFileShare.d.ts +3 -3
- package/transfer/access.d.ts +167 -0
- package/transfer/access.js +114 -0
- package/transfer/access.js.map +1 -0
- package/transfer/index.d.ts +1 -0
- package/transfer/index.js +5 -0
- package/transfer/index.js.map +1 -1
- package/transfer/server.d.ts +12 -0
- package/transfer/server.js +2 -0
- package/transfer/server.js.map +1 -1
- package/types/input.d.ts +118 -5
- package/types/output.d.ts +158 -5
- package/waf/webAcl.d.ts +2 -0
- package/waf/webAcl.js +2 -0
- package/waf/webAcl.js.map +1 -1
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Provides a AWS Transfer Access resource.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
* ### Basic S3
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as aws from "@pulumi/aws";
|
|
12
|
+
*
|
|
13
|
+
* const example = new aws.transfer.Access("example", {
|
|
14
|
+
* externalId: "S-1-1-12-1234567890-123456789-1234567890-1234",
|
|
15
|
+
* serverId: aws_transfer_server.example.id,
|
|
16
|
+
* role: aws_iam_role.example.arn,
|
|
17
|
+
* homeDirectory: `/${aws_s3_bucket.example.id}/`,
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
* ### Basic EFS
|
|
21
|
+
*
|
|
22
|
+
* ```typescript
|
|
23
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
24
|
+
* import * as aws from "@pulumi/aws";
|
|
25
|
+
*
|
|
26
|
+
* const test = new aws.transfer.Access("test", {
|
|
27
|
+
* externalId: "S-1-1-12-1234567890-123456789-1234567890-1234",
|
|
28
|
+
* serverId: aws_transfer_server.test.id,
|
|
29
|
+
* role: aws_iam_role.test.arn,
|
|
30
|
+
* homeDirectory: `/${aws_efs_file_system.test.id}/`,
|
|
31
|
+
* posixProfile: {
|
|
32
|
+
* gid: 1000,
|
|
33
|
+
* uid: 1000,
|
|
34
|
+
* },
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* ## Import
|
|
39
|
+
*
|
|
40
|
+
* Transfer Accesses can be imported using the `server_id` and `external_id`, e.g.
|
|
41
|
+
*
|
|
42
|
+
* ```sh
|
|
43
|
+
* $ pulumi import aws:transfer/access:Access example s-12345678/S-1-1-12-1234567890-123456789-1234567890-1234
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
export declare class Access extends pulumi.CustomResource {
|
|
47
|
+
/**
|
|
48
|
+
* Get an existing Access 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: string, id: pulumi.Input<pulumi.ID>, state?: AccessState, opts?: pulumi.CustomResourceOptions): Access;
|
|
57
|
+
/**
|
|
58
|
+
* Returns true if the given object is an instance of Access. This is designed to work even
|
|
59
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
60
|
+
*/
|
|
61
|
+
static isInstance(obj: any): obj is Access;
|
|
62
|
+
/**
|
|
63
|
+
* The SID of a group in the directory connected to the Transfer Server (e.g. `S-1-1-12-1234567890-123456789-1234567890-1234`)
|
|
64
|
+
*/
|
|
65
|
+
readonly externalId: pulumi.Output<string>;
|
|
66
|
+
/**
|
|
67
|
+
* The landing directory (folder) for a user when they log in to the server using their SFTP client. It should begin with a `/`. The first item in the path is the name of the home bucket (accessible as `${Transfer:HomeBucket}` in the policy) and the rest is the home directory (accessible as `${Transfer:HomeDirectory}` in the policy). For example, `/example-bucket-1234/username` would set the home bucket to `example-bucket-1234` and the home directory to `username`.
|
|
68
|
+
*/
|
|
69
|
+
readonly homeDirectory: pulumi.Output<string | undefined>;
|
|
70
|
+
/**
|
|
71
|
+
* Logical directory mappings that specify what S3 paths and keys should be visible to your user and how you want to make them visible. See Home Directory Mappings below.
|
|
72
|
+
*/
|
|
73
|
+
readonly homeDirectoryMappings: pulumi.Output<outputs.transfer.AccessHomeDirectoryMapping[] | undefined>;
|
|
74
|
+
/**
|
|
75
|
+
* The type of landing directory (folder) you mapped for your users' home directory. Valid values are `PATH` and `LOGICAL`.
|
|
76
|
+
*/
|
|
77
|
+
readonly homeDirectoryType: pulumi.Output<string | undefined>;
|
|
78
|
+
readonly policy: pulumi.Output<string | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* Specifies the full POSIX identity, including user ID (Uid), group ID (Gid), and any secondary groups IDs (SecondaryGids), that controls your users' access to your Amazon EFS file systems. See Posix Profile below.
|
|
81
|
+
*/
|
|
82
|
+
readonly posixProfile: pulumi.Output<outputs.transfer.AccessPosixProfile | undefined>;
|
|
83
|
+
/**
|
|
84
|
+
* Amazon Resource Name (ARN) of an IAM role that allows the service to controls your user’s access to your Amazon S3 bucket.
|
|
85
|
+
*/
|
|
86
|
+
readonly role: pulumi.Output<string | undefined>;
|
|
87
|
+
/**
|
|
88
|
+
* The Server ID of the Transfer Server (e.g. `s-12345678`)
|
|
89
|
+
*/
|
|
90
|
+
readonly serverId: pulumi.Output<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Create a Access resource with the given unique name, arguments, and options.
|
|
93
|
+
*
|
|
94
|
+
* @param name The _unique_ name of the resource.
|
|
95
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
96
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
97
|
+
*/
|
|
98
|
+
constructor(name: string, args: AccessArgs, opts?: pulumi.CustomResourceOptions);
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Input properties used for looking up and filtering Access resources.
|
|
102
|
+
*/
|
|
103
|
+
export interface AccessState {
|
|
104
|
+
/**
|
|
105
|
+
* The SID of a group in the directory connected to the Transfer Server (e.g. `S-1-1-12-1234567890-123456789-1234567890-1234`)
|
|
106
|
+
*/
|
|
107
|
+
externalId?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* The landing directory (folder) for a user when they log in to the server using their SFTP client. It should begin with a `/`. The first item in the path is the name of the home bucket (accessible as `${Transfer:HomeBucket}` in the policy) and the rest is the home directory (accessible as `${Transfer:HomeDirectory}` in the policy). For example, `/example-bucket-1234/username` would set the home bucket to `example-bucket-1234` and the home directory to `username`.
|
|
110
|
+
*/
|
|
111
|
+
homeDirectory?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* Logical directory mappings that specify what S3 paths and keys should be visible to your user and how you want to make them visible. See Home Directory Mappings below.
|
|
114
|
+
*/
|
|
115
|
+
homeDirectoryMappings?: pulumi.Input<pulumi.Input<inputs.transfer.AccessHomeDirectoryMapping>[]>;
|
|
116
|
+
/**
|
|
117
|
+
* The type of landing directory (folder) you mapped for your users' home directory. Valid values are `PATH` and `LOGICAL`.
|
|
118
|
+
*/
|
|
119
|
+
homeDirectoryType?: pulumi.Input<string>;
|
|
120
|
+
policy?: pulumi.Input<string>;
|
|
121
|
+
/**
|
|
122
|
+
* Specifies the full POSIX identity, including user ID (Uid), group ID (Gid), and any secondary groups IDs (SecondaryGids), that controls your users' access to your Amazon EFS file systems. See Posix Profile below.
|
|
123
|
+
*/
|
|
124
|
+
posixProfile?: pulumi.Input<inputs.transfer.AccessPosixProfile>;
|
|
125
|
+
/**
|
|
126
|
+
* Amazon Resource Name (ARN) of an IAM role that allows the service to controls your user’s access to your Amazon S3 bucket.
|
|
127
|
+
*/
|
|
128
|
+
role?: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* The Server ID of the Transfer Server (e.g. `s-12345678`)
|
|
131
|
+
*/
|
|
132
|
+
serverId?: pulumi.Input<string>;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* The set of arguments for constructing a Access resource.
|
|
136
|
+
*/
|
|
137
|
+
export interface AccessArgs {
|
|
138
|
+
/**
|
|
139
|
+
* The SID of a group in the directory connected to the Transfer Server (e.g. `S-1-1-12-1234567890-123456789-1234567890-1234`)
|
|
140
|
+
*/
|
|
141
|
+
externalId: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* The landing directory (folder) for a user when they log in to the server using their SFTP client. It should begin with a `/`. The first item in the path is the name of the home bucket (accessible as `${Transfer:HomeBucket}` in the policy) and the rest is the home directory (accessible as `${Transfer:HomeDirectory}` in the policy). For example, `/example-bucket-1234/username` would set the home bucket to `example-bucket-1234` and the home directory to `username`.
|
|
144
|
+
*/
|
|
145
|
+
homeDirectory?: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* Logical directory mappings that specify what S3 paths and keys should be visible to your user and how you want to make them visible. See Home Directory Mappings below.
|
|
148
|
+
*/
|
|
149
|
+
homeDirectoryMappings?: pulumi.Input<pulumi.Input<inputs.transfer.AccessHomeDirectoryMapping>[]>;
|
|
150
|
+
/**
|
|
151
|
+
* The type of landing directory (folder) you mapped for your users' home directory. Valid values are `PATH` and `LOGICAL`.
|
|
152
|
+
*/
|
|
153
|
+
homeDirectoryType?: pulumi.Input<string>;
|
|
154
|
+
policy?: pulumi.Input<string>;
|
|
155
|
+
/**
|
|
156
|
+
* Specifies the full POSIX identity, including user ID (Uid), group ID (Gid), and any secondary groups IDs (SecondaryGids), that controls your users' access to your Amazon EFS file systems. See Posix Profile below.
|
|
157
|
+
*/
|
|
158
|
+
posixProfile?: pulumi.Input<inputs.transfer.AccessPosixProfile>;
|
|
159
|
+
/**
|
|
160
|
+
* Amazon Resource Name (ARN) of an IAM role that allows the service to controls your user’s access to your Amazon S3 bucket.
|
|
161
|
+
*/
|
|
162
|
+
role?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* The Server ID of the Transfer Server (e.g. `s-12345678`)
|
|
165
|
+
*/
|
|
166
|
+
serverId: pulumi.Input<string>;
|
|
167
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
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.Access = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a AWS Transfer Access resource.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
* ### Basic S3
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as aws from "@pulumi/aws";
|
|
17
|
+
*
|
|
18
|
+
* const example = new aws.transfer.Access("example", {
|
|
19
|
+
* externalId: "S-1-1-12-1234567890-123456789-1234567890-1234",
|
|
20
|
+
* serverId: aws_transfer_server.example.id,
|
|
21
|
+
* role: aws_iam_role.example.arn,
|
|
22
|
+
* homeDirectory: `/${aws_s3_bucket.example.id}/`,
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
* ### Basic EFS
|
|
26
|
+
*
|
|
27
|
+
* ```typescript
|
|
28
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
29
|
+
* import * as aws from "@pulumi/aws";
|
|
30
|
+
*
|
|
31
|
+
* const test = new aws.transfer.Access("test", {
|
|
32
|
+
* externalId: "S-1-1-12-1234567890-123456789-1234567890-1234",
|
|
33
|
+
* serverId: aws_transfer_server.test.id,
|
|
34
|
+
* role: aws_iam_role.test.arn,
|
|
35
|
+
* homeDirectory: `/${aws_efs_file_system.test.id}/`,
|
|
36
|
+
* posixProfile: {
|
|
37
|
+
* gid: 1000,
|
|
38
|
+
* uid: 1000,
|
|
39
|
+
* },
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* ## Import
|
|
44
|
+
*
|
|
45
|
+
* Transfer Accesses can be imported using the `server_id` and `external_id`, e.g.
|
|
46
|
+
*
|
|
47
|
+
* ```sh
|
|
48
|
+
* $ pulumi import aws:transfer/access:Access example s-12345678/S-1-1-12-1234567890-123456789-1234567890-1234
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
class Access extends pulumi.CustomResource {
|
|
52
|
+
constructor(name, argsOrState, opts) {
|
|
53
|
+
let inputs = {};
|
|
54
|
+
opts = opts || {};
|
|
55
|
+
if (opts.id) {
|
|
56
|
+
const state = argsOrState;
|
|
57
|
+
inputs["externalId"] = state ? state.externalId : undefined;
|
|
58
|
+
inputs["homeDirectory"] = state ? state.homeDirectory : undefined;
|
|
59
|
+
inputs["homeDirectoryMappings"] = state ? state.homeDirectoryMappings : undefined;
|
|
60
|
+
inputs["homeDirectoryType"] = state ? state.homeDirectoryType : undefined;
|
|
61
|
+
inputs["policy"] = state ? state.policy : undefined;
|
|
62
|
+
inputs["posixProfile"] = state ? state.posixProfile : undefined;
|
|
63
|
+
inputs["role"] = state ? state.role : undefined;
|
|
64
|
+
inputs["serverId"] = state ? state.serverId : undefined;
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
const args = argsOrState;
|
|
68
|
+
if ((!args || args.externalId === undefined) && !opts.urn) {
|
|
69
|
+
throw new Error("Missing required property 'externalId'");
|
|
70
|
+
}
|
|
71
|
+
if ((!args || args.serverId === undefined) && !opts.urn) {
|
|
72
|
+
throw new Error("Missing required property 'serverId'");
|
|
73
|
+
}
|
|
74
|
+
inputs["externalId"] = args ? args.externalId : undefined;
|
|
75
|
+
inputs["homeDirectory"] = args ? args.homeDirectory : undefined;
|
|
76
|
+
inputs["homeDirectoryMappings"] = args ? args.homeDirectoryMappings : undefined;
|
|
77
|
+
inputs["homeDirectoryType"] = args ? args.homeDirectoryType : undefined;
|
|
78
|
+
inputs["policy"] = args ? args.policy : undefined;
|
|
79
|
+
inputs["posixProfile"] = args ? args.posixProfile : undefined;
|
|
80
|
+
inputs["role"] = args ? args.role : undefined;
|
|
81
|
+
inputs["serverId"] = args ? args.serverId : undefined;
|
|
82
|
+
}
|
|
83
|
+
if (!opts.version) {
|
|
84
|
+
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
85
|
+
}
|
|
86
|
+
super(Access.__pulumiType, name, inputs, opts);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Get an existing Access resource's state with the given name, ID, and optional extra
|
|
90
|
+
* properties used to qualify the lookup.
|
|
91
|
+
*
|
|
92
|
+
* @param name The _unique_ name of the resulting resource.
|
|
93
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
94
|
+
* @param state Any extra arguments used during the lookup.
|
|
95
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
96
|
+
*/
|
|
97
|
+
static get(name, id, state, opts) {
|
|
98
|
+
return new Access(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Returns true if the given object is an instance of Access. This is designed to work even
|
|
102
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
103
|
+
*/
|
|
104
|
+
static isInstance(obj) {
|
|
105
|
+
if (obj === undefined || obj === null) {
|
|
106
|
+
return false;
|
|
107
|
+
}
|
|
108
|
+
return obj['__pulumiType'] === Access.__pulumiType;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
exports.Access = Access;
|
|
112
|
+
/** @internal */
|
|
113
|
+
Access.__pulumiType = 'aws:transfer/access:Access';
|
|
114
|
+
//# sourceMappingURL=access.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"access.js","sourceRoot":"","sources":["../../transfer/access.ts"],"names":[],"mappings":"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"}
|
package/transfer/index.d.ts
CHANGED
package/transfer/index.js
CHANGED
|
@@ -15,11 +15,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
15
15
|
const pulumi = require("@pulumi/pulumi");
|
|
16
16
|
const utilities = require("../utilities");
|
|
17
17
|
// Export members:
|
|
18
|
+
__exportStar(require("./access"), exports);
|
|
18
19
|
__exportStar(require("./getServer"), exports);
|
|
19
20
|
__exportStar(require("./server"), exports);
|
|
20
21
|
__exportStar(require("./sshKey"), exports);
|
|
21
22
|
__exportStar(require("./user"), exports);
|
|
22
23
|
// Import resources to register:
|
|
24
|
+
const access_1 = require("./access");
|
|
23
25
|
const server_1 = require("./server");
|
|
24
26
|
const sshKey_1 = require("./sshKey");
|
|
25
27
|
const user_1 = require("./user");
|
|
@@ -27,6 +29,8 @@ const _module = {
|
|
|
27
29
|
version: utilities.getVersion(),
|
|
28
30
|
construct: (name, type, urn) => {
|
|
29
31
|
switch (type) {
|
|
32
|
+
case "aws:transfer/access:Access":
|
|
33
|
+
return new access_1.Access(name, undefined, { urn });
|
|
30
34
|
case "aws:transfer/server:Server":
|
|
31
35
|
return new server_1.Server(name, undefined, { urn });
|
|
32
36
|
case "aws:transfer/sshKey:SshKey":
|
|
@@ -38,6 +42,7 @@ const _module = {
|
|
|
38
42
|
}
|
|
39
43
|
},
|
|
40
44
|
};
|
|
45
|
+
pulumi.runtime.registerResourceModule("aws", "transfer/access", _module);
|
|
41
46
|
pulumi.runtime.registerResourceModule("aws", "transfer/server", _module);
|
|
42
47
|
pulumi.runtime.registerResourceModule("aws", "transfer/sshKey", _module);
|
|
43
48
|
pulumi.runtime.registerResourceModule("aws", "transfer/user", _module);
|
package/transfer/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../transfer/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,kBAAkB;AAClB,8CAA4B;AAC5B,2CAAyB;AACzB,2CAAyB;AACzB,yCAAuB;AAEvB,gCAAgC;AAChC,qCAAkC;AAClC,qCAAkC;AAClC,iCAA8B;AAE9B,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,4BAA4B;gBAC7B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,4BAA4B;gBAC7B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,wBAAwB;gBACzB,OAAO,IAAI,WAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,eAAe,EAAE,OAAO,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../transfer/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,kBAAkB;AAClB,2CAAyB;AACzB,8CAA4B;AAC5B,2CAAyB;AACzB,2CAAyB;AACzB,yCAAuB;AAEvB,gCAAgC;AAChC,qCAAkC;AAClC,qCAAkC;AAClC,qCAAkC;AAClC,iCAA8B;AAE9B,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,4BAA4B;gBAC7B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,4BAA4B;gBAC7B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,4BAA4B;gBAC7B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,wBAAwB;gBACzB,OAAO,IAAI,WAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,eAAe,EAAE,OAAO,CAAC,CAAA"}
|
package/transfer/server.d.ts
CHANGED
|
@@ -99,6 +99,10 @@ export declare class Server extends pulumi.CustomResource {
|
|
|
99
99
|
* The Amazon Resource Name (ARN) of the AWS Certificate Manager (ACM) certificate. This is required when `protocols` is set to `FTPS`
|
|
100
100
|
*/
|
|
101
101
|
readonly certificate: pulumi.Output<string | undefined>;
|
|
102
|
+
/**
|
|
103
|
+
* The directory service id of the directory service you want to connect to.
|
|
104
|
+
*/
|
|
105
|
+
readonly directoryId: pulumi.Output<string | undefined>;
|
|
102
106
|
/**
|
|
103
107
|
* The domain of the storage system that is used for file transfers. Valid values are: `S3` and `EFS`. The default value is `S3`.
|
|
104
108
|
*/
|
|
@@ -181,6 +185,10 @@ export interface ServerState {
|
|
|
181
185
|
* The Amazon Resource Name (ARN) of the AWS Certificate Manager (ACM) certificate. This is required when `protocols` is set to `FTPS`
|
|
182
186
|
*/
|
|
183
187
|
certificate?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* The directory service id of the directory service you want to connect to.
|
|
190
|
+
*/
|
|
191
|
+
directoryId?: pulumi.Input<string>;
|
|
184
192
|
/**
|
|
185
193
|
* The domain of the storage system that is used for file transfers. Valid values are: `S3` and `EFS`. The default value is `S3`.
|
|
186
194
|
*/
|
|
@@ -251,6 +259,10 @@ export interface ServerArgs {
|
|
|
251
259
|
* The Amazon Resource Name (ARN) of the AWS Certificate Manager (ACM) certificate. This is required when `protocols` is set to `FTPS`
|
|
252
260
|
*/
|
|
253
261
|
certificate?: pulumi.Input<string>;
|
|
262
|
+
/**
|
|
263
|
+
* The directory service id of the directory service you want to connect to.
|
|
264
|
+
*/
|
|
265
|
+
directoryId?: pulumi.Input<string>;
|
|
254
266
|
/**
|
|
255
267
|
* The domain of the storage system that is used for file transfers. Valid values are: `S3` and `EFS`. The default value is `S3`.
|
|
256
268
|
*/
|
package/transfer/server.js
CHANGED
|
@@ -88,6 +88,7 @@ class Server extends pulumi.CustomResource {
|
|
|
88
88
|
const state = argsOrState;
|
|
89
89
|
inputs["arn"] = state ? state.arn : undefined;
|
|
90
90
|
inputs["certificate"] = state ? state.certificate : undefined;
|
|
91
|
+
inputs["directoryId"] = state ? state.directoryId : undefined;
|
|
91
92
|
inputs["domain"] = state ? state.domain : undefined;
|
|
92
93
|
inputs["endpoint"] = state ? state.endpoint : undefined;
|
|
93
94
|
inputs["endpointDetails"] = state ? state.endpointDetails : undefined;
|
|
@@ -107,6 +108,7 @@ class Server extends pulumi.CustomResource {
|
|
|
107
108
|
else {
|
|
108
109
|
const args = argsOrState;
|
|
109
110
|
inputs["certificate"] = args ? args.certificate : undefined;
|
|
111
|
+
inputs["directoryId"] = args ? args.directoryId : undefined;
|
|
110
112
|
inputs["domain"] = args ? args.domain : undefined;
|
|
111
113
|
inputs["endpointDetails"] = args ? args.endpointDetails : undefined;
|
|
112
114
|
inputs["endpointType"] = args ? args.endpointType : undefined;
|
package/transfer/server.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server.js","sourceRoot":"","sources":["../../transfer/server.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0EG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"server.js","sourceRoot":"","sources":["../../transfer/server.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -3882,7 +3882,7 @@ export declare namespace apprunner {
|
|
|
3882
3882
|
*/
|
|
3883
3883
|
port?: pulumi.Input<string>;
|
|
3884
3884
|
/**
|
|
3885
|
-
* A runtime environment type for building and running an App Runner service. Represents a programming language runtime. Valid values: `
|
|
3885
|
+
* A runtime environment type for building and running an App Runner service. Represents a programming language runtime. Valid values: `PYTHON_3`, `NODEJS_12`.
|
|
3886
3886
|
*/
|
|
3887
3887
|
runtime: pulumi.Input<string>;
|
|
3888
3888
|
/**
|
|
@@ -5988,6 +5988,46 @@ export declare namespace cloudhsmv2 {
|
|
|
5988
5988
|
}
|
|
5989
5989
|
}
|
|
5990
5990
|
export declare namespace cloudtrail {
|
|
5991
|
+
interface TrailAdvancedEventSelector {
|
|
5992
|
+
/**
|
|
5993
|
+
* Specifies the selector statements in an advanced event selector. Fields documented below.
|
|
5994
|
+
*/
|
|
5995
|
+
fieldSelectors: pulumi.Input<pulumi.Input<inputs.cloudtrail.TrailAdvancedEventSelectorFieldSelector>[]>;
|
|
5996
|
+
/**
|
|
5997
|
+
* Specifies the name of the advanced event selector.
|
|
5998
|
+
*/
|
|
5999
|
+
name?: pulumi.Input<string>;
|
|
6000
|
+
}
|
|
6001
|
+
interface TrailAdvancedEventSelectorFieldSelector {
|
|
6002
|
+
/**
|
|
6003
|
+
* A list of values that includes events that match the last few characters of the event record field specified as the value of `field`.
|
|
6004
|
+
*/
|
|
6005
|
+
endsWiths?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6006
|
+
/**
|
|
6007
|
+
* A list of values that includes events that match the exact value of the event record field specified as the value of `field`. This is the only valid operator that you can use with the `readOnly`, `eventCategory`, and `resources.type` fields.
|
|
6008
|
+
*/
|
|
6009
|
+
equals?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6010
|
+
/**
|
|
6011
|
+
* Specifies a field in an event record on which to filter events to be logged. You can specify only the following values: `readOnly`, `eventSource`, `eventName`, `eventCategory`, `resources.type`, `resources.ARN`.
|
|
6012
|
+
*/
|
|
6013
|
+
field: pulumi.Input<string>;
|
|
6014
|
+
/**
|
|
6015
|
+
* A list of values that excludes events that match the last few characters of the event record field specified as the value of `field`.
|
|
6016
|
+
*/
|
|
6017
|
+
notEndsWiths?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6018
|
+
/**
|
|
6019
|
+
* A list of values that excludes events that match the exact value of the event record field specified as the value of `field`.
|
|
6020
|
+
*/
|
|
6021
|
+
notEquals?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6022
|
+
/**
|
|
6023
|
+
* A list of values that excludes events that match the first few characters of the event record field specified as the value of `field`.
|
|
6024
|
+
*/
|
|
6025
|
+
notStartsWiths?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6026
|
+
/**
|
|
6027
|
+
* A list of values that includes events that match the first few characters of the event record field specified as the value of `field`.
|
|
6028
|
+
*/
|
|
6029
|
+
startsWiths?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6030
|
+
}
|
|
5991
6031
|
interface TrailEventSelector {
|
|
5992
6032
|
/**
|
|
5993
6033
|
* Configuration block for data events. See details below.
|
|
@@ -7620,7 +7660,7 @@ export declare namespace cognito {
|
|
|
7620
7660
|
}
|
|
7621
7661
|
interface UserPoolLambdaConfigCustomEmailSender {
|
|
7622
7662
|
/**
|
|
7623
|
-
*
|
|
7663
|
+
* The Lambda Amazon Resource Name of the Lambda function that Amazon Cognito triggers to send SMS notifications to users.
|
|
7624
7664
|
*/
|
|
7625
7665
|
lambdaArn: pulumi.Input<string>;
|
|
7626
7666
|
/**
|
|
@@ -7630,7 +7670,7 @@ export declare namespace cognito {
|
|
|
7630
7670
|
}
|
|
7631
7671
|
interface UserPoolLambdaConfigCustomSmsSender {
|
|
7632
7672
|
/**
|
|
7633
|
-
*
|
|
7673
|
+
* The Lambda Amazon Resource Name of the Lambda function that Amazon Cognito triggers to send SMS notifications to users.
|
|
7634
7674
|
*/
|
|
7635
7675
|
lambdaArn: pulumi.Input<string>;
|
|
7636
7676
|
/**
|
|
@@ -9625,6 +9665,7 @@ export declare namespace ec2 {
|
|
|
9625
9665
|
* Whether the metadata service is available. Can be `"enabled"` or `"disabled"`. (Default: `"enabled"`).
|
|
9626
9666
|
*/
|
|
9627
9667
|
httpEndpoint?: pulumi.Input<string>;
|
|
9668
|
+
httpProtocolIpv6?: pulumi.Input<string>;
|
|
9628
9669
|
/**
|
|
9629
9670
|
* The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel. Can be an integer from `1` to `64`. (Default: `1`).
|
|
9630
9671
|
*/
|
|
@@ -10462,6 +10503,10 @@ export declare namespace ec2clientvpn {
|
|
|
10462
10503
|
* The ARN of the IAM SAML identity provider if type is `federated-authentication`.
|
|
10463
10504
|
*/
|
|
10464
10505
|
samlProviderArn?: pulumi.Input<string>;
|
|
10506
|
+
/**
|
|
10507
|
+
* The ARN of the IAM SAML identity provider for the self service portal if type is `federated-authentication`.
|
|
10508
|
+
*/
|
|
10509
|
+
selfServiceSamlProviderArn?: pulumi.Input<string>;
|
|
10465
10510
|
/**
|
|
10466
10511
|
* The type of client authentication to be used. Specify `certificate-authentication` to use certificate-based authentication, `directory-service-authentication` to use Active Directory authentication, or `federated-authentication` to use Federated Authentication via SAML 2.0.
|
|
10467
10512
|
*/
|
|
@@ -11017,7 +11062,11 @@ export declare namespace efs {
|
|
|
11017
11062
|
/**
|
|
11018
11063
|
* Indicates how long it takes to transition files to the IA storage class. Valid values: `AFTER_7_DAYS`, `AFTER_14_DAYS`, `AFTER_30_DAYS`, `AFTER_60_DAYS`, or `AFTER_90_DAYS`.
|
|
11019
11064
|
*/
|
|
11020
|
-
transitionToIa
|
|
11065
|
+
transitionToIa?: pulumi.Input<string>;
|
|
11066
|
+
/**
|
|
11067
|
+
* Describes the policy used to transition a file from infequent access storage to primary storage. Valid values: `AFTER_1_ACCESS`.
|
|
11068
|
+
*/
|
|
11069
|
+
transitionToPrimaryStorageClass?: pulumi.Input<string>;
|
|
11021
11070
|
}
|
|
11022
11071
|
interface FileSystemSizeInByte {
|
|
11023
11072
|
/**
|
|
@@ -20726,6 +20775,46 @@ export declare namespace sagemaker {
|
|
|
20726
20775
|
*/
|
|
20727
20776
|
homeEfsFileSystem?: pulumi.Input<string>;
|
|
20728
20777
|
}
|
|
20778
|
+
interface EndpointConfigurationAsyncInferenceConfig {
|
|
20779
|
+
/**
|
|
20780
|
+
* Configures the behavior of the client used by Amazon SageMaker to interact with the model container during asynchronous inference.
|
|
20781
|
+
*/
|
|
20782
|
+
clientConfig?: pulumi.Input<inputs.sagemaker.EndpointConfigurationAsyncInferenceConfigClientConfig>;
|
|
20783
|
+
/**
|
|
20784
|
+
* Specifies the configuration for asynchronous inference invocation outputs.
|
|
20785
|
+
*/
|
|
20786
|
+
outputConfig: pulumi.Input<inputs.sagemaker.EndpointConfigurationAsyncInferenceConfigOutputConfig>;
|
|
20787
|
+
}
|
|
20788
|
+
interface EndpointConfigurationAsyncInferenceConfigClientConfig {
|
|
20789
|
+
/**
|
|
20790
|
+
* The maximum number of concurrent requests sent by the SageMaker client to the model container. If no value is provided, Amazon SageMaker will choose an optimal value for you.
|
|
20791
|
+
*/
|
|
20792
|
+
maxConcurrentInvocationsPerInstance?: pulumi.Input<number>;
|
|
20793
|
+
}
|
|
20794
|
+
interface EndpointConfigurationAsyncInferenceConfigOutputConfig {
|
|
20795
|
+
/**
|
|
20796
|
+
* The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
|
|
20797
|
+
*/
|
|
20798
|
+
kmsKeyId?: pulumi.Input<string>;
|
|
20799
|
+
/**
|
|
20800
|
+
* Specifies the configuration for notifications of inference results for asynchronous inference.
|
|
20801
|
+
*/
|
|
20802
|
+
notificationConfig?: pulumi.Input<inputs.sagemaker.EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig>;
|
|
20803
|
+
/**
|
|
20804
|
+
* The Amazon S3 location to upload inference responses to.
|
|
20805
|
+
*/
|
|
20806
|
+
s3OutputPath: pulumi.Input<string>;
|
|
20807
|
+
}
|
|
20808
|
+
interface EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig {
|
|
20809
|
+
/**
|
|
20810
|
+
* Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.
|
|
20811
|
+
*/
|
|
20812
|
+
errorTopic?: pulumi.Input<string>;
|
|
20813
|
+
/**
|
|
20814
|
+
* Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.
|
|
20815
|
+
*/
|
|
20816
|
+
successTopic?: pulumi.Input<string>;
|
|
20817
|
+
}
|
|
20729
20818
|
interface EndpointConfigurationDataCaptureConfig {
|
|
20730
20819
|
/**
|
|
20731
20820
|
* The content type headers to capture. Fields are documented below.
|
|
@@ -20748,7 +20837,7 @@ export declare namespace sagemaker {
|
|
|
20748
20837
|
*/
|
|
20749
20838
|
initialSamplingPercentage: pulumi.Input<number>;
|
|
20750
20839
|
/**
|
|
20751
|
-
* Amazon
|
|
20840
|
+
* The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
|
|
20752
20841
|
*/
|
|
20753
20842
|
kmsKeyId?: pulumi.Input<string>;
|
|
20754
20843
|
}
|
|
@@ -23400,6 +23489,30 @@ export declare namespace timestreamwrite {
|
|
|
23400
23489
|
}
|
|
23401
23490
|
}
|
|
23402
23491
|
export declare namespace transfer {
|
|
23492
|
+
interface AccessHomeDirectoryMapping {
|
|
23493
|
+
/**
|
|
23494
|
+
* Represents an entry and a target.
|
|
23495
|
+
*/
|
|
23496
|
+
entry: pulumi.Input<string>;
|
|
23497
|
+
/**
|
|
23498
|
+
* Represents the map target.
|
|
23499
|
+
*/
|
|
23500
|
+
target: pulumi.Input<string>;
|
|
23501
|
+
}
|
|
23502
|
+
interface AccessPosixProfile {
|
|
23503
|
+
/**
|
|
23504
|
+
* The POSIX group ID used for all EFS operations by this user.
|
|
23505
|
+
*/
|
|
23506
|
+
gid: pulumi.Input<number>;
|
|
23507
|
+
/**
|
|
23508
|
+
* The secondary POSIX group IDs used for all EFS operations by this user.
|
|
23509
|
+
*/
|
|
23510
|
+
secondaryGids?: pulumi.Input<pulumi.Input<number>[]>;
|
|
23511
|
+
/**
|
|
23512
|
+
* The POSIX user ID used for all EFS operations by this user.
|
|
23513
|
+
*/
|
|
23514
|
+
uid: pulumi.Input<number>;
|
|
23515
|
+
}
|
|
23403
23516
|
interface ServerEndpointDetails {
|
|
23404
23517
|
/**
|
|
23405
23518
|
* A list of address allocation IDs that are required to attach an Elastic IP address to your SFTP server's endpoint. This property can only be used when `endpointType` is set to `VPC`.
|