@pulumi/aws 5.7.0-alpha.1653989347 → 5.7.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/acmpca/index.d.ts +1 -0
- package/acmpca/index.js +5 -0
- package/acmpca/index.js.map +1 -1
- package/acmpca/policy.d.ts +120 -0
- package/acmpca/policy.js +117 -0
- package/acmpca/policy.js.map +1 -0
- package/dms/endpoint.d.ts +18 -6
- package/dms/endpoint.js +2 -0
- package/dms/endpoint.js.map +1 -1
- package/guardduty/detector.d.ts +11 -3
- package/guardduty/detector.js +5 -0
- package/guardduty/detector.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/neptune/cluster.d.ts +12 -0
- package/neptune/cluster.js +2 -0
- package/neptune/cluster.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/ram/resourceShare.d.ts +15 -3
- package/ram/resourceShare.js +2 -0
- package/ram/resourceShare.js.map +1 -1
- package/redshift/cluster.d.ts +3 -1
- package/redshift/cluster.js +2 -0
- package/redshift/cluster.js.map +1 -1
- package/redshift/clusterIamRoles.d.ts +97 -0
- package/redshift/clusterIamRoles.js +81 -0
- package/redshift/clusterIamRoles.js.map +1 -0
- package/redshift/getClusterCredentials.d.ts +98 -0
- package/redshift/getClusterCredentials.js +41 -0
- package/redshift/getClusterCredentials.js.map +1 -0
- package/redshift/hsmConfiguration.d.ts +179 -0
- package/redshift/hsmConfiguration.js +110 -0
- package/redshift/hsmConfiguration.js.map +1 -0
- package/redshift/index.d.ts +3 -0
- package/redshift/index.js +11 -0
- package/redshift/index.js.map +1 -1
- package/redshiftdata/index.d.ts +1 -0
- package/redshiftdata/index.js +37 -0
- package/redshiftdata/index.js.map +1 -0
- package/redshiftdata/statement.d.ts +149 -0
- package/redshiftdata/statement.js +97 -0
- package/redshiftdata/statement.js.map +1 -0
- package/types/enums/lambda/index.d.ts +14 -0
- package/types/enums/lambda/index.js +14 -0
- package/types/enums/lambda/index.js.map +1 -1
- package/types/input.d.ts +51 -2
- package/types/output.d.ts +53 -4
|
@@ -0,0 +1,97 @@
|
|
|
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.Statement = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Executes a Redshift Data Statement.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as aws from "@pulumi/aws";
|
|
16
|
+
*
|
|
17
|
+
* const example = new aws.redshiftdata.Statement("example", {
|
|
18
|
+
* clusterIdentifier: aws_redshift_cluster.example.cluster_identifier,
|
|
19
|
+
* database: aws_redshift_cluster.example.database_name,
|
|
20
|
+
* dbUser: aws_redshift_cluster.example.master_username,
|
|
21
|
+
* sql: "CREATE GROUP group_name;",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ## Import
|
|
26
|
+
*
|
|
27
|
+
* Redshift Data Statements can be imported using the `id`, e.g.,
|
|
28
|
+
*
|
|
29
|
+
* ```sh
|
|
30
|
+
* $ pulumi import aws:redshiftdata/statement:Statement example example
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
class Statement extends pulumi.CustomResource {
|
|
34
|
+
constructor(name, argsOrState, opts) {
|
|
35
|
+
let resourceInputs = {};
|
|
36
|
+
opts = opts || {};
|
|
37
|
+
if (opts.id) {
|
|
38
|
+
const state = argsOrState;
|
|
39
|
+
resourceInputs["clusterIdentifier"] = state ? state.clusterIdentifier : undefined;
|
|
40
|
+
resourceInputs["database"] = state ? state.database : undefined;
|
|
41
|
+
resourceInputs["dbUser"] = state ? state.dbUser : undefined;
|
|
42
|
+
resourceInputs["parameters"] = state ? state.parameters : undefined;
|
|
43
|
+
resourceInputs["secretArn"] = state ? state.secretArn : undefined;
|
|
44
|
+
resourceInputs["sql"] = state ? state.sql : undefined;
|
|
45
|
+
resourceInputs["statementName"] = state ? state.statementName : undefined;
|
|
46
|
+
resourceInputs["withEvent"] = state ? state.withEvent : undefined;
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
const args = argsOrState;
|
|
50
|
+
if ((!args || args.clusterIdentifier === undefined) && !opts.urn) {
|
|
51
|
+
throw new Error("Missing required property 'clusterIdentifier'");
|
|
52
|
+
}
|
|
53
|
+
if ((!args || args.database === undefined) && !opts.urn) {
|
|
54
|
+
throw new Error("Missing required property 'database'");
|
|
55
|
+
}
|
|
56
|
+
if ((!args || args.sql === undefined) && !opts.urn) {
|
|
57
|
+
throw new Error("Missing required property 'sql'");
|
|
58
|
+
}
|
|
59
|
+
resourceInputs["clusterIdentifier"] = args ? args.clusterIdentifier : undefined;
|
|
60
|
+
resourceInputs["database"] = args ? args.database : undefined;
|
|
61
|
+
resourceInputs["dbUser"] = args ? args.dbUser : undefined;
|
|
62
|
+
resourceInputs["parameters"] = args ? args.parameters : undefined;
|
|
63
|
+
resourceInputs["secretArn"] = args ? args.secretArn : undefined;
|
|
64
|
+
resourceInputs["sql"] = args ? args.sql : undefined;
|
|
65
|
+
resourceInputs["statementName"] = args ? args.statementName : undefined;
|
|
66
|
+
resourceInputs["withEvent"] = args ? args.withEvent : undefined;
|
|
67
|
+
}
|
|
68
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
69
|
+
super(Statement.__pulumiType, name, resourceInputs, opts);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Get an existing Statement resource's state with the given name, ID, and optional extra
|
|
73
|
+
* properties used to qualify the lookup.
|
|
74
|
+
*
|
|
75
|
+
* @param name The _unique_ name of the resulting resource.
|
|
76
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
77
|
+
* @param state Any extra arguments used during the lookup.
|
|
78
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
79
|
+
*/
|
|
80
|
+
static get(name, id, state, opts) {
|
|
81
|
+
return new Statement(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Returns true if the given object is an instance of Statement. This is designed to work even
|
|
85
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
86
|
+
*/
|
|
87
|
+
static isInstance(obj) {
|
|
88
|
+
if (obj === undefined || obj === null) {
|
|
89
|
+
return false;
|
|
90
|
+
}
|
|
91
|
+
return obj['__pulumiType'] === Statement.__pulumiType;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
exports.Statement = Statement;
|
|
95
|
+
/** @internal */
|
|
96
|
+
Statement.__pulumiType = 'aws:redshiftdata/statement:Statement';
|
|
97
|
+
//# sourceMappingURL=statement.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"statement.js","sourceRoot":"","sources":["../../redshiftdata/statement.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export declare const Runtime: {
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated This runtime is now deprecated
|
|
4
|
+
*/
|
|
2
5
|
readonly DotnetCore2d1: "dotnetcore2.1";
|
|
3
6
|
readonly DotnetCore3d1: "dotnetcore3.1";
|
|
4
7
|
readonly Dotnet6: "dotnet6";
|
|
@@ -6,15 +9,26 @@ export declare const Runtime: {
|
|
|
6
9
|
readonly Java8: "java8";
|
|
7
10
|
readonly Java8AL2: "java8.al2";
|
|
8
11
|
readonly Java11: "java11";
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated This runtime is now deprecated
|
|
14
|
+
*/
|
|
9
15
|
readonly Ruby2d5: "ruby2.5";
|
|
10
16
|
readonly Ruby2d7: "ruby2.7";
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This runtime is now deprecated
|
|
19
|
+
*/
|
|
11
20
|
readonly NodeJS10dX: "nodejs10.x";
|
|
12
21
|
readonly NodeJS12dX: "nodejs12.x";
|
|
13
22
|
readonly NodeJS14dX: "nodejs14.x";
|
|
23
|
+
readonly NodeJS16dX: "nodejs16.x";
|
|
24
|
+
/**
|
|
25
|
+
* @deprecated This runtime is now deprecated
|
|
26
|
+
*/
|
|
14
27
|
readonly Python2d7: "python2.7";
|
|
15
28
|
readonly Python3d6: "python3.6";
|
|
16
29
|
readonly Python3d7: "python3.7";
|
|
17
30
|
readonly Python3d8: "python3.8";
|
|
31
|
+
readonly Python3d9: "python3.9";
|
|
18
32
|
readonly Custom: "provided";
|
|
19
33
|
readonly CustomAL2: "provided.al2";
|
|
20
34
|
};
|
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.Runtime = void 0;
|
|
6
6
|
exports.Runtime = {
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated This runtime is now deprecated
|
|
9
|
+
*/
|
|
7
10
|
DotnetCore2d1: "dotnetcore2.1",
|
|
8
11
|
DotnetCore3d1: "dotnetcore3.1",
|
|
9
12
|
Dotnet6: "dotnet6",
|
|
@@ -11,15 +14,26 @@ exports.Runtime = {
|
|
|
11
14
|
Java8: "java8",
|
|
12
15
|
Java8AL2: "java8.al2",
|
|
13
16
|
Java11: "java11",
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated This runtime is now deprecated
|
|
19
|
+
*/
|
|
14
20
|
Ruby2d5: "ruby2.5",
|
|
15
21
|
Ruby2d7: "ruby2.7",
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated This runtime is now deprecated
|
|
24
|
+
*/
|
|
16
25
|
NodeJS10dX: "nodejs10.x",
|
|
17
26
|
NodeJS12dX: "nodejs12.x",
|
|
18
27
|
NodeJS14dX: "nodejs14.x",
|
|
28
|
+
NodeJS16dX: "nodejs16.x",
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated This runtime is now deprecated
|
|
31
|
+
*/
|
|
19
32
|
Python2d7: "python2.7",
|
|
20
33
|
Python3d6: "python3.6",
|
|
21
34
|
Python3d7: "python3.7",
|
|
22
35
|
Python3d8: "python3.8",
|
|
36
|
+
Python3d9: "python3.9",
|
|
23
37
|
Custom: "provided",
|
|
24
38
|
CustomAL2: "provided.al2",
|
|
25
39
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/lambda/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAGpE,QAAA,OAAO,GAAG;IACnB,aAAa,EAAE,eAAe;IAC9B,aAAa,EAAE,eAAe;IAC9B,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,WAAW;IACrB,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,UAAU;IAClB,SAAS,EAAE,cAAc;CACnB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/enums/lambda/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAGpE,QAAA,OAAO,GAAG;IACnB;;OAEG;IACH,aAAa,EAAE,eAAe;IAC9B,aAAa,EAAE,eAAe;IAC9B,OAAO,EAAE,SAAS;IAClB,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,QAAQ,EAAE,WAAW;IACrB,MAAM,EAAE,QAAQ;IAChB;;OAEG;IACH,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB;;OAEG;IACH,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB,UAAU,EAAE,YAAY;IACxB;;OAEG;IACH,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,SAAS,EAAE,WAAW;IACtB,MAAM,EAAE,UAAU;IAClB,SAAS,EAAE,cAAc;CACnB,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -12950,6 +12950,28 @@ export declare namespace dms {
|
|
|
12950
12950
|
*/
|
|
12951
12951
|
nestingLevel?: pulumi.Input<string>;
|
|
12952
12952
|
}
|
|
12953
|
+
interface EndpointRedshiftSettings {
|
|
12954
|
+
/**
|
|
12955
|
+
* S3 object prefix.
|
|
12956
|
+
*/
|
|
12957
|
+
bucketFolder?: pulumi.Input<string>;
|
|
12958
|
+
/**
|
|
12959
|
+
* S3 bucket name.
|
|
12960
|
+
*/
|
|
12961
|
+
bucketName?: pulumi.Input<string>;
|
|
12962
|
+
/**
|
|
12963
|
+
* Server-side encryption mode that you want to encrypt your .csv or .parquet object files copied to S3. Valid values are `SSE_S3` and `SSE_KMS`. Default is `SSE_S3`.
|
|
12964
|
+
*/
|
|
12965
|
+
encryptionMode?: pulumi.Input<string>;
|
|
12966
|
+
/**
|
|
12967
|
+
* If you set encryptionMode to `SSE_KMS`, set this parameter to the ARN for the AWS KMS key.
|
|
12968
|
+
*/
|
|
12969
|
+
serverSideEncryptionKmsKeyId?: pulumi.Input<string>;
|
|
12970
|
+
/**
|
|
12971
|
+
* ARN of the IAM Role with permissions to read from or write to the S3 Bucket.
|
|
12972
|
+
*/
|
|
12973
|
+
serviceAccessRoleArn?: pulumi.Input<string>;
|
|
12974
|
+
}
|
|
12953
12975
|
interface EndpointS3Settings {
|
|
12954
12976
|
/**
|
|
12955
12977
|
* Whether to add column name information to the .csv output file. Default is `false`.
|
|
@@ -21176,13 +21198,34 @@ export declare namespace glue {
|
|
|
21176
21198
|
export declare namespace guardduty {
|
|
21177
21199
|
interface DetectorDatasources {
|
|
21178
21200
|
/**
|
|
21179
|
-
*
|
|
21201
|
+
* Configures [Kubernetes protection](https://docs.aws.amazon.com/guardduty/latest/ug/kubernetes-protection.html).
|
|
21202
|
+
* See Kubernetes and Kubernetes Audit Logs below for more details.
|
|
21203
|
+
*/
|
|
21204
|
+
kubernetes?: pulumi.Input<inputs.guardduty.DetectorDatasourcesKubernetes>;
|
|
21205
|
+
/**
|
|
21206
|
+
* Configures [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
|
|
21207
|
+
* See S3 Logs below for more details.
|
|
21180
21208
|
*/
|
|
21181
21209
|
s3Logs?: pulumi.Input<inputs.guardduty.DetectorDatasourcesS3Logs>;
|
|
21182
21210
|
}
|
|
21211
|
+
interface DetectorDatasourcesKubernetes {
|
|
21212
|
+
/**
|
|
21213
|
+
* Configures Kubernetes audit logs as a data source for [Kubernetes protection](https://docs.aws.amazon.com/guardduty/latest/ug/kubernetes-protection.html).
|
|
21214
|
+
* See Kubernetes Audit Logs below for more details.
|
|
21215
|
+
*/
|
|
21216
|
+
auditLogs: pulumi.Input<inputs.guardduty.DetectorDatasourcesKubernetesAuditLogs>;
|
|
21217
|
+
}
|
|
21218
|
+
interface DetectorDatasourcesKubernetesAuditLogs {
|
|
21219
|
+
/**
|
|
21220
|
+
* If true, enables Kubernetes audit logs as a data source for [Kubernetes protection](https://docs.aws.amazon.com/guardduty/latest/ug/kubernetes-protection.html).
|
|
21221
|
+
* Defaults to `true`.
|
|
21222
|
+
*/
|
|
21223
|
+
enable: pulumi.Input<boolean>;
|
|
21224
|
+
}
|
|
21183
21225
|
interface DetectorDatasourcesS3Logs {
|
|
21184
21226
|
/**
|
|
21185
|
-
* If true, enables [S3
|
|
21227
|
+
* If true, enables [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
|
|
21228
|
+
* Defaults to `true`.
|
|
21186
21229
|
*/
|
|
21187
21230
|
enable: pulumi.Input<boolean>;
|
|
21188
21231
|
}
|
|
@@ -29651,6 +29694,12 @@ export declare namespace redshift {
|
|
|
29651
29694
|
securityGroupOwnerId?: pulumi.Input<string>;
|
|
29652
29695
|
}
|
|
29653
29696
|
}
|
|
29697
|
+
export declare namespace redshiftdata {
|
|
29698
|
+
interface StatementParameter {
|
|
29699
|
+
name: pulumi.Input<string>;
|
|
29700
|
+
value: pulumi.Input<string>;
|
|
29701
|
+
}
|
|
29702
|
+
}
|
|
29654
29703
|
export declare namespace resourcegroups {
|
|
29655
29704
|
interface GroupResourceQuery {
|
|
29656
29705
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -13891,6 +13891,28 @@ export declare namespace dms {
|
|
|
13891
13891
|
*/
|
|
13892
13892
|
nestingLevel?: string;
|
|
13893
13893
|
}
|
|
13894
|
+
interface EndpointRedshiftSettings {
|
|
13895
|
+
/**
|
|
13896
|
+
* S3 object prefix.
|
|
13897
|
+
*/
|
|
13898
|
+
bucketFolder?: string;
|
|
13899
|
+
/**
|
|
13900
|
+
* S3 bucket name.
|
|
13901
|
+
*/
|
|
13902
|
+
bucketName?: string;
|
|
13903
|
+
/**
|
|
13904
|
+
* Server-side encryption mode that you want to encrypt your .csv or .parquet object files copied to S3. Valid values are `SSE_S3` and `SSE_KMS`. Default is `SSE_S3`.
|
|
13905
|
+
*/
|
|
13906
|
+
encryptionMode?: string;
|
|
13907
|
+
/**
|
|
13908
|
+
* If you set encryptionMode to `SSE_KMS`, set this parameter to the ARN for the AWS KMS key.
|
|
13909
|
+
*/
|
|
13910
|
+
serverSideEncryptionKmsKeyId?: string;
|
|
13911
|
+
/**
|
|
13912
|
+
* ARN of the IAM Role with permissions to read from or write to the S3 Bucket.
|
|
13913
|
+
*/
|
|
13914
|
+
serviceAccessRoleArn?: string;
|
|
13915
|
+
}
|
|
13894
13916
|
interface EndpointS3Settings {
|
|
13895
13917
|
/**
|
|
13896
13918
|
* Whether to add column name information to the .csv output file. Default is `false`.
|
|
@@ -15294,7 +15316,7 @@ export declare namespace ec2 {
|
|
|
15294
15316
|
/**
|
|
15295
15317
|
* The Throughput of the volume.
|
|
15296
15318
|
*/
|
|
15297
|
-
throughput:
|
|
15319
|
+
throughput: number;
|
|
15298
15320
|
/**
|
|
15299
15321
|
* The Size of the volume.
|
|
15300
15322
|
*/
|
|
@@ -15344,7 +15366,7 @@ export declare namespace ec2 {
|
|
|
15344
15366
|
/**
|
|
15345
15367
|
* The Throughput of the volume.
|
|
15346
15368
|
*/
|
|
15347
|
-
throughput:
|
|
15369
|
+
throughput: number;
|
|
15348
15370
|
/**
|
|
15349
15371
|
* The Size of the volume.
|
|
15350
15372
|
*/
|
|
@@ -22707,13 +22729,34 @@ export declare namespace glue {
|
|
|
22707
22729
|
export declare namespace guardduty {
|
|
22708
22730
|
interface DetectorDatasources {
|
|
22709
22731
|
/**
|
|
22710
|
-
*
|
|
22732
|
+
* Configures [Kubernetes protection](https://docs.aws.amazon.com/guardduty/latest/ug/kubernetes-protection.html).
|
|
22733
|
+
* See Kubernetes and Kubernetes Audit Logs below for more details.
|
|
22734
|
+
*/
|
|
22735
|
+
kubernetes: outputs.guardduty.DetectorDatasourcesKubernetes;
|
|
22736
|
+
/**
|
|
22737
|
+
* Configures [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
|
|
22738
|
+
* See S3 Logs below for more details.
|
|
22711
22739
|
*/
|
|
22712
22740
|
s3Logs: outputs.guardduty.DetectorDatasourcesS3Logs;
|
|
22713
22741
|
}
|
|
22742
|
+
interface DetectorDatasourcesKubernetes {
|
|
22743
|
+
/**
|
|
22744
|
+
* Configures Kubernetes audit logs as a data source for [Kubernetes protection](https://docs.aws.amazon.com/guardduty/latest/ug/kubernetes-protection.html).
|
|
22745
|
+
* See Kubernetes Audit Logs below for more details.
|
|
22746
|
+
*/
|
|
22747
|
+
auditLogs: outputs.guardduty.DetectorDatasourcesKubernetesAuditLogs;
|
|
22748
|
+
}
|
|
22749
|
+
interface DetectorDatasourcesKubernetesAuditLogs {
|
|
22750
|
+
/**
|
|
22751
|
+
* If true, enables Kubernetes audit logs as a data source for [Kubernetes protection](https://docs.aws.amazon.com/guardduty/latest/ug/kubernetes-protection.html).
|
|
22752
|
+
* Defaults to `true`.
|
|
22753
|
+
*/
|
|
22754
|
+
enable: boolean;
|
|
22755
|
+
}
|
|
22714
22756
|
interface DetectorDatasourcesS3Logs {
|
|
22715
22757
|
/**
|
|
22716
|
-
* If true, enables [S3
|
|
22758
|
+
* If true, enables [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
|
|
22759
|
+
* Defaults to `true`.
|
|
22717
22760
|
*/
|
|
22718
22761
|
enable: boolean;
|
|
22719
22762
|
}
|
|
@@ -31943,6 +31986,12 @@ export declare namespace redshift {
|
|
|
31943
31986
|
securityGroupOwnerId: string;
|
|
31944
31987
|
}
|
|
31945
31988
|
}
|
|
31989
|
+
export declare namespace redshiftdata {
|
|
31990
|
+
interface StatementParameter {
|
|
31991
|
+
name: string;
|
|
31992
|
+
value: string;
|
|
31993
|
+
}
|
|
31994
|
+
}
|
|
31946
31995
|
export declare namespace resourcegroups {
|
|
31947
31996
|
interface GroupResourceQuery {
|
|
31948
31997
|
/**
|