@pulumi/aws 6.69.0 → 6.70.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/backup/selection.d.ts +6 -6
- package/bedrockmodel/invocationLoggingConfiguration.d.ts +3 -3
- package/cloudfront/vpcOrigin.d.ts +1 -1
- package/cloudfront/vpcOrigin.js +1 -1
- package/cloudwatch/contributorInsightRule.d.ts +133 -0
- package/cloudwatch/contributorInsightRule.js +91 -0
- package/cloudwatch/contributorInsightRule.js.map +1 -0
- package/cloudwatch/contributorManagedInsightRule.d.ts +113 -0
- package/cloudwatch/contributorManagedInsightRule.js +80 -0
- package/cloudwatch/contributorManagedInsightRule.js.map +1 -0
- package/cloudwatch/getContributorManagedInsightRules.d.ts +79 -0
- package/cloudwatch/getContributorManagedInsightRules.js +54 -0
- package/cloudwatch/getContributorManagedInsightRules.js.map +1 -0
- package/cloudwatch/index.d.ts +9 -0
- package/cloudwatch/index.js +14 -1
- package/cloudwatch/index.js.map +1 -1
- package/connect/instanceStorageConfig.d.ts +3 -3
- package/detective/invitationAccepter.d.ts +1 -1
- package/detective/invitationAccepter.js +1 -1
- package/detective/member.d.ts +1 -1
- package/detective/member.js +1 -1
- package/dms/replicationInstance.d.ts +1 -1
- package/dms/replicationInstance.js +1 -1
- package/docdb/cluster.d.ts +3 -3
- package/dynamodb/getTable.d.ts +1 -0
- package/dynamodb/getTable.js.map +1 -1
- package/dynamodb/tableExport.d.ts +40 -3
- package/dynamodb/tableExport.js +21 -0
- package/dynamodb/tableExport.js.map +1 -1
- package/eks/cluster.d.ts +61 -6
- package/eks/cluster.js +55 -0
- package/eks/cluster.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/qbusiness/application.d.ts +187 -0
- package/qbusiness/application.js +105 -0
- package/qbusiness/application.js.map +1 -0
- package/qbusiness/index.d.ts +3 -0
- package/qbusiness/index.js +22 -0
- package/qbusiness/index.js.map +1 -0
- package/quicksight/dataSource.d.ts +84 -0
- package/quicksight/dataSource.js +84 -0
- package/quicksight/dataSource.js.map +1 -1
- package/rds/instance.d.ts +6 -12
- package/rds/instance.js.map +1 -1
- package/redshift/cluster.d.ts +9 -9
- package/redshiftserverless/namespace.d.ts +12 -6
- package/redshiftserverless/namespace.js.map +1 -1
- package/rekognition/streamProcessor.d.ts +16 -2
- package/rekognition/streamProcessor.js +2 -0
- package/rekognition/streamProcessor.js.map +1 -1
- package/route53/resolverEndpoint.d.ts +12 -6
- package/route53/resolverEndpoint.js.map +1 -1
- package/s3tables/table.d.ts +6 -3
- package/s3tables/table.js.map +1 -1
- package/s3tables/tableBucket.d.ts +6 -6
- package/secretsmanager/secretVersion.d.ts +6 -6
- package/ses/domainIdentityVerification.d.ts +2 -2
- package/ses/domainIdentityVerification.js +2 -2
- package/ssm/parameter.d.ts +3 -9
- package/ssm/parameter.js.map +1 -1
- package/types/input.d.ts +140 -53
- package/types/input.js.map +1 -1
- package/types/output.d.ts +174 -50
- package/types/output.js.map +1 -1
- package/vpclattice/accessLogSubscription.d.ts +18 -0
- package/vpclattice/accessLogSubscription.js +2 -0
- package/vpclattice/accessLogSubscription.js.map +1 -1
- package/vpclattice/resourceConfiguration.d.ts +1 -0
- package/vpclattice/resourceConfiguration.js +1 -0
- package/vpclattice/resourceConfiguration.js.map +1 -1
|
@@ -49,14 +49,14 @@ export declare class TableBucket extends pulumi.CustomResource {
|
|
|
49
49
|
readonly createdAt: pulumi.Output<string>;
|
|
50
50
|
/**
|
|
51
51
|
* A single table bucket maintenance configuration block.
|
|
52
|
-
* See `maintenanceConfiguration` below
|
|
52
|
+
* See `maintenanceConfiguration` below.
|
|
53
53
|
*/
|
|
54
54
|
readonly maintenanceConfiguration: pulumi.Output<outputs.s3tables.TableBucketMaintenanceConfiguration>;
|
|
55
55
|
/**
|
|
56
56
|
* Name of the table bucket.
|
|
57
57
|
* Must be between 3 and 63 characters in length.
|
|
58
58
|
* Can consist of lowercase letters, numbers, and hyphens, and must begin and end with a lowercase letter or number.
|
|
59
|
-
* A full list of bucket naming rules
|
|
59
|
+
* A full list of bucket naming rules can be found in the [S3 Tables documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-naming.html#table-buckets-naming-rules).
|
|
60
60
|
*
|
|
61
61
|
* The following argument is optional:
|
|
62
62
|
*/
|
|
@@ -88,14 +88,14 @@ export interface TableBucketState {
|
|
|
88
88
|
createdAt?: pulumi.Input<string>;
|
|
89
89
|
/**
|
|
90
90
|
* A single table bucket maintenance configuration block.
|
|
91
|
-
* See `maintenanceConfiguration` below
|
|
91
|
+
* See `maintenanceConfiguration` below.
|
|
92
92
|
*/
|
|
93
93
|
maintenanceConfiguration?: pulumi.Input<inputs.s3tables.TableBucketMaintenanceConfiguration>;
|
|
94
94
|
/**
|
|
95
95
|
* Name of the table bucket.
|
|
96
96
|
* Must be between 3 and 63 characters in length.
|
|
97
97
|
* Can consist of lowercase letters, numbers, and hyphens, and must begin and end with a lowercase letter or number.
|
|
98
|
-
* A full list of bucket naming rules
|
|
98
|
+
* A full list of bucket naming rules can be found in the [S3 Tables documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-naming.html#table-buckets-naming-rules).
|
|
99
99
|
*
|
|
100
100
|
* The following argument is optional:
|
|
101
101
|
*/
|
|
@@ -111,14 +111,14 @@ export interface TableBucketState {
|
|
|
111
111
|
export interface TableBucketArgs {
|
|
112
112
|
/**
|
|
113
113
|
* A single table bucket maintenance configuration block.
|
|
114
|
-
* See `maintenanceConfiguration` below
|
|
114
|
+
* See `maintenanceConfiguration` below.
|
|
115
115
|
*/
|
|
116
116
|
maintenanceConfiguration?: pulumi.Input<inputs.s3tables.TableBucketMaintenanceConfiguration>;
|
|
117
117
|
/**
|
|
118
118
|
* Name of the table bucket.
|
|
119
119
|
* Must be between 3 and 63 characters in length.
|
|
120
120
|
* Can consist of lowercase letters, numbers, and hyphens, and must begin and end with a lowercase letter or number.
|
|
121
|
-
* A full list of bucket naming rules
|
|
121
|
+
* A full list of bucket naming rules can be found in the [S3 Tables documentation](https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-naming.html#table-buckets-naming-rules).
|
|
122
122
|
*
|
|
123
123
|
* The following argument is optional:
|
|
124
124
|
*/
|
|
@@ -68,7 +68,7 @@ export declare class SecretVersion extends pulumi.CustomResource {
|
|
|
68
68
|
*/
|
|
69
69
|
readonly arn: pulumi.Output<string>;
|
|
70
70
|
/**
|
|
71
|
-
* Specifies binary data that you want to encrypt and store in this version of the secret. This is required if `secretString` is not set. Needs to be encoded to base64.
|
|
71
|
+
* Specifies binary data that you want to encrypt and store in this version of the secret. This is required if `secretString` or `secretStringWo` is not set. Needs to be encoded to base64.
|
|
72
72
|
*/
|
|
73
73
|
readonly secretBinary: pulumi.Output<string | undefined>;
|
|
74
74
|
/**
|
|
@@ -76,7 +76,7 @@ export declare class SecretVersion extends pulumi.CustomResource {
|
|
|
76
76
|
*/
|
|
77
77
|
readonly secretId: pulumi.Output<string>;
|
|
78
78
|
/**
|
|
79
|
-
* Specifies text data that you want to encrypt and store in this version of the secret. This is required if `secretBinary` is not set.
|
|
79
|
+
* Specifies text data that you want to encrypt and store in this version of the secret. This is required if `secretBinary` or `secretStringWo` is not set.
|
|
80
80
|
*/
|
|
81
81
|
readonly secretString: pulumi.Output<string | undefined>;
|
|
82
82
|
/**
|
|
@@ -107,7 +107,7 @@ export interface SecretVersionState {
|
|
|
107
107
|
*/
|
|
108
108
|
arn?: pulumi.Input<string>;
|
|
109
109
|
/**
|
|
110
|
-
* Specifies binary data that you want to encrypt and store in this version of the secret. This is required if `secretString` is not set. Needs to be encoded to base64.
|
|
110
|
+
* Specifies binary data that you want to encrypt and store in this version of the secret. This is required if `secretString` or `secretStringWo` is not set. Needs to be encoded to base64.
|
|
111
111
|
*/
|
|
112
112
|
secretBinary?: pulumi.Input<string>;
|
|
113
113
|
/**
|
|
@@ -115,7 +115,7 @@ export interface SecretVersionState {
|
|
|
115
115
|
*/
|
|
116
116
|
secretId?: pulumi.Input<string>;
|
|
117
117
|
/**
|
|
118
|
-
* Specifies text data that you want to encrypt and store in this version of the secret. This is required if `secretBinary` is not set.
|
|
118
|
+
* Specifies text data that you want to encrypt and store in this version of the secret. This is required if `secretBinary` or `secretStringWo` is not set.
|
|
119
119
|
*/
|
|
120
120
|
secretString?: pulumi.Input<string>;
|
|
121
121
|
/**
|
|
@@ -134,7 +134,7 @@ export interface SecretVersionState {
|
|
|
134
134
|
*/
|
|
135
135
|
export interface SecretVersionArgs {
|
|
136
136
|
/**
|
|
137
|
-
* Specifies binary data that you want to encrypt and store in this version of the secret. This is required if `secretString` is not set. Needs to be encoded to base64.
|
|
137
|
+
* Specifies binary data that you want to encrypt and store in this version of the secret. This is required if `secretString` or `secretStringWo` is not set. Needs to be encoded to base64.
|
|
138
138
|
*/
|
|
139
139
|
secretBinary?: pulumi.Input<string>;
|
|
140
140
|
/**
|
|
@@ -142,7 +142,7 @@ export interface SecretVersionArgs {
|
|
|
142
142
|
*/
|
|
143
143
|
secretId: pulumi.Input<string>;
|
|
144
144
|
/**
|
|
145
|
-
* Specifies text data that you want to encrypt and store in this version of the secret. This is required if `secretBinary` is not set.
|
|
145
|
+
* Specifies text data that you want to encrypt and store in this version of the secret. This is required if `secretBinary` or `secretStringWo` is not set.
|
|
146
146
|
*/
|
|
147
147
|
secretString?: pulumi.Input<string>;
|
|
148
148
|
/**
|
|
@@ -17,12 +17,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
17
17
|
* const example = new aws.ses.DomainIdentity("example", {domain: "example.com"});
|
|
18
18
|
* const exampleAmazonsesVerificationRecord = new aws.route53.Record("example_amazonses_verification_record", {
|
|
19
19
|
* zoneId: exampleAwsRoute53Zone.zoneId,
|
|
20
|
-
* name: pulumi.interpolate`_amazonses.${example.
|
|
20
|
+
* name: pulumi.interpolate`_amazonses.${example.domain}`,
|
|
21
21
|
* type: aws.route53.RecordType.TXT,
|
|
22
22
|
* ttl: 600,
|
|
23
23
|
* records: [example.verificationToken],
|
|
24
24
|
* });
|
|
25
|
-
* const exampleVerification = new aws.ses.DomainIdentityVerification("example_verification", {domain: example.
|
|
25
|
+
* const exampleVerification = new aws.ses.DomainIdentityVerification("example_verification", {domain: example.domain}, {
|
|
26
26
|
* dependsOn: [exampleAmazonsesVerificationRecord],
|
|
27
27
|
* });
|
|
28
28
|
* ```
|
|
@@ -23,12 +23,12 @@ const utilities = require("../utilities");
|
|
|
23
23
|
* const example = new aws.ses.DomainIdentity("example", {domain: "example.com"});
|
|
24
24
|
* const exampleAmazonsesVerificationRecord = new aws.route53.Record("example_amazonses_verification_record", {
|
|
25
25
|
* zoneId: exampleAwsRoute53Zone.zoneId,
|
|
26
|
-
* name: pulumi.interpolate`_amazonses.${example.
|
|
26
|
+
* name: pulumi.interpolate`_amazonses.${example.domain}`,
|
|
27
27
|
* type: aws.route53.RecordType.TXT,
|
|
28
28
|
* ttl: 600,
|
|
29
29
|
* records: [example.verificationToken],
|
|
30
30
|
* });
|
|
31
|
-
* const exampleVerification = new aws.ses.DomainIdentityVerification("example_verification", {domain: example.
|
|
31
|
+
* const exampleVerification = new aws.ses.DomainIdentityVerification("example_verification", {domain: example.domain}, {
|
|
32
32
|
* dependsOn: [exampleAmazonsesVerificationRecord],
|
|
33
33
|
* });
|
|
34
34
|
* ```
|
package/ssm/parameter.d.ts
CHANGED
|
@@ -132,9 +132,7 @@ export declare class Parameter extends pulumi.CustomResource {
|
|
|
132
132
|
*/
|
|
133
133
|
readonly type: pulumi.Output<string>;
|
|
134
134
|
/**
|
|
135
|
-
* Value of the parameter. This value is always marked as sensitive in the pulumi preview output, regardless of `type
|
|
136
|
-
*
|
|
137
|
-
* > **NOTE:** `aws:ssm:integration` dataType parameters must be of the type `SecureString` and the name must start with the prefix `/d9d01087-4a3f-49e0-b0b4-d568d7826553/ssm/integrations/webhook/`. See [here](https://docs.aws.amazon.com/systems-manager/latest/userguide/creating-integrations.html) for information on the usage of `aws:ssm:integration` parameters.
|
|
135
|
+
* Value of the parameter. This value is always marked as sensitive in the pulumi preview output, regardless of `type
|
|
138
136
|
*/
|
|
139
137
|
readonly value: pulumi.Output<string>;
|
|
140
138
|
/**
|
|
@@ -213,9 +211,7 @@ export interface ParameterState {
|
|
|
213
211
|
*/
|
|
214
212
|
type?: pulumi.Input<string | enums.ssm.ParameterType>;
|
|
215
213
|
/**
|
|
216
|
-
* Value of the parameter. This value is always marked as sensitive in the pulumi preview output, regardless of `type
|
|
217
|
-
*
|
|
218
|
-
* > **NOTE:** `aws:ssm:integration` dataType parameters must be of the type `SecureString` and the name must start with the prefix `/d9d01087-4a3f-49e0-b0b4-d568d7826553/ssm/integrations/webhook/`. See [here](https://docs.aws.amazon.com/systems-manager/latest/userguide/creating-integrations.html) for information on the usage of `aws:ssm:integration` parameters.
|
|
214
|
+
* Value of the parameter. This value is always marked as sensitive in the pulumi preview output, regardless of `type
|
|
219
215
|
*/
|
|
220
216
|
value?: pulumi.Input<string>;
|
|
221
217
|
/**
|
|
@@ -278,9 +274,7 @@ export interface ParameterArgs {
|
|
|
278
274
|
*/
|
|
279
275
|
type: pulumi.Input<string | enums.ssm.ParameterType>;
|
|
280
276
|
/**
|
|
281
|
-
* Value of the parameter. This value is always marked as sensitive in the pulumi preview output, regardless of `type
|
|
282
|
-
*
|
|
283
|
-
* > **NOTE:** `aws:ssm:integration` dataType parameters must be of the type `SecureString` and the name must start with the prefix `/d9d01087-4a3f-49e0-b0b4-d568d7826553/ssm/integrations/webhook/`. See [here](https://docs.aws.amazon.com/systems-manager/latest/userguide/creating-integrations.html) for information on the usage of `aws:ssm:integration` parameters.
|
|
277
|
+
* Value of the parameter. This value is always marked as sensitive in the pulumi preview output, regardless of `type
|
|
284
278
|
*/
|
|
285
279
|
value?: pulumi.Input<string>;
|
|
286
280
|
}
|
package/ssm/parameter.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parameter.js","sourceRoot":"","sources":["../../ssm/parameter.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAIzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;
|
|
1
|
+
{"version":3,"file":"parameter.js","sourceRoot":"","sources":["../../ssm/parameter.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -882,6 +882,10 @@ export interface ProviderEndpoint {
|
|
|
882
882
|
* Use this to override the default service endpoint URL
|
|
883
883
|
*/
|
|
884
884
|
mediapackagev2?: pulumi.Input<string>;
|
|
885
|
+
/**
|
|
886
|
+
* Use this to override the default service endpoint URL
|
|
887
|
+
*/
|
|
888
|
+
mediapackagevod?: pulumi.Input<string>;
|
|
885
889
|
/**
|
|
886
890
|
* Use this to override the default service endpoint URL
|
|
887
891
|
*/
|
|
@@ -9018,62 +9022,74 @@ export declare namespace backup {
|
|
|
9018
9022
|
value: pulumi.Input<string>;
|
|
9019
9023
|
}
|
|
9020
9024
|
interface SelectionCondition {
|
|
9025
|
+
/**
|
|
9026
|
+
* Filters the values of your tagged resources for only those resources that you tagged with the same value. Also called "exact matching". See below for details.
|
|
9027
|
+
*/
|
|
9021
9028
|
stringEquals?: pulumi.Input<pulumi.Input<inputs.backup.SelectionConditionStringEqual>[]>;
|
|
9029
|
+
/**
|
|
9030
|
+
* Filters the values of your tagged resources for matching tag values with the use of a wildcard character (`*`) anywhere in the string. For example, `prod*` or `*rod*` matches the tag value `production`. See below for details.
|
|
9031
|
+
*/
|
|
9022
9032
|
stringLikes?: pulumi.Input<pulumi.Input<inputs.backup.SelectionConditionStringLike>[]>;
|
|
9033
|
+
/**
|
|
9034
|
+
* Filters the values of your tagged resources for only those resources that you tagged that do not have the same value. Also called "negated matching". See below for details.
|
|
9035
|
+
*/
|
|
9023
9036
|
stringNotEquals?: pulumi.Input<pulumi.Input<inputs.backup.SelectionConditionStringNotEqual>[]>;
|
|
9037
|
+
/**
|
|
9038
|
+
* Filters the values of your tagged resources for non-matching tag values with the use of a wildcard character (`*`) anywhere in the string. See below for details.
|
|
9039
|
+
*/
|
|
9024
9040
|
stringNotLikes?: pulumi.Input<pulumi.Input<inputs.backup.SelectionConditionStringNotLike>[]>;
|
|
9025
9041
|
}
|
|
9026
9042
|
interface SelectionConditionStringEqual {
|
|
9027
9043
|
/**
|
|
9028
|
-
*
|
|
9044
|
+
* Key for the filter.
|
|
9029
9045
|
*/
|
|
9030
9046
|
key: pulumi.Input<string>;
|
|
9031
9047
|
/**
|
|
9032
|
-
*
|
|
9048
|
+
* Value for the filter.
|
|
9033
9049
|
*/
|
|
9034
9050
|
value: pulumi.Input<string>;
|
|
9035
9051
|
}
|
|
9036
9052
|
interface SelectionConditionStringLike {
|
|
9037
9053
|
/**
|
|
9038
|
-
*
|
|
9054
|
+
* Key for the filter.
|
|
9039
9055
|
*/
|
|
9040
9056
|
key: pulumi.Input<string>;
|
|
9041
9057
|
/**
|
|
9042
|
-
*
|
|
9058
|
+
* Value for the filter.
|
|
9043
9059
|
*/
|
|
9044
9060
|
value: pulumi.Input<string>;
|
|
9045
9061
|
}
|
|
9046
9062
|
interface SelectionConditionStringNotEqual {
|
|
9047
9063
|
/**
|
|
9048
|
-
*
|
|
9064
|
+
* Key for the filter.
|
|
9049
9065
|
*/
|
|
9050
9066
|
key: pulumi.Input<string>;
|
|
9051
9067
|
/**
|
|
9052
|
-
*
|
|
9068
|
+
* Value for the filter.
|
|
9053
9069
|
*/
|
|
9054
9070
|
value: pulumi.Input<string>;
|
|
9055
9071
|
}
|
|
9056
9072
|
interface SelectionConditionStringNotLike {
|
|
9057
9073
|
/**
|
|
9058
|
-
*
|
|
9074
|
+
* Key for the filter.
|
|
9059
9075
|
*/
|
|
9060
9076
|
key: pulumi.Input<string>;
|
|
9061
9077
|
/**
|
|
9062
|
-
*
|
|
9078
|
+
* Value for the filter.
|
|
9063
9079
|
*/
|
|
9064
9080
|
value: pulumi.Input<string>;
|
|
9065
9081
|
}
|
|
9066
9082
|
interface SelectionSelectionTag {
|
|
9067
9083
|
/**
|
|
9068
|
-
*
|
|
9084
|
+
* Key for the filter.
|
|
9069
9085
|
*/
|
|
9070
9086
|
key: pulumi.Input<string>;
|
|
9071
9087
|
/**
|
|
9072
|
-
* An operation, such as `STRINGEQUALS`, that is applied to
|
|
9088
|
+
* An operation, such as `STRINGEQUALS`, that is applied to the key-value pair used to filter resources in a selection.
|
|
9073
9089
|
*/
|
|
9074
9090
|
type: pulumi.Input<string>;
|
|
9075
9091
|
/**
|
|
9076
|
-
*
|
|
9092
|
+
* Value for the filter.
|
|
9077
9093
|
*/
|
|
9078
9094
|
value: pulumi.Input<string>;
|
|
9079
9095
|
}
|
|
@@ -9879,6 +9895,9 @@ export declare namespace bedrock {
|
|
|
9879
9895
|
* Type of storage for the data source. Valid values: `S3`.
|
|
9880
9896
|
*/
|
|
9881
9897
|
type: pulumi.Input<string>;
|
|
9898
|
+
/**
|
|
9899
|
+
* Details about the configuration of the web data source. See `webDataSourceConfiguration` block for details.
|
|
9900
|
+
*/
|
|
9882
9901
|
webConfiguration?: pulumi.Input<inputs.bedrock.AgentDataSourceDataSourceConfigurationWebConfiguration>;
|
|
9883
9902
|
}
|
|
9884
9903
|
interface AgentDataSourceDataSourceConfigurationConfluenceConfiguration {
|
|
@@ -9910,13 +9929,7 @@ export declare namespace bedrock {
|
|
|
9910
9929
|
filters?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentDataSourceDataSourceConfigurationConfluenceConfigurationCrawlerConfigurationFilterConfigurationPatternObjectFilterFilter>[]>;
|
|
9911
9930
|
}
|
|
9912
9931
|
interface AgentDataSourceDataSourceConfigurationConfluenceConfigurationCrawlerConfigurationFilterConfigurationPatternObjectFilterFilter {
|
|
9913
|
-
/**
|
|
9914
|
-
* A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern.
|
|
9915
|
-
*/
|
|
9916
9932
|
exclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9917
|
-
/**
|
|
9918
|
-
* A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern.
|
|
9919
|
-
*/
|
|
9920
9933
|
inclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9921
9934
|
/**
|
|
9922
9935
|
* The supported object type or content type of the data source.
|
|
@@ -9984,13 +9997,7 @@ export declare namespace bedrock {
|
|
|
9984
9997
|
filters?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentDataSourceDataSourceConfigurationSalesforceConfigurationCrawlerConfigurationFilterConfigurationPatternObjectFilterFilter>[]>;
|
|
9985
9998
|
}
|
|
9986
9999
|
interface AgentDataSourceDataSourceConfigurationSalesforceConfigurationCrawlerConfigurationFilterConfigurationPatternObjectFilterFilter {
|
|
9987
|
-
/**
|
|
9988
|
-
* A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern.
|
|
9989
|
-
*/
|
|
9990
10000
|
exclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9991
|
-
/**
|
|
9992
|
-
* A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern.
|
|
9993
|
-
*/
|
|
9994
10001
|
inclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9995
10002
|
/**
|
|
9996
10003
|
* The supported object type or content type of the data source.
|
|
@@ -10040,13 +10047,7 @@ export declare namespace bedrock {
|
|
|
10040
10047
|
filters?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentDataSourceDataSourceConfigurationSharePointConfigurationCrawlerConfigurationFilterConfigurationPatternObjectFilterFilter>[]>;
|
|
10041
10048
|
}
|
|
10042
10049
|
interface AgentDataSourceDataSourceConfigurationSharePointConfigurationCrawlerConfigurationFilterConfigurationPatternObjectFilterFilter {
|
|
10043
|
-
/**
|
|
10044
|
-
* A list of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern.
|
|
10045
|
-
*/
|
|
10046
10050
|
exclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10047
|
-
/**
|
|
10048
|
-
* A list of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern.
|
|
10049
|
-
*/
|
|
10050
10051
|
inclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10051
10052
|
/**
|
|
10052
10053
|
* The supported object type or content type of the data source.
|
|
@@ -10084,29 +10085,53 @@ export declare namespace bedrock {
|
|
|
10084
10085
|
sourceConfiguration?: pulumi.Input<inputs.bedrock.AgentDataSourceDataSourceConfigurationWebConfigurationSourceConfiguration>;
|
|
10085
10086
|
}
|
|
10086
10087
|
interface AgentDataSourceDataSourceConfigurationWebConfigurationCrawlerConfiguration {
|
|
10088
|
+
/**
|
|
10089
|
+
* Configuration of crawl limits for the web URLs. See `crawlerLimits` block for details.
|
|
10090
|
+
*/
|
|
10087
10091
|
crawlerLimits?: pulumi.Input<inputs.bedrock.AgentDataSourceDataSourceConfigurationWebConfigurationCrawlerConfigurationCrawlerLimits>;
|
|
10088
10092
|
/**
|
|
10089
|
-
*
|
|
10093
|
+
* List of one or more exclusion regular expression patterns to exclude certain object types that adhere to the pattern.
|
|
10090
10094
|
*/
|
|
10091
10095
|
exclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10092
10096
|
/**
|
|
10093
|
-
*
|
|
10097
|
+
* List of one or more inclusion regular expression patterns to include certain object types that adhere to the pattern.
|
|
10094
10098
|
*/
|
|
10095
10099
|
inclusionFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10100
|
+
/**
|
|
10101
|
+
* Scope of what is crawled for your URLs.
|
|
10102
|
+
*/
|
|
10096
10103
|
scope?: pulumi.Input<string>;
|
|
10104
|
+
/**
|
|
10105
|
+
* String used for identifying the crawler or a bot when it accesses a web server. Default value is `bedrockbot_UUID`.
|
|
10106
|
+
*/
|
|
10097
10107
|
userAgent?: pulumi.Input<string>;
|
|
10098
10108
|
}
|
|
10099
10109
|
interface AgentDataSourceDataSourceConfigurationWebConfigurationCrawlerConfigurationCrawlerLimits {
|
|
10110
|
+
/**
|
|
10111
|
+
* Max number of web pages crawled from your source URLs, up to 25,000 pages.
|
|
10112
|
+
*/
|
|
10100
10113
|
maxPages?: pulumi.Input<number>;
|
|
10114
|
+
/**
|
|
10115
|
+
* Max rate at which pages are crawled, up to 300 per minute per host.
|
|
10116
|
+
*/
|
|
10101
10117
|
rateLimit?: pulumi.Input<number>;
|
|
10102
10118
|
}
|
|
10103
10119
|
interface AgentDataSourceDataSourceConfigurationWebConfigurationSourceConfiguration {
|
|
10120
|
+
/**
|
|
10121
|
+
* The URL configuration of your web data source. See `urlConfiguration` block for details.
|
|
10122
|
+
*/
|
|
10104
10123
|
urlConfiguration?: pulumi.Input<inputs.bedrock.AgentDataSourceDataSourceConfigurationWebConfigurationSourceConfigurationUrlConfiguration>;
|
|
10105
10124
|
}
|
|
10106
10125
|
interface AgentDataSourceDataSourceConfigurationWebConfigurationSourceConfigurationUrlConfiguration {
|
|
10126
|
+
/**
|
|
10127
|
+
* List of one or more seed URLs to crawl. See `seedUrls` block for details.
|
|
10128
|
+
*/
|
|
10107
10129
|
seedUrls?: pulumi.Input<pulumi.Input<inputs.bedrock.AgentDataSourceDataSourceConfigurationWebConfigurationSourceConfigurationUrlConfigurationSeedUrl>[]>;
|
|
10108
10130
|
}
|
|
10109
10131
|
interface AgentDataSourceDataSourceConfigurationWebConfigurationSourceConfigurationUrlConfigurationSeedUrl {
|
|
10132
|
+
/**
|
|
10133
|
+
* Seed or starting point URL. Must match the pattern `^https?://[A-Za-z0-9][^\s]*$`.
|
|
10134
|
+
*/
|
|
10110
10135
|
url?: pulumi.Input<string>;
|
|
10111
10136
|
}
|
|
10112
10137
|
interface AgentDataSourceServerSideEncryptionConfiguration {
|
|
@@ -10808,29 +10833,33 @@ export declare namespace bedrockfoundation {
|
|
|
10808
10833
|
export declare namespace bedrockmodel {
|
|
10809
10834
|
interface InvocationLoggingConfigurationLoggingConfig {
|
|
10810
10835
|
/**
|
|
10811
|
-
* CloudWatch logging configuration.
|
|
10836
|
+
* CloudWatch logging configuration. See `cloudwatchConfig` Block for details.
|
|
10812
10837
|
*/
|
|
10813
10838
|
cloudwatchConfig?: pulumi.Input<inputs.bedrockmodel.InvocationLoggingConfigurationLoggingConfigCloudwatchConfig>;
|
|
10814
10839
|
/**
|
|
10815
|
-
* Set to include embeddings data in the log delivery.
|
|
10840
|
+
* Set to include embeddings data in the log delivery. Defaults to `true`.
|
|
10816
10841
|
*/
|
|
10817
|
-
embeddingDataDeliveryEnabled
|
|
10842
|
+
embeddingDataDeliveryEnabled?: pulumi.Input<boolean>;
|
|
10818
10843
|
/**
|
|
10819
|
-
* Set to include image data in the log delivery.
|
|
10844
|
+
* Set to include image data in the log delivery. Defaults to `true`.
|
|
10820
10845
|
*/
|
|
10821
|
-
imageDataDeliveryEnabled
|
|
10846
|
+
imageDataDeliveryEnabled?: pulumi.Input<boolean>;
|
|
10822
10847
|
/**
|
|
10823
|
-
* S3 configuration for storing log data.
|
|
10848
|
+
* S3 configuration for storing log data. See `s3Config` Block for details.
|
|
10824
10849
|
*/
|
|
10825
10850
|
s3Config?: pulumi.Input<inputs.bedrockmodel.InvocationLoggingConfigurationLoggingConfigS3Config>;
|
|
10826
10851
|
/**
|
|
10827
|
-
* Set to include text data in the log delivery.
|
|
10852
|
+
* Set to include text data in the log delivery. Defaults to `true`.
|
|
10853
|
+
*/
|
|
10854
|
+
textDataDeliveryEnabled?: pulumi.Input<boolean>;
|
|
10855
|
+
/**
|
|
10856
|
+
* Set to include text data in the log delivery. Defaults to `true`.
|
|
10828
10857
|
*/
|
|
10829
|
-
|
|
10858
|
+
videoDataDeliveryEnabled?: pulumi.Input<boolean>;
|
|
10830
10859
|
}
|
|
10831
10860
|
interface InvocationLoggingConfigurationLoggingConfigCloudwatchConfig {
|
|
10832
10861
|
/**
|
|
10833
|
-
* S3 configuration for delivering a large amount of data.
|
|
10862
|
+
* S3 configuration for delivering a large amount of data. See `largeDataDeliveryS3Config` Block for details.
|
|
10834
10863
|
*/
|
|
10835
10864
|
largeDataDeliveryS3Config?: pulumi.Input<inputs.bedrockmodel.InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config>;
|
|
10836
10865
|
/**
|
|
@@ -11150,7 +11179,7 @@ export declare namespace cfg {
|
|
|
11150
11179
|
}
|
|
11151
11180
|
interface RecorderRecordingMode {
|
|
11152
11181
|
/**
|
|
11153
|
-
* Default
|
|
11182
|
+
* Default recording frequency. `CONTINUOUS` or `DAILY`.
|
|
11154
11183
|
*/
|
|
11155
11184
|
recordingFrequency?: pulumi.Input<string>;
|
|
11156
11185
|
/**
|
|
@@ -19983,6 +20012,11 @@ export declare namespace dynamodb {
|
|
|
19983
20012
|
*/
|
|
19984
20013
|
type: pulumi.Input<string>;
|
|
19985
20014
|
}
|
|
20015
|
+
interface TableExportIncrementalExportSpecification {
|
|
20016
|
+
exportFromTime?: pulumi.Input<string>;
|
|
20017
|
+
exportToTime?: pulumi.Input<string>;
|
|
20018
|
+
exportViewType?: pulumi.Input<string>;
|
|
20019
|
+
}
|
|
19986
20020
|
interface TableGlobalSecondaryIndex {
|
|
19987
20021
|
/**
|
|
19988
20022
|
* Name of the hash key in the index; must be defined as an attribute in the resource.
|
|
@@ -20120,7 +20154,10 @@ export declare namespace dynamodb {
|
|
|
20120
20154
|
*/
|
|
20121
20155
|
arn?: pulumi.Input<string>;
|
|
20122
20156
|
/**
|
|
20123
|
-
* ARN of the CMK that should be used for the AWS KMS encryption.
|
|
20157
|
+
* ARN of the CMK that should be used for the AWS KMS encryption.
|
|
20158
|
+
* This argument should only be used if the key is different from the default KMS-managed DynamoDB key, `alias/aws/dynamodb`.
|
|
20159
|
+
* **Note:** This attribute will _not_ be populated with the ARN of _default_ keys.
|
|
20160
|
+
* **Note:** Changing this value will recreate the replica.
|
|
20124
20161
|
*/
|
|
20125
20162
|
kmsKeyArn?: pulumi.Input<string>;
|
|
20126
20163
|
/**
|
|
@@ -20128,7 +20165,12 @@ export declare namespace dynamodb {
|
|
|
20128
20165
|
*/
|
|
20129
20166
|
pointInTimeRecovery?: pulumi.Input<boolean>;
|
|
20130
20167
|
/**
|
|
20131
|
-
* Whether to propagate the global table's tags to a replica.
|
|
20168
|
+
* Whether to propagate the global table's tags to a replica.
|
|
20169
|
+
* Default is `false`.
|
|
20170
|
+
* Changes to tags only move in one direction: from global (source) to replica.
|
|
20171
|
+
* Tag drift on a replica will not trigger an update.
|
|
20172
|
+
* Tag changes on the global table are propagated to replicas.
|
|
20173
|
+
* Changing from `true` to `false` on a subsequent `apply` leaves replica tags as-is and no longer manages them.
|
|
20132
20174
|
*/
|
|
20133
20175
|
propagateTags?: pulumi.Input<boolean>;
|
|
20134
20176
|
/**
|
|
@@ -26857,7 +26899,7 @@ export declare namespace eks {
|
|
|
26857
26899
|
*/
|
|
26858
26900
|
serviceIpv4Cidr?: pulumi.Input<string>;
|
|
26859
26901
|
/**
|
|
26860
|
-
* The CIDR block that Kubernetes pod and service IP addresses are assigned from if you
|
|
26902
|
+
* The CIDR block that Kubernetes pod and service IP addresses are assigned from if you specify `ipv6` for `ipFamily` when you create the cluster. Kubernetes assigns service addresses from the unique local address range (fc00::/7) because you can't specify a custom IPv6 CIDR block when you create the cluster.
|
|
26861
26903
|
*/
|
|
26862
26904
|
serviceIpv6Cidr?: pulumi.Input<string>;
|
|
26863
26905
|
}
|
|
@@ -26919,9 +26961,15 @@ export declare namespace eks {
|
|
|
26919
26961
|
cidrs?: pulumi.Input<pulumi.Input<string>[]>;
|
|
26920
26962
|
}
|
|
26921
26963
|
interface ClusterStorageConfig {
|
|
26964
|
+
/**
|
|
26965
|
+
* Configuration block with block storage configuration for the cluster. Detailed below.
|
|
26966
|
+
*/
|
|
26922
26967
|
blockStorage?: pulumi.Input<inputs.eks.ClusterStorageConfigBlockStorage>;
|
|
26923
26968
|
}
|
|
26924
26969
|
interface ClusterStorageConfigBlockStorage {
|
|
26970
|
+
/**
|
|
26971
|
+
* Indicates if the block storage capability is enabled on your EKS Auto Mode cluster. If the block storage capability is enabled, EKS Auto Mode will create and delete block storage volumes in your Amazon Web Services account.
|
|
26972
|
+
*/
|
|
26925
26973
|
enabled?: pulumi.Input<boolean>;
|
|
26926
26974
|
}
|
|
26927
26975
|
interface ClusterUpgradePolicy {
|
|
@@ -26932,7 +26980,7 @@ export declare namespace eks {
|
|
|
26932
26980
|
}
|
|
26933
26981
|
interface ClusterVpcConfig {
|
|
26934
26982
|
/**
|
|
26935
|
-
* Cluster security group that
|
|
26983
|
+
* Cluster security group that is created by Amazon EKS for the cluster. Managed node groups use this security group for control-plane-to-data-plane communication.
|
|
26936
26984
|
*/
|
|
26937
26985
|
clusterSecurityGroupId?: pulumi.Input<string>;
|
|
26938
26986
|
/**
|
|
@@ -31416,6 +31464,10 @@ export declare namespace glue {
|
|
|
31416
31464
|
keys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
31417
31465
|
}
|
|
31418
31466
|
interface PartitionStorageDescriptor {
|
|
31467
|
+
/**
|
|
31468
|
+
* List of locations that point to the path where a Delta table is located.
|
|
31469
|
+
*/
|
|
31470
|
+
additionalLocations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
31419
31471
|
/**
|
|
31420
31472
|
* A list of reducer grouping columns, clustering columns, and bucketing columns in the table.
|
|
31421
31473
|
*/
|
|
@@ -59558,6 +59610,34 @@ export declare namespace pricing {
|
|
|
59558
59610
|
value: pulumi.Input<string>;
|
|
59559
59611
|
}
|
|
59560
59612
|
}
|
|
59613
|
+
export declare namespace qbusiness {
|
|
59614
|
+
interface ApplicationAttachmentsConfiguration {
|
|
59615
|
+
/**
|
|
59616
|
+
* Status information about whether file upload functionality is activated or deactivated for your end user. Valid values are `ENABLED` and `DISABLED`.
|
|
59617
|
+
*/
|
|
59618
|
+
attachmentsControlMode: pulumi.Input<string>;
|
|
59619
|
+
}
|
|
59620
|
+
interface ApplicationEncryptionConfiguration {
|
|
59621
|
+
/**
|
|
59622
|
+
* Identifier of the AWS KMS key that is used to encrypt your data. Amazon Q doesn't support asymmetric keys.
|
|
59623
|
+
*/
|
|
59624
|
+
kmsKeyId: pulumi.Input<string>;
|
|
59625
|
+
}
|
|
59626
|
+
interface ApplicationTimeouts {
|
|
59627
|
+
/**
|
|
59628
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
59629
|
+
*/
|
|
59630
|
+
create?: pulumi.Input<string>;
|
|
59631
|
+
/**
|
|
59632
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
59633
|
+
*/
|
|
59634
|
+
delete?: pulumi.Input<string>;
|
|
59635
|
+
/**
|
|
59636
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
59637
|
+
*/
|
|
59638
|
+
update?: pulumi.Input<string>;
|
|
59639
|
+
}
|
|
59640
|
+
}
|
|
59561
59641
|
export declare namespace qldb {
|
|
59562
59642
|
interface StreamKinesisConfiguration {
|
|
59563
59643
|
/**
|
|
@@ -60598,6 +60678,10 @@ export declare namespace quicksight {
|
|
|
60598
60678
|
* An object containing the S3 location of the S3 manifest file.
|
|
60599
60679
|
*/
|
|
60600
60680
|
manifestFileLocation: pulumi.Input<inputs.quicksight.DataSourceParametersS3ManifestFileLocation>;
|
|
60681
|
+
/**
|
|
60682
|
+
* Use the `roleArn` to override an account-wide role for a specific S3 data source. For example, say an account administrator has turned off all S3 access with an account-wide role. The administrator can then use `roleArn` to bypass the account-wide role and allow S3 access for the single S3 data source that is specified in the structure, even if the account-wide role forbidding S3 access is still active.
|
|
60683
|
+
*/
|
|
60684
|
+
roleArn?: pulumi.Input<string>;
|
|
60601
60685
|
}
|
|
60602
60686
|
interface DataSourceParametersS3ManifestFileLocation {
|
|
60603
60687
|
/**
|
|
@@ -62598,7 +62682,7 @@ export declare namespace route53 {
|
|
|
62598
62682
|
}
|
|
62599
62683
|
interface ResolverRuleTargetIp {
|
|
62600
62684
|
/**
|
|
62601
|
-
* One
|
|
62685
|
+
* One IPv4 address that you want to forward DNS queries to.
|
|
62602
62686
|
*/
|
|
62603
62687
|
ip?: pulumi.Input<string>;
|
|
62604
62688
|
/**
|
|
@@ -65334,14 +65418,14 @@ export declare namespace s3tables {
|
|
|
65334
65418
|
interface TableBucketMaintenanceConfiguration {
|
|
65335
65419
|
/**
|
|
65336
65420
|
* A single Iceberg unreferenced file removal settings block.
|
|
65337
|
-
* See `icebergUnreferencedFileRemoval` below
|
|
65421
|
+
* See `icebergUnreferencedFileRemoval` below.
|
|
65338
65422
|
*/
|
|
65339
65423
|
icebergUnreferencedFileRemoval: pulumi.Input<inputs.s3tables.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemoval>;
|
|
65340
65424
|
}
|
|
65341
65425
|
interface TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemoval {
|
|
65342
65426
|
/**
|
|
65343
65427
|
* Settings for unreferenced file removal.
|
|
65344
|
-
* See `iceberg_unreferenced_file_removal.settings` below
|
|
65428
|
+
* See `iceberg_unreferenced_file_removal.settings` below.
|
|
65345
65429
|
*/
|
|
65346
65430
|
settings: pulumi.Input<inputs.s3tables.TableBucketMaintenanceConfigurationIcebergUnreferencedFileRemovalSettings>;
|
|
65347
65431
|
/**
|
|
@@ -65365,19 +65449,19 @@ export declare namespace s3tables {
|
|
|
65365
65449
|
interface TableMaintenanceConfiguration {
|
|
65366
65450
|
/**
|
|
65367
65451
|
* A single Iceberg compaction settings block.
|
|
65368
|
-
* See `icebergCompaction` below
|
|
65452
|
+
* See `icebergCompaction` below.
|
|
65369
65453
|
*/
|
|
65370
65454
|
icebergCompaction: pulumi.Input<inputs.s3tables.TableMaintenanceConfigurationIcebergCompaction>;
|
|
65371
65455
|
/**
|
|
65372
65456
|
* A single Iceberg snapshot management settings block.
|
|
65373
|
-
* See `icebergSnapshotManagement` below
|
|
65457
|
+
* See `icebergSnapshotManagement` below.
|
|
65374
65458
|
*/
|
|
65375
65459
|
icebergSnapshotManagement: pulumi.Input<inputs.s3tables.TableMaintenanceConfigurationIcebergSnapshotManagement>;
|
|
65376
65460
|
}
|
|
65377
65461
|
interface TableMaintenanceConfigurationIcebergCompaction {
|
|
65378
65462
|
/**
|
|
65379
65463
|
* Settings for compaction.
|
|
65380
|
-
* See `iceberg_compaction.settings` below
|
|
65464
|
+
* See `iceberg_compaction.settings` below.
|
|
65381
65465
|
*/
|
|
65382
65466
|
settings: pulumi.Input<inputs.s3tables.TableMaintenanceConfigurationIcebergCompactionSettings>;
|
|
65383
65467
|
/**
|
|
@@ -65396,7 +65480,7 @@ export declare namespace s3tables {
|
|
|
65396
65480
|
interface TableMaintenanceConfigurationIcebergSnapshotManagement {
|
|
65397
65481
|
/**
|
|
65398
65482
|
* Settings for snapshot management.
|
|
65399
|
-
* See `iceberg_snapshot_management.settings` below
|
|
65483
|
+
* See `iceberg_snapshot_management.settings` below.
|
|
65400
65484
|
*/
|
|
65401
65485
|
settings: pulumi.Input<inputs.s3tables.TableMaintenanceConfigurationIcebergSnapshotManagementSettings>;
|
|
65402
65486
|
/**
|
|
@@ -66803,7 +66887,8 @@ export declare namespace sagemaker {
|
|
|
66803
66887
|
}
|
|
66804
66888
|
interface EndpointConfigurationDataCaptureConfig {
|
|
66805
66889
|
/**
|
|
66806
|
-
* The content type headers to capture.
|
|
66890
|
+
* The content type headers to capture.
|
|
66891
|
+
* See `captureContentTypeHeader` below.
|
|
66807
66892
|
*/
|
|
66808
66893
|
captureContentTypeHeader?: pulumi.Input<inputs.sagemaker.EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader>;
|
|
66809
66894
|
/**
|
|
@@ -66830,10 +66915,12 @@ export declare namespace sagemaker {
|
|
|
66830
66915
|
interface EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader {
|
|
66831
66916
|
/**
|
|
66832
66917
|
* The CSV content type headers to capture.
|
|
66918
|
+
* One of `csvContentTypes` or `jsonContentTypes` is required.
|
|
66833
66919
|
*/
|
|
66834
66920
|
csvContentTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
66835
66921
|
/**
|
|
66836
66922
|
* The JSON content type headers to capture.
|
|
66923
|
+
* One of `jsonContentTypes` or `csvContentTypes` is required.
|
|
66837
66924
|
*/
|
|
66838
66925
|
jsonContentTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
66839
66926
|
}
|