@intentius/chant-lexicon-aws 0.0.22 → 0.1.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/dist/integrity.json +6 -5
- package/dist/manifest.json +1 -1
- package/dist/meta.json +1399 -213
- package/{src/skills/chant-eks.md → dist/skills/chant-aws-eks.md} +2 -2
- package/dist/skills/chant-aws.md +3 -3
- package/dist/types/index.d.ts +1394 -364
- package/package.json +5 -2
- package/src/composites/alb-shared.ts +14 -7
- package/src/composites/composites.test.ts +82 -0
- package/src/composites/fargate-alb.ts +24 -14
- package/src/composites/fargate-service.ts +16 -9
- package/src/composites/lambda-api.ts +7 -3
- package/src/composites/lambda-dynamodb.ts +8 -3
- package/src/composites/lambda-eventbridge.ts +10 -5
- package/src/composites/lambda-function.ts +10 -5
- package/src/composites/lambda-s3.ts +8 -3
- package/src/composites/lambda-sns.ts +13 -7
- package/src/composites/lambda-sqs.ts +11 -5
- package/src/composites/rds-instance.ts +15 -8
- package/src/composites/scheduled-lambda.ts +10 -5
- package/src/composites/vpc-default.ts +81 -30
- package/src/generated/index.d.ts +1394 -364
- package/src/generated/index.ts +114 -22
- package/src/generated/lexicon-aws.json +1399 -213
- package/src/plugin.ts +90 -574
- package/src/skills/chant-aws-eks.md +178 -0
- package/src/skills/chant-aws.md +430 -0
package/dist/types/index.d.ts
CHANGED
|
@@ -176,6 +176,52 @@ export declare class AccessPointPolicy {
|
|
|
176
176
|
}, attributes?: CFResourceAttributes);
|
|
177
177
|
}
|
|
178
178
|
|
|
179
|
+
export declare class AccessSource {
|
|
180
|
+
constructor(props: {
|
|
181
|
+
Cidr: string;
|
|
182
|
+
DnsViewId: string;
|
|
183
|
+
Protocol: AccessSource_DnsProtocol;
|
|
184
|
+
AccessSourceId?: string;
|
|
185
|
+
Arn?: string;
|
|
186
|
+
ClientToken?: string;
|
|
187
|
+
CreatedAt?: string;
|
|
188
|
+
IpAddressType?: AccessSource_IpAddressType;
|
|
189
|
+
Name?: string;
|
|
190
|
+
Status?: AccessSource_CRResourceStatus;
|
|
191
|
+
Tags?: AccessSource_Tag[];
|
|
192
|
+
UpdatedAt?: string;
|
|
193
|
+
}, attributes?: CFResourceAttributes);
|
|
194
|
+
readonly AccessSourceId: string;
|
|
195
|
+
readonly Arn: string;
|
|
196
|
+
readonly CreatedAt: string;
|
|
197
|
+
readonly Status: AccessSource_CRResourceStatus;
|
|
198
|
+
readonly UpdatedAt: string;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export declare class AccessToken {
|
|
202
|
+
constructor(props: {
|
|
203
|
+
DnsViewId: string;
|
|
204
|
+
AccessTokenId?: string;
|
|
205
|
+
Arn?: string;
|
|
206
|
+
ClientToken?: string;
|
|
207
|
+
CreatedAt?: string;
|
|
208
|
+
ExpiresAt?: string;
|
|
209
|
+
GlobalResolverId?: string;
|
|
210
|
+
Name?: string;
|
|
211
|
+
Status?: AccessToken_TokenStatus;
|
|
212
|
+
Tags?: AccessToken_Tag[];
|
|
213
|
+
UpdatedAt?: string;
|
|
214
|
+
Value?: string;
|
|
215
|
+
}, attributes?: CFResourceAttributes);
|
|
216
|
+
readonly AccessTokenId: string;
|
|
217
|
+
readonly Arn: string;
|
|
218
|
+
readonly CreatedAt: string;
|
|
219
|
+
readonly GlobalResolverId: string;
|
|
220
|
+
readonly Status: AccessToken_TokenStatus;
|
|
221
|
+
readonly UpdatedAt: string;
|
|
222
|
+
readonly Value: string;
|
|
223
|
+
}
|
|
224
|
+
|
|
179
225
|
export declare class AccountAlias {
|
|
180
226
|
constructor(props: {
|
|
181
227
|
/** An account alias associated with a customer's account. */
|
|
@@ -197,6 +243,20 @@ export declare class AccountAuditConfiguration {
|
|
|
197
243
|
}, attributes?: CFResourceAttributes);
|
|
198
244
|
}
|
|
199
245
|
|
|
246
|
+
export declare class AccountCustomization {
|
|
247
|
+
constructor(props: {
|
|
248
|
+
/** The color theme assigned to the account for visual identification in the AWS Console. */
|
|
249
|
+
AccountColor?: "darkBlue" | "green" | "lightBlue" | "none" | "orange" | "pink" | "purple" | "red" | "teal" | "yellow";
|
|
250
|
+
/** The AWS account ID that this customization belongs to. This is automatically determined from the caller's identity. */
|
|
251
|
+
AccountId?: string;
|
|
252
|
+
/** A list of AWS region identifiers visible to the account in the AWS Console. */
|
|
253
|
+
VisibleRegions?: string[];
|
|
254
|
+
/** A list of AWS service identifiers visible to the account in the AWS Console. */
|
|
255
|
+
VisibleServices?: string[];
|
|
256
|
+
}, attributes?: CFResourceAttributes);
|
|
257
|
+
readonly AccountId: string;
|
|
258
|
+
}
|
|
259
|
+
|
|
200
260
|
export declare class AccountPolicy {
|
|
201
261
|
constructor(props: {
|
|
202
262
|
/** The body of the policy document you want to use for this topic.
|
|
@@ -3120,6 +3180,7 @@ export declare class BedrockAgentCoreGateway {
|
|
|
3120
3180
|
GatewayUrl?: string;
|
|
3121
3181
|
InterceptorConfigurations?: BedrockAgentCoreGateway_GatewayInterceptorConfiguration[];
|
|
3122
3182
|
KmsKeyArn?: string;
|
|
3183
|
+
PolicyEngineConfiguration?: BedrockAgentCoreGateway_GatewayPolicyEngineConfiguration;
|
|
3123
3184
|
ProtocolConfiguration?: any;
|
|
3124
3185
|
Status?: BedrockAgentCoreGateway_GatewayStatus;
|
|
3125
3186
|
StatusReasons?: string[];
|
|
@@ -3676,6 +3737,8 @@ export declare class Bucket {
|
|
|
3676
3737
|
/** A name for the bucket. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name. The bucket name must contain only lowercase letters, numbers, periods (.), and dashes (-) and must follow [Amazon S3 bucket restrictions and limitations](https://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html). For more information, see [Rules for naming Amazon S3 buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html) in the *Amazon S3 User Guide*.
|
|
3677
3738
|
If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name. */
|
|
3678
3739
|
BucketName?: string;
|
|
3740
|
+
BucketNamePrefix?: string;
|
|
3741
|
+
BucketNamespace?: "account-regional" | "global";
|
|
3679
3742
|
/** Describes the cross-origin access configuration for objects in an Amazon S3 bucket. For more information, see [Enabling Cross-Origin Resource Sharing](https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html) in the *Amazon S3 User Guide*. */
|
|
3680
3743
|
CorsConfiguration?: Bucket_CorsConfiguration;
|
|
3681
3744
|
DomainName?: string;
|
|
@@ -4091,6 +4154,52 @@ export declare class CassandraTable {
|
|
|
4091
4154
|
}, attributes?: CFResourceAttributes);
|
|
4092
4155
|
}
|
|
4093
4156
|
|
|
4157
|
+
export declare class Catalog {
|
|
4158
|
+
constructor(props: {
|
|
4159
|
+
/** The name of the catalog to create. */
|
|
4160
|
+
Name: string;
|
|
4161
|
+
/** Allows third-party engines to access data in Amazon S3 locations that are registered with Lake Formation. */
|
|
4162
|
+
AllowFullTableExternalDataAccess?: "False" | "True";
|
|
4163
|
+
/** The ID of the catalog. */
|
|
4164
|
+
CatalogId?: string;
|
|
4165
|
+
CatalogProperties?: Catalog_CatalogProperties;
|
|
4166
|
+
/** An array of PrincipalPermissions objects for default database permissions. */
|
|
4167
|
+
CreateDatabaseDefaultPermissions?: Catalog_PrincipalPermissions[];
|
|
4168
|
+
/** An array of PrincipalPermissions objects for default table permissions. */
|
|
4169
|
+
CreateTableDefaultPermissions?: Catalog_PrincipalPermissions[];
|
|
4170
|
+
/** The time at which the catalog was created. */
|
|
4171
|
+
CreateTime?: number;
|
|
4172
|
+
/** A description of the catalog. */
|
|
4173
|
+
Description?: string;
|
|
4174
|
+
FederatedCatalog?: Catalog_FederatedCatalog;
|
|
4175
|
+
/** Specifies whether to overwrite child resource permissions with the default permissions. */
|
|
4176
|
+
OverwriteChildResourcePermissionsWithDefault?: "Accept" | "Deny";
|
|
4177
|
+
/** A map of key-value pairs that define parameters and properties of the catalog. */
|
|
4178
|
+
Parameters?: Record<string, unknown>;
|
|
4179
|
+
/** The Amazon Resource Name (ARN) of the catalog. */
|
|
4180
|
+
ResourceArn?: string;
|
|
4181
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
4182
|
+
Tags?: Catalog_Tag[];
|
|
4183
|
+
TargetRedshiftCatalog?: Catalog_TargetRedshiftCatalog;
|
|
4184
|
+
/** The time at which the catalog was last updated. */
|
|
4185
|
+
UpdateTime?: number;
|
|
4186
|
+
}, attributes?: CFResourceAttributes);
|
|
4187
|
+
readonly CatalogId: string;
|
|
4188
|
+
readonly CatalogProperties_CustomProperties: string;
|
|
4189
|
+
readonly CatalogProperties_DataLakeAccessProperties_ManagedWorkgroupName: string;
|
|
4190
|
+
readonly CatalogProperties_DataLakeAccessProperties_ManagedWorkgroupStatus: string;
|
|
4191
|
+
readonly CatalogProperties_DataLakeAccessProperties_RedshiftDatabaseName: string;
|
|
4192
|
+
readonly CreateDatabaseDefaultPermissions_Item_Permissions: string;
|
|
4193
|
+
readonly CreateDatabaseDefaultPermissions_Item_Principal: string;
|
|
4194
|
+
readonly CreateDatabaseDefaultPermissions_Item_Principal_DataLakePrincipalIdentifier: string;
|
|
4195
|
+
readonly CreateTableDefaultPermissions_Item_Permissions: string;
|
|
4196
|
+
readonly CreateTableDefaultPermissions_Item_Principal: string;
|
|
4197
|
+
readonly CreateTableDefaultPermissions_Item_Principal_DataLakePrincipalIdentifier: string;
|
|
4198
|
+
readonly CreateTime: number;
|
|
4199
|
+
readonly ResourceArn: string;
|
|
4200
|
+
readonly UpdateTime: number;
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4094
4203
|
export declare class Cell {
|
|
4095
4204
|
constructor(props: {
|
|
4096
4205
|
/** The Amazon Resource Name (ARN) of the cell. */
|
|
@@ -4499,6 +4608,8 @@ export declare class CloudAutonomousVmCluster {
|
|
|
4499
4608
|
ExadataStorageInTBsLowestScaledValue?: number;
|
|
4500
4609
|
/** The hostname for the Autonomous VM cluster. */
|
|
4501
4610
|
Hostname?: string;
|
|
4611
|
+
/** The AWS Identity and Access Management (IAM) service roles associated with the Autonomous VM cluster. */
|
|
4612
|
+
IamRoles?: CloudAutonomousVmCluster_IamRole[];
|
|
4502
4613
|
/** Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. */
|
|
4503
4614
|
IsMtlsEnabledVmCluster?: boolean;
|
|
4504
4615
|
/** The Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. */
|
|
@@ -4561,6 +4672,7 @@ export declare class CloudAutonomousVmCluster {
|
|
|
4561
4672
|
readonly Domain: string;
|
|
4562
4673
|
readonly ExadataStorageInTBsLowestScaledValue: number;
|
|
4563
4674
|
readonly Hostname: string;
|
|
4675
|
+
readonly IamRoles_Item_Status: string;
|
|
4564
4676
|
readonly MaxAcdsLowestScaledValue: number;
|
|
4565
4677
|
readonly MemorySizeInGBs: number;
|
|
4566
4678
|
readonly NodeCount: number;
|
|
@@ -4815,6 +4927,8 @@ export declare class CloudVmCluster {
|
|
|
4815
4927
|
GiVersion?: string;
|
|
4816
4928
|
/** The host name for the VM cluster. */
|
|
4817
4929
|
Hostname?: string;
|
|
4930
|
+
/** The AWS Identity and Access Management (IAM) service roles associated with the VM cluster. */
|
|
4931
|
+
IamRoles?: CloudVmCluster_IamRole[];
|
|
4818
4932
|
/** Indicates whether database backups to local Exadata storage is enabled for the VM cluster. */
|
|
4819
4933
|
IsLocalBackupEnabled?: boolean;
|
|
4820
4934
|
/** Indicates whether the VM cluster is configured with a sparse disk group. */
|
|
@@ -4875,6 +4989,7 @@ export declare class CloudVmCluster {
|
|
|
4875
4989
|
readonly DbNodes_Item_VnicId: string;
|
|
4876
4990
|
readonly DiskRedundancy: string;
|
|
4877
4991
|
readonly Domain: string;
|
|
4992
|
+
readonly IamRoles_Item_Status: string;
|
|
4878
4993
|
readonly ListenerPort: number;
|
|
4879
4994
|
readonly NodeCount: number;
|
|
4880
4995
|
readonly Ocid: string;
|
|
@@ -5821,6 +5936,37 @@ Constraint: If both solution stack name and source configuration are specified,
|
|
|
5821
5936
|
readonly TemplateName: string;
|
|
5822
5937
|
}
|
|
5823
5938
|
|
|
5939
|
+
export declare class ConfiguredModelAlgorithm {
|
|
5940
|
+
constructor(props: {
|
|
5941
|
+
Name: string;
|
|
5942
|
+
RoleArn: string;
|
|
5943
|
+
ConfiguredModelAlgorithmArn?: string;
|
|
5944
|
+
Description?: string;
|
|
5945
|
+
InferenceContainerConfig?: ConfiguredModelAlgorithm_InferenceContainerConfig;
|
|
5946
|
+
KmsKeyArn?: string;
|
|
5947
|
+
/** An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm. */
|
|
5948
|
+
Tags?: ConfiguredModelAlgorithm_Tag[];
|
|
5949
|
+
TrainingContainerConfig?: ConfiguredModelAlgorithm_ContainerConfig;
|
|
5950
|
+
}, attributes?: CFResourceAttributes);
|
|
5951
|
+
readonly ConfiguredModelAlgorithmArn: string;
|
|
5952
|
+
}
|
|
5953
|
+
|
|
5954
|
+
export declare class ConfiguredModelAlgorithmAssociation {
|
|
5955
|
+
constructor(props: {
|
|
5956
|
+
ConfiguredModelAlgorithmArn: string;
|
|
5957
|
+
MembershipIdentifier: string;
|
|
5958
|
+
Name: string;
|
|
5959
|
+
CollaborationIdentifier?: string;
|
|
5960
|
+
ConfiguredModelAlgorithmAssociationArn?: string;
|
|
5961
|
+
Description?: string;
|
|
5962
|
+
PrivacyConfiguration?: ConfiguredModelAlgorithmAssociation_PrivacyConfiguration;
|
|
5963
|
+
/** An arbitrary set of tags (key-value pairs) for this cleanrooms-ml configured model algorithm association. */
|
|
5964
|
+
Tags?: ConfiguredModelAlgorithmAssociation_Tag[];
|
|
5965
|
+
}, attributes?: CFResourceAttributes);
|
|
5966
|
+
readonly CollaborationIdentifier: string;
|
|
5967
|
+
readonly ConfiguredModelAlgorithmAssociationArn: string;
|
|
5968
|
+
}
|
|
5969
|
+
|
|
5824
5970
|
export declare class ConfiguredTable {
|
|
5825
5971
|
constructor(props: {
|
|
5826
5972
|
AllowedColumns: string[];
|
|
@@ -7592,17 +7738,17 @@ export declare class DataLake {
|
|
|
7592
7738
|
|
|
7593
7739
|
export declare class DataLakeSettings {
|
|
7594
7740
|
constructor(props: {
|
|
7595
|
-
Admins?:
|
|
7741
|
+
Admins?: DataLakeSettings_DataLakePrincipal[];
|
|
7596
7742
|
AllowExternalDataFiltering?: boolean;
|
|
7597
7743
|
AllowFullTableExternalDataAccess?: boolean;
|
|
7598
7744
|
AuthorizedSessionTagValueList?: string[];
|
|
7599
|
-
CreateDatabaseDefaultPermissions?:
|
|
7600
|
-
CreateTableDefaultPermissions?:
|
|
7601
|
-
ExternalDataFilteringAllowList?:
|
|
7745
|
+
CreateDatabaseDefaultPermissions?: DataLakeSettings_PrincipalPermissions[];
|
|
7746
|
+
CreateTableDefaultPermissions?: DataLakeSettings_PrincipalPermissions[];
|
|
7747
|
+
ExternalDataFilteringAllowList?: DataLakeSettings_DataLakePrincipal[];
|
|
7602
7748
|
Id?: string;
|
|
7603
7749
|
MutationType?: string;
|
|
7604
7750
|
Parameters?: Record<string, unknown>;
|
|
7605
|
-
ReadOnlyAdmins?:
|
|
7751
|
+
ReadOnlyAdmins?: DataLakeSettings_DataLakePrincipal[];
|
|
7606
7752
|
TrustedResourceOwners?: string[];
|
|
7607
7753
|
}, attributes?: CFResourceAttributes);
|
|
7608
7754
|
readonly Id: string;
|
|
@@ -10269,7 +10415,7 @@ export declare class DLMLifecyclePolicy {
|
|
|
10269
10415
|
Arn?: string;
|
|
10270
10416
|
CopyTags?: boolean;
|
|
10271
10417
|
CreateInterval?: number;
|
|
10272
|
-
CrossRegionCopyTargets?:
|
|
10418
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
10273
10419
|
DefaultPolicy?: string;
|
|
10274
10420
|
Description?: string;
|
|
10275
10421
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
@@ -10387,6 +10533,29 @@ export declare class DNSSEC {
|
|
|
10387
10533
|
}, attributes?: CFResourceAttributes);
|
|
10388
10534
|
}
|
|
10389
10535
|
|
|
10536
|
+
export declare class DnsView {
|
|
10537
|
+
constructor(props: {
|
|
10538
|
+
GlobalResolverId: string;
|
|
10539
|
+
Name: string;
|
|
10540
|
+
Arn?: string;
|
|
10541
|
+
ClientToken?: string;
|
|
10542
|
+
CreatedAt?: string;
|
|
10543
|
+
Description?: string;
|
|
10544
|
+
DnssecValidation?: DnsView_DnsSecValidationType;
|
|
10545
|
+
DnsViewId?: string;
|
|
10546
|
+
EdnsClientSubnet?: DnsView_EdnsClientSubnetType;
|
|
10547
|
+
FirewallRulesFailOpen?: DnsView_FirewallRulesFailOpenType;
|
|
10548
|
+
Status?: DnsView_ProfileResourceStatus;
|
|
10549
|
+
Tags?: DnsView_Tag[];
|
|
10550
|
+
UpdatedAt?: string;
|
|
10551
|
+
}, attributes?: CFResourceAttributes);
|
|
10552
|
+
readonly Arn: string;
|
|
10553
|
+
readonly CreatedAt: string;
|
|
10554
|
+
readonly DnsViewId: string;
|
|
10555
|
+
readonly Status: DnsView_ProfileResourceStatus;
|
|
10556
|
+
readonly UpdatedAt: string;
|
|
10557
|
+
}
|
|
10558
|
+
|
|
10390
10559
|
export declare class DocDBDBCluster {
|
|
10391
10560
|
constructor(props: {
|
|
10392
10561
|
AvailabilityZones?: string[];
|
|
@@ -13043,6 +13212,7 @@ export declare class Farm {
|
|
|
13043
13212
|
constructor(props: {
|
|
13044
13213
|
DisplayName: string;
|
|
13045
13214
|
Arn?: string;
|
|
13215
|
+
CostScaleFactor?: number;
|
|
13046
13216
|
Description?: string;
|
|
13047
13217
|
FarmId?: string;
|
|
13048
13218
|
KmsKeyArn?: string;
|
|
@@ -13097,6 +13267,20 @@ export declare class FeatureGroup {
|
|
|
13097
13267
|
readonly FeatureGroupStatus: string;
|
|
13098
13268
|
}
|
|
13099
13269
|
|
|
13270
|
+
export declare class Feed {
|
|
13271
|
+
constructor(props: {
|
|
13272
|
+
Name: string;
|
|
13273
|
+
Outputs: Feed_GetOutput[];
|
|
13274
|
+
Arn?: string;
|
|
13275
|
+
DataEndpoints?: string[];
|
|
13276
|
+
Id?: string;
|
|
13277
|
+
Tags?: Record<string, unknown>;
|
|
13278
|
+
}, attributes?: CFResourceAttributes);
|
|
13279
|
+
readonly Arn: string;
|
|
13280
|
+
readonly DataEndpoints: string[];
|
|
13281
|
+
readonly Id: string;
|
|
13282
|
+
}
|
|
13283
|
+
|
|
13100
13284
|
export declare class FHIRDatastore {
|
|
13101
13285
|
constructor(props: {
|
|
13102
13286
|
DatastoreTypeVersion: FHIRDatastore_DatastoreTypeVersion;
|
|
@@ -13257,45 +13441,6 @@ export declare class Firewall {
|
|
|
13257
13441
|
readonly TransitGatewayAttachmentId: string;
|
|
13258
13442
|
}
|
|
13259
13443
|
|
|
13260
|
-
export declare class FirewallDomainList {
|
|
13261
|
-
constructor(props: {
|
|
13262
|
-
/** Arn */
|
|
13263
|
-
Arn?: string;
|
|
13264
|
-
/** Rfc3339TimeString */
|
|
13265
|
-
CreationTime?: string;
|
|
13266
|
-
/** The id of the creator request. */
|
|
13267
|
-
CreatorRequestId?: string;
|
|
13268
|
-
/** Count */
|
|
13269
|
-
DomainCount?: number;
|
|
13270
|
-
/** S3 URL to import domains from. */
|
|
13271
|
-
DomainFileUrl?: string;
|
|
13272
|
-
Domains?: any;
|
|
13273
|
-
/** ResourceId */
|
|
13274
|
-
Id?: string;
|
|
13275
|
-
/** ServicePrincipal */
|
|
13276
|
-
ManagedOwnerName?: string;
|
|
13277
|
-
/** Rfc3339TimeString */
|
|
13278
|
-
ModificationTime?: string;
|
|
13279
|
-
/** FirewallDomainListName */
|
|
13280
|
-
Name?: string;
|
|
13281
|
-
/** ResolverFirewallDomainList, possible values are COMPLETE, DELETING, UPDATING, COMPLETE_IMPORT_FAILED, IMPORTING, and INACTIVE_OWNER_ACCOUNT_CLOSED. */
|
|
13282
|
-
Status?: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
13283
|
-
/** FirewallDomainListAssociationStatus */
|
|
13284
|
-
StatusMessage?: string;
|
|
13285
|
-
/** Tags */
|
|
13286
|
-
Tags?: FirewallDomainList_Tag[];
|
|
13287
|
-
}, attributes?: CFResourceAttributes);
|
|
13288
|
-
readonly Arn: string;
|
|
13289
|
-
readonly CreationTime: string;
|
|
13290
|
-
readonly CreatorRequestId: string;
|
|
13291
|
-
readonly DomainCount: number;
|
|
13292
|
-
readonly Id: string;
|
|
13293
|
-
readonly ManagedOwnerName: string;
|
|
13294
|
-
readonly ModificationTime: string;
|
|
13295
|
-
readonly Status: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
13296
|
-
readonly StatusMessage: string;
|
|
13297
|
-
}
|
|
13298
|
-
|
|
13299
13444
|
export declare class FirewallPolicy {
|
|
13300
13445
|
constructor(props: {
|
|
13301
13446
|
FirewallPolicy: FirewallPolicy_FirewallPolicy;
|
|
@@ -13309,6 +13454,35 @@ export declare class FirewallPolicy {
|
|
|
13309
13454
|
readonly FirewallPolicyId: string;
|
|
13310
13455
|
}
|
|
13311
13456
|
|
|
13457
|
+
export declare class FirewallRule {
|
|
13458
|
+
constructor(props: {
|
|
13459
|
+
Action: FirewallRule_FirewallRuleAction;
|
|
13460
|
+
DnsViewId: string;
|
|
13461
|
+
Name: string;
|
|
13462
|
+
BlockOverrideDnsType?: FirewallRule_BlockOverrideDnsQueryType;
|
|
13463
|
+
BlockOverrideDomain?: string;
|
|
13464
|
+
BlockOverrideTtl?: number;
|
|
13465
|
+
BlockResponse?: FirewallRule_FirewallBlockResponse;
|
|
13466
|
+
ClientToken?: string;
|
|
13467
|
+
ConfidenceThreshold?: FirewallRule_ConfidenceThreshold;
|
|
13468
|
+
CreatedAt?: string;
|
|
13469
|
+
Description?: string;
|
|
13470
|
+
DnsAdvancedProtection?: FirewallRule_DnsAdvancedProtection;
|
|
13471
|
+
FirewallDomainListId?: string;
|
|
13472
|
+
FirewallRuleId?: string;
|
|
13473
|
+
Priority?: number;
|
|
13474
|
+
QType?: string;
|
|
13475
|
+
QueryType?: string;
|
|
13476
|
+
Status?: FirewallRule_CRResourceStatus;
|
|
13477
|
+
UpdatedAt?: string;
|
|
13478
|
+
}, attributes?: CFResourceAttributes);
|
|
13479
|
+
readonly CreatedAt: string;
|
|
13480
|
+
readonly FirewallRuleId: string;
|
|
13481
|
+
readonly QueryType: string;
|
|
13482
|
+
readonly Status: FirewallRule_CRResourceStatus;
|
|
13483
|
+
readonly UpdatedAt: string;
|
|
13484
|
+
}
|
|
13485
|
+
|
|
13312
13486
|
export declare class FirewallRuleGroup {
|
|
13313
13487
|
constructor(props: {
|
|
13314
13488
|
/** Arn */
|
|
@@ -13476,6 +13650,8 @@ export declare class FlowEntitlement {
|
|
|
13476
13650
|
EntitlementArn?: string;
|
|
13477
13651
|
/** An indication of whether the entitlement is enabled. */
|
|
13478
13652
|
EntitlementStatus?: "DISABLED" | "ENABLED";
|
|
13653
|
+
/** Key-value pairs that can be used to tag and organize this flow entitlement. */
|
|
13654
|
+
Tags?: FlowEntitlement_Tag[];
|
|
13479
13655
|
}, attributes?: CFResourceAttributes);
|
|
13480
13656
|
readonly EntitlementArn: string;
|
|
13481
13657
|
}
|
|
@@ -13542,7 +13718,7 @@ export declare class FlowOutput {
|
|
|
13542
13718
|
/** The port to use when content is distributed to this output. */
|
|
13543
13719
|
Port?: number;
|
|
13544
13720
|
/** The protocol that is used by the source or output. */
|
|
13545
|
-
Protocol?: "cdi" | "
|
|
13721
|
+
Protocol?: "cdi" | "ndi-speed-hq" | "rist" | "rtp" | "rtp-fec" | "srt-caller" | "srt-listener" | "st2110-jpegxs" | "zixi-pull" | "zixi-push";
|
|
13546
13722
|
/** The remote ID for the Zixi-pull stream. */
|
|
13547
13723
|
RemoteId?: string;
|
|
13548
13724
|
RouterIntegrationState?: "DISABLED" | "ENABLED";
|
|
@@ -13551,6 +13727,8 @@ export declare class FlowOutput {
|
|
|
13551
13727
|
SmoothingLatency?: number;
|
|
13552
13728
|
/** The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams. */
|
|
13553
13729
|
StreamId?: string;
|
|
13730
|
+
/** Key-value pairs that can be used to tag and organize this flow output. */
|
|
13731
|
+
Tags?: FlowOutput_Tag[];
|
|
13554
13732
|
/** The name of the VPC interface attachment to use for this output. */
|
|
13555
13733
|
VpcInterfaceAttachment?: FlowOutput_VpcInterfaceAttachment;
|
|
13556
13734
|
}, attributes?: CFResourceAttributes);
|
|
@@ -13561,14 +13739,14 @@ export declare class FlowSource {
|
|
|
13561
13739
|
constructor(props: {
|
|
13562
13740
|
/** A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account. */
|
|
13563
13741
|
Description: string;
|
|
13742
|
+
/** The ARN of the flow. */
|
|
13743
|
+
FlowArn: string;
|
|
13564
13744
|
/** The name of the source. */
|
|
13565
13745
|
Name: string;
|
|
13566
13746
|
/** The type of encryption that is used on the content ingested from this source. */
|
|
13567
13747
|
Decryption?: FlowSource_Encryption;
|
|
13568
13748
|
/** The ARN of the entitlement that allows you to subscribe to content that comes from another AWS account. The entitlement is set by the content originator and the ARN is generated as part of the originator's flow. */
|
|
13569
13749
|
EntitlementArn?: string;
|
|
13570
|
-
/** The ARN of the flow. */
|
|
13571
|
-
FlowArn?: string;
|
|
13572
13750
|
/** The source configuration for cloud flows receiving a stream from a bridge. */
|
|
13573
13751
|
GatewayBridgeSource?: FlowSource_GatewayBridgeSource;
|
|
13574
13752
|
/** The IP address that the flow will be listening on for incoming content. */
|
|
@@ -13597,6 +13775,8 @@ export declare class FlowSource {
|
|
|
13597
13775
|
SourceListenerPort?: number;
|
|
13598
13776
|
/** The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams. */
|
|
13599
13777
|
StreamId?: string;
|
|
13778
|
+
/** Key-value pairs that can be used to tag and organize this flow source. */
|
|
13779
|
+
Tags?: FlowSource_Tag[];
|
|
13600
13780
|
/** The name of the VPC Interface this Source is configured with. */
|
|
13601
13781
|
VpcInterfaceName?: string;
|
|
13602
13782
|
/** The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. */
|
|
@@ -14506,6 +14686,34 @@ export declare class GlobalReplicationGroup {
|
|
|
14506
14686
|
readonly Status: string;
|
|
14507
14687
|
}
|
|
14508
14688
|
|
|
14689
|
+
export declare class GlobalResolver {
|
|
14690
|
+
constructor(props: {
|
|
14691
|
+
Name: string;
|
|
14692
|
+
Regions: string[];
|
|
14693
|
+
Arn?: string;
|
|
14694
|
+
ClientToken?: string;
|
|
14695
|
+
CreatedAt?: string;
|
|
14696
|
+
Description?: string;
|
|
14697
|
+
DnsName?: string;
|
|
14698
|
+
GlobalResolverId?: string;
|
|
14699
|
+
IpAddressType?: GlobalResolver_GlobalResolverIpAddressType;
|
|
14700
|
+
IPv4Addresses?: string[];
|
|
14701
|
+
IPv6Addresses?: string[];
|
|
14702
|
+
ObservabilityRegion?: string;
|
|
14703
|
+
Status?: GlobalResolver_CRResourceStatus;
|
|
14704
|
+
Tags?: GlobalResolver_Tag[];
|
|
14705
|
+
UpdatedAt?: string;
|
|
14706
|
+
}, attributes?: CFResourceAttributes);
|
|
14707
|
+
readonly Arn: string;
|
|
14708
|
+
readonly CreatedAt: string;
|
|
14709
|
+
readonly DnsName: string;
|
|
14710
|
+
readonly GlobalResolverId: string;
|
|
14711
|
+
readonly IPv4Addresses: string[];
|
|
14712
|
+
readonly IPv6Addresses: string[];
|
|
14713
|
+
readonly Status: GlobalResolver_CRResourceStatus;
|
|
14714
|
+
readonly UpdatedAt: string;
|
|
14715
|
+
}
|
|
14716
|
+
|
|
14509
14717
|
export declare class GlobalTable {
|
|
14510
14718
|
constructor(props: {
|
|
14511
14719
|
Replicas: GlobalTable_ReplicaSpecification[];
|
|
@@ -15218,6 +15426,24 @@ export declare class HostedZone {
|
|
|
15218
15426
|
readonly NameServers: string[];
|
|
15219
15427
|
}
|
|
15220
15428
|
|
|
15429
|
+
export declare class HostedZoneAssociation {
|
|
15430
|
+
constructor(props: {
|
|
15431
|
+
HostedZoneId: string;
|
|
15432
|
+
Name: string;
|
|
15433
|
+
ResourceArn: string;
|
|
15434
|
+
CreatedAt?: string;
|
|
15435
|
+
HostedZoneAssociationId?: string;
|
|
15436
|
+
HostedZoneName?: string;
|
|
15437
|
+
Status?: HostedZoneAssociation_HostedZoneAssociationStatus;
|
|
15438
|
+
UpdatedAt?: string;
|
|
15439
|
+
}, attributes?: CFResourceAttributes);
|
|
15440
|
+
readonly CreatedAt: string;
|
|
15441
|
+
readonly HostedZoneAssociationId: string;
|
|
15442
|
+
readonly HostedZoneName: string;
|
|
15443
|
+
readonly Status: HostedZoneAssociation_HostedZoneAssociationStatus;
|
|
15444
|
+
readonly UpdatedAt: string;
|
|
15445
|
+
}
|
|
15446
|
+
|
|
15221
15447
|
export declare class HoursOfOperation {
|
|
15222
15448
|
constructor(props: {
|
|
15223
15449
|
/** Configuration information for the hours of operation: day, start time, and end time. */
|
|
@@ -16259,7 +16485,7 @@ export declare class InsightRule {
|
|
|
16259
16485
|
ApplyOnTransformedLogs?: boolean;
|
|
16260
16486
|
Arn?: string;
|
|
16261
16487
|
Id?: string;
|
|
16262
|
-
Tags?:
|
|
16488
|
+
Tags?: InsightRule_Tag[];
|
|
16263
16489
|
}, attributes?: CFResourceAttributes);
|
|
16264
16490
|
readonly Arn: string;
|
|
16265
16491
|
readonly Id: string;
|
|
@@ -16404,20 +16630,50 @@ export declare class InstanceAccessControlAttributeConfiguration {
|
|
|
16404
16630
|
|
|
16405
16631
|
export declare class InstanceConnectEndpoint {
|
|
16406
16632
|
constructor(props: {
|
|
16407
|
-
/** The subnet
|
|
16633
|
+
/** The ID of the subnet in which the EC2 Instance Connect Endpoint was created. */
|
|
16408
16634
|
SubnetId: string;
|
|
16635
|
+
/** The Availability Zone of the EC2 Instance Connect Endpoint */
|
|
16636
|
+
AvailabilityZone?: string;
|
|
16637
|
+
/** The ID of the Availability Zone of the EC2 Instance Connect Endpoint */
|
|
16638
|
+
AvailabilityZoneId?: string;
|
|
16409
16639
|
/** The client token of the instance connect endpoint. */
|
|
16410
16640
|
ClientToken?: string;
|
|
16411
|
-
/** The
|
|
16641
|
+
/** The date and time that the EC2 Instance Connect Endpoint was created */
|
|
16642
|
+
CreatedAt?: string;
|
|
16643
|
+
/** The ID of the EC2 Instance Connect Endpoint. */
|
|
16412
16644
|
Id?: string;
|
|
16413
|
-
/**
|
|
16645
|
+
/** The Amazon Resource Name (ARN) of the EC2 Instance Connect Endpoint */
|
|
16646
|
+
InstanceConnectEndpointArn?: string;
|
|
16647
|
+
/** The ID of the elastic network interface that Amazon EC2 automatically created when creating the EC2 Instance Connect Endpoint */
|
|
16648
|
+
NetworkInterfaceIds?: string[];
|
|
16649
|
+
/** The ID of the AWS account that created the EC2 Instance Connect Endpoint */
|
|
16650
|
+
OwnerId?: string;
|
|
16651
|
+
/** Indicates whether your client's IP address is preserved as the source when you connect to a resource. */
|
|
16414
16652
|
PreserveClientIp?: boolean;
|
|
16415
|
-
/** The
|
|
16653
|
+
/** The public DNS names of the endpoint */
|
|
16654
|
+
PublicDnsNames?: InstanceConnectEndpoint_InstanceConnectEndpointPublicDnsNames;
|
|
16655
|
+
/** The security groups associated with the endpoint. */
|
|
16416
16656
|
SecurityGroupIds?: string[];
|
|
16417
|
-
/** The
|
|
16657
|
+
/** The current state of the EC2 Instance Connect Endpoint */
|
|
16658
|
+
State?: "create-complete" | "create-failed" | "create-in-progress" | "delete-complete" | "delete-failed" | "delete-in-progress" | "update-complete" | "update-failed" | "update-in-progress";
|
|
16659
|
+
/** The message for the current state of the EC2 Instance Connect Endpoint. Can include a failure message */
|
|
16660
|
+
StateMessage?: string;
|
|
16661
|
+
/** The tags assigned to the EC2 Instance Connect Endpoint. */
|
|
16418
16662
|
Tags?: InstanceConnectEndpoint_Tag[];
|
|
16663
|
+
/** The ID of the VPC in which the EC2 Instance Connect Endpoint was created */
|
|
16664
|
+
VpcId?: string;
|
|
16419
16665
|
}, attributes?: CFResourceAttributes);
|
|
16666
|
+
readonly AvailabilityZone: string;
|
|
16667
|
+
readonly AvailabilityZoneId: string;
|
|
16668
|
+
readonly CreatedAt: string;
|
|
16420
16669
|
readonly Id: string;
|
|
16670
|
+
readonly InstanceConnectEndpointArn: string;
|
|
16671
|
+
readonly NetworkInterfaceIds: string[];
|
|
16672
|
+
readonly OwnerId: string;
|
|
16673
|
+
readonly PublicDnsNames: InstanceConnectEndpoint_InstanceConnectEndpointPublicDnsNames;
|
|
16674
|
+
readonly State: "create-complete" | "create-failed" | "create-in-progress" | "delete-complete" | "delete-failed" | "delete-in-progress" | "update-complete" | "update-failed" | "update-in-progress";
|
|
16675
|
+
readonly StateMessage: string;
|
|
16676
|
+
readonly VpcId: string;
|
|
16421
16677
|
}
|
|
16422
16678
|
|
|
16423
16679
|
export declare class InstanceFleetConfig {
|
|
@@ -17294,6 +17550,29 @@ export declare class IPAMPrefixListResolver {
|
|
|
17294
17550
|
readonly IpamPrefixListResolverId: string;
|
|
17295
17551
|
}
|
|
17296
17552
|
|
|
17553
|
+
export declare class IPAMPrefixListResolverTarget {
|
|
17554
|
+
constructor(props: {
|
|
17555
|
+
/** The Id of the IPAM Prefix List Resolver associated with this Target. */
|
|
17556
|
+
IpamPrefixListResolverId: string;
|
|
17557
|
+
/** The Id of the Managed Prefix List. */
|
|
17558
|
+
PrefixListId: string;
|
|
17559
|
+
/** The region that the Managed Prefix List is located in. */
|
|
17560
|
+
PrefixListRegion: string;
|
|
17561
|
+
/** Indicates whether this Target automatically tracks the latest version of the Prefix List Resolver. */
|
|
17562
|
+
TrackLatestVersion: boolean;
|
|
17563
|
+
/** The desired version of the Prefix List Resolver that this Target should synchronize with. */
|
|
17564
|
+
DesiredVersion?: number;
|
|
17565
|
+
/** Id of the IPAM Prefix List Resolver Target. */
|
|
17566
|
+
IpamPrefixListResolverTargetArn?: string;
|
|
17567
|
+
/** Id of the IPAM Prefix List Resolver Target. */
|
|
17568
|
+
IpamPrefixListResolverTargetId?: string;
|
|
17569
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
17570
|
+
Tags?: IPAMPrefixListResolverTarget_Tag[];
|
|
17571
|
+
}, attributes?: CFResourceAttributes);
|
|
17572
|
+
readonly IpamPrefixListResolverTargetArn: string;
|
|
17573
|
+
readonly IpamPrefixListResolverTargetId: string;
|
|
17574
|
+
}
|
|
17575
|
+
|
|
17297
17576
|
export declare class IPAMResourceDiscovery {
|
|
17298
17577
|
constructor(props: {
|
|
17299
17578
|
Description?: string;
|
|
@@ -19610,7 +19889,7 @@ export declare class LogsScheduledQuery {
|
|
|
19610
19889
|
CreationTime?: number;
|
|
19611
19890
|
Description?: string;
|
|
19612
19891
|
DestinationConfiguration?: LogsScheduledQuery_DestinationConfiguration;
|
|
19613
|
-
LastExecutionStatus?: "Complete" | "Failed" | "InvalidQuery" | "Timeout";
|
|
19892
|
+
LastExecutionStatus?: "Complete" | "Failed" | "InvalidQuery" | "Pending" | "Timeout";
|
|
19614
19893
|
LastTriggeredTime?: number;
|
|
19615
19894
|
LastUpdatedTime?: number;
|
|
19616
19895
|
LogGroupIdentifiers?: string[];
|
|
@@ -19623,7 +19902,7 @@ export declare class LogsScheduledQuery {
|
|
|
19623
19902
|
Timezone?: string;
|
|
19624
19903
|
}, attributes?: CFResourceAttributes);
|
|
19625
19904
|
readonly CreationTime: number;
|
|
19626
|
-
readonly LastExecutionStatus: "Complete" | "Failed" | "InvalidQuery" | "Timeout";
|
|
19905
|
+
readonly LastExecutionStatus: "Complete" | "Failed" | "InvalidQuery" | "Pending" | "Timeout";
|
|
19627
19906
|
readonly LastTriggeredTime: number;
|
|
19628
19907
|
readonly LastUpdatedTime: number;
|
|
19629
19908
|
readonly ScheduledQueryArn: string;
|
|
@@ -20179,24 +20458,28 @@ export declare class MediaConnectFlow {
|
|
|
20179
20458
|
AvailabilityZone?: string;
|
|
20180
20459
|
/** The IP address from which video will be sent to output destinations. */
|
|
20181
20460
|
EgressIp?: string;
|
|
20461
|
+
/** The encoding configuration to apply to the NDI source content when transcoding it to a transport stream (TS) for downstream distribution. You can choose between several predefined encoding profiles based on common use cases. */
|
|
20462
|
+
EncodingConfig?: MediaConnectFlow_EncodingConfig;
|
|
20182
20463
|
/** The Amazon Resource Name (ARN), a unique identifier for any AWS resource, of the flow. */
|
|
20183
20464
|
FlowArn?: string;
|
|
20184
20465
|
/** The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.(ReadOnly) */
|
|
20185
20466
|
FlowAvailabilityZone?: string;
|
|
20186
20467
|
/** A prefix for the names of the NDI sources that the flow creates.(ReadOnly) */
|
|
20187
20468
|
FlowNdiMachineName?: string;
|
|
20188
|
-
/** Determines the processing capacity and feature set of the flow. Set this optional parameter to LARGE if you want to enable NDI outputs on the flow. */
|
|
20189
|
-
FlowSize?: "LARGE" | "MEDIUM";
|
|
20469
|
+
/** Determines the processing capacity and feature set of the flow. Set this optional parameter to LARGE if you want to enable NDI sources or outputs on the flow. */
|
|
20470
|
+
FlowSize?: "LARGE" | "LARGE_4X" | "MEDIUM";
|
|
20190
20471
|
/** The maintenance settings you want to use for the flow. */
|
|
20191
20472
|
Maintenance?: MediaConnectFlow_Maintenance;
|
|
20192
20473
|
/** The media streams associated with the flow. You can associate any of these media streams with sources and outputs on the flow. */
|
|
20193
20474
|
MediaStreams?: MediaConnectFlow_MediaStream[];
|
|
20194
|
-
/** Specifies the configuration settings for NDI outputs. Required when the flow includes NDI outputs. */
|
|
20475
|
+
/** Specifies the configuration settings for NDI sources and outputs. Required when the flow includes NDI sources or outputs. */
|
|
20195
20476
|
NdiConfig?: MediaConnectFlow_NdiConfig;
|
|
20196
20477
|
/** The source failover config of the flow. */
|
|
20197
20478
|
SourceFailoverConfig?: MediaConnectFlow_FailoverConfig;
|
|
20198
20479
|
/** The source monitoring config of the flow. */
|
|
20199
20480
|
SourceMonitoringConfig?: MediaConnectFlow_SourceMonitoringConfig;
|
|
20481
|
+
/** Key-value pairs that can be used to tag this flow. */
|
|
20482
|
+
Tags?: MediaConnectFlow_Tag[];
|
|
20200
20483
|
/** The VPC interfaces that you added to this flow. */
|
|
20201
20484
|
VpcInterfaces?: MediaConnectFlow_VpcInterface[];
|
|
20202
20485
|
}, attributes?: CFResourceAttributes);
|
|
@@ -20204,11 +20487,9 @@ export declare class MediaConnectFlow {
|
|
|
20204
20487
|
readonly FlowArn: string;
|
|
20205
20488
|
readonly FlowAvailabilityZone: string;
|
|
20206
20489
|
readonly FlowNdiMachineName: string;
|
|
20207
|
-
readonly MediaStreams_Item_Fmt: string;
|
|
20208
20490
|
readonly Source_IngestIp: string;
|
|
20209
20491
|
readonly Source_SourceArn: string;
|
|
20210
20492
|
readonly Source_SourceIngestPort: string;
|
|
20211
|
-
readonly VpcInterfaces_Item_NetworkInterfaceIds: string;
|
|
20212
20493
|
}
|
|
20213
20494
|
|
|
20214
20495
|
export declare class MediaConnectGateway {
|
|
@@ -22656,6 +22937,8 @@ export declare class OdbNetwork {
|
|
|
22656
22937
|
BackupSubnetCidr?: string;
|
|
22657
22938
|
/** The CIDR range of the client subnet in the ODB network. */
|
|
22658
22939
|
ClientSubnetCidr?: string;
|
|
22940
|
+
/** The cross-Region Amazon S3 restore sources for the ODB network. */
|
|
22941
|
+
CrossRegionS3RestoreSources?: string[];
|
|
22659
22942
|
/** The domain name to use for the resources in the ODB network. */
|
|
22660
22943
|
CustomDomainName?: string;
|
|
22661
22944
|
/** The DNS prefix to the default DNS domain name. The default DNS domain name is oraclevcn.com. */
|
|
@@ -22664,6 +22947,10 @@ export declare class OdbNetwork {
|
|
|
22664
22947
|
DeleteAssociatedResources?: boolean;
|
|
22665
22948
|
/** The user-friendly name of the ODB network. */
|
|
22666
22949
|
DisplayName?: string;
|
|
22950
|
+
/** The AWS Key Management Service (KMS) access configuration for the ODB network. */
|
|
22951
|
+
KmsAccess?: "DISABLED" | "ENABLED";
|
|
22952
|
+
/** The AWS Key Management Service (KMS) policy document that defines permissions for key usage within the ODB network. */
|
|
22953
|
+
KmsPolicyDocument?: string;
|
|
22667
22954
|
ManagedServices?: OdbNetwork_ManagedServices;
|
|
22668
22955
|
/** The unique identifier of the OCI network anchor for the ODB network. */
|
|
22669
22956
|
OciNetworkAnchorId?: string;
|
|
@@ -22679,6 +22966,10 @@ export declare class OdbNetwork {
|
|
|
22679
22966
|
S3Access?: "DISABLED" | "ENABLED";
|
|
22680
22967
|
/** Specifies the endpoint policy for Amazon S3 access from the ODB network. */
|
|
22681
22968
|
S3PolicyDocument?: string;
|
|
22969
|
+
/** The AWS Security Token Service (STS) access configuration for the ODB network. */
|
|
22970
|
+
StsAccess?: "DISABLED" | "ENABLED";
|
|
22971
|
+
/** The AWS Security Token Service (STS) policy document that defines permissions for token service usage within the ODB network. */
|
|
22972
|
+
StsPolicyDocument?: string;
|
|
22682
22973
|
/** Tags to assign to the Odb Network. */
|
|
22683
22974
|
Tags?: OdbNetwork_Tag[];
|
|
22684
22975
|
/** Specifies the configuration for Zero-ETL access from the ODB network. */
|
|
@@ -22712,6 +23003,8 @@ export declare class OdbPeeringConnection {
|
|
|
22712
23003
|
PeerNetworkCidrs?: string[];
|
|
22713
23004
|
/** The unique identifier of the peer network. */
|
|
22714
23005
|
PeerNetworkId?: string;
|
|
23006
|
+
/** The unique identifier of the VPC route table for which a route to the ODB network is automatically created during peering connection establishment. */
|
|
23007
|
+
PeerNetworkRouteTableIds?: string[];
|
|
22715
23008
|
/** Tags to assign to the Odb peering connection. */
|
|
22716
23009
|
Tags?: OdbPeeringConnection_Tag[];
|
|
22717
23010
|
}, attributes?: CFResourceAttributes);
|
|
@@ -22856,6 +23149,7 @@ Contains between 3 and 32 characters
|
|
|
22856
23149
|
/** List of tags to be added to the resource */
|
|
22857
23150
|
Tags?: OpenSearchServerlessCollection_Tag[];
|
|
22858
23151
|
Type?: OpenSearchServerlessCollection_CollectionType;
|
|
23152
|
+
VectorOptions?: OpenSearchServerlessCollection_VectorOptions;
|
|
22859
23153
|
}, attributes?: CFResourceAttributes);
|
|
22860
23154
|
readonly Arn: string;
|
|
22861
23155
|
readonly CollectionEndpoint: string;
|
|
@@ -22926,6 +23220,7 @@ export declare class OpenSearchServiceDomain {
|
|
|
22926
23220
|
Arn?: string;
|
|
22927
23221
|
ClusterConfig?: OpenSearchServiceDomain_ClusterConfig;
|
|
22928
23222
|
CognitoOptions?: OpenSearchServiceDomain_CognitoOptions;
|
|
23223
|
+
DeploymentStrategyOptions?: OpenSearchServiceDomain_DeploymentStrategyOptions;
|
|
22929
23224
|
DomainArn?: string;
|
|
22930
23225
|
DomainEndpoint?: string;
|
|
22931
23226
|
DomainEndpointOptions?: OpenSearchServiceDomain_DomainEndpointOptions;
|
|
@@ -24390,7 +24685,7 @@ export declare class PolicyStore {
|
|
|
24390
24685
|
EncryptionSettings?: Record<string, unknown>;
|
|
24391
24686
|
EncryptionState?: any;
|
|
24392
24687
|
PolicyStoreId?: string;
|
|
24393
|
-
Schema?:
|
|
24688
|
+
Schema?: PolicyStore_SchemaDefinition;
|
|
24394
24689
|
/** The tags to add to the policy store */
|
|
24395
24690
|
Tags?: PolicyStore_Tag[];
|
|
24396
24691
|
}, attributes?: CFResourceAttributes);
|
|
@@ -25349,7 +25644,7 @@ export declare class Queue {
|
|
|
25349
25644
|
DeduplicationScope?: string;
|
|
25350
25645
|
/** The time in seconds for which the delivery of all messages in the queue is delayed. You can specify an integer value of ``0`` to ``900`` (15 minutes). The default value is ``0``. */
|
|
25351
25646
|
DelaySeconds?: number;
|
|
25352
|
-
/** If set to true, creates a FIFO queue. If you don't specify this property, SQS creates a standard queue. For more information, see [
|
|
25647
|
+
/** If set to true, creates a FIFO queue. If you don't specify this property, SQS creates a standard queue. For more information, see [FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html) in the *Developer Guide*. */
|
|
25353
25648
|
FifoQueue?: boolean;
|
|
25354
25649
|
/** For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are ``perQueue`` and ``perMessageGroupId``.
|
|
25355
25650
|
To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId`` *and* set the ``DeduplicationScope`` attribute to ``messageGroup``. If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see [High throughput for FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html) and [Quotas related to messages](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html) in the *Developer Guide*. */
|
|
@@ -25357,17 +25652,17 @@ export declare class Queue {
|
|
|
25357
25652
|
/** The length of time in seconds for which SQS can reuse a data key to encrypt or decrypt messages before calling KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes).
|
|
25358
25653
|
A shorter time period provides better security, but results in more calls to KMS, which might incur charges after Free Tier. For more information, see [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work) in the *Developer Guide*. */
|
|
25359
25654
|
KmsDataKeyReusePeriodSeconds?: number;
|
|
25360
|
-
/** The ID of an AWS Key Management Service (KMS) for SQS, or a custom KMS. To use the AWS managed KMS for SQS, specify a (default) alias ARN, alias name (
|
|
25655
|
+
/** The ID of an AWS Key Management Service (KMS) for SQS, or a custom KMS. To use the AWS managed KMS for SQS, specify a (default) alias ARN, alias name (e.g. ``alias/aws/sqs``), key ARN, or key ID. For more information, see the following:
|
|
25361
25656
|
+ [Encryption at rest](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html) in the *Developer Guide*
|
|
25362
25657
|
+ [CreateQueue](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html) in the *API Reference*
|
|
25363
25658
|
+ [Request Parameters](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters) in the *Key Management Service API Reference*
|
|
25364
|
-
+ The Key Management Service (KMS) section of the [
|
|
25659
|
+
+ The Key Management Service (KMS) section of the [Best Practices](https://docs.aws.amazon.com/https://d0.awsstatic.com/whitepapers/aws-kms-best-practices.pdf) whitepaper */
|
|
25365
25660
|
KmsMasterKeyId?: string;
|
|
25366
25661
|
/** The limit of how many bytes that a message can contain before SQS rejects it. You can specify an integer value from ``1,024`` bytes (1 KiB) to ``262,144`` bytes (256 KiB). The default value is ``262,144`` (256 KiB). */
|
|
25367
25662
|
MaximumMessageSize?: number;
|
|
25368
25663
|
/** The number of seconds that SQS retains a message. You can specify an integer value from ``60`` seconds (1 minute) to ``1,209,600`` seconds (14 days). The default value is ``345,600`` seconds (4 days). */
|
|
25369
25664
|
MessageRetentionPeriod?: number;
|
|
25370
|
-
/** A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see [
|
|
25665
|
+
/** A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see [FIFO queues](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html) in the *Developer Guide*.
|
|
25371
25666
|
If you don't specify a name, CFN generates a unique physical ID and uses that ID for the queue name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) in the *User Guide*.
|
|
25372
25667
|
If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name. */
|
|
25373
25668
|
QueueName?: string;
|
|
@@ -25375,16 +25670,16 @@ export declare class Queue {
|
|
|
25375
25670
|
/** Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, rather than returning an empty response if a message isn't yet available. You can specify an integer from 1 to 20. Short polling is used as the default or when you specify 0 for this property. For more information, see [Consuming messages using long polling](https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-short-and-long-polling.html#sqs-long-polling) in the *Developer Guide*. */
|
|
25376
25671
|
ReceiveMessageWaitTimeSeconds?: number;
|
|
25377
25672
|
/** The string that includes the parameters for the permissions for the dead-letter queue redrive permission and which source queues can specify dead-letter queues as a JSON object. The parameters are as follows:
|
|
25378
|
-
+
|
|
25379
|
-
+
|
|
25380
|
-
+
|
|
25381
|
-
+
|
|
25673
|
+
+ ``redrivePermission``: The permission type that defines which source queues can specify the current queue as the dead-letter queue. Valid values are:
|
|
25674
|
+
+ ``allowAll``: (Default) Any source queues in this AWS account in the same Region can specify this queue as the dead-letter queue.
|
|
25675
|
+
+ ``denyAll``: No source queues can specify this queue as the dead-letter queue.
|
|
25676
|
+
+ ``byQueue``: Only queues specified by the ``sourceQueueArns`` parameter can specify this queue as the dead-letter queue.
|
|
25382
25677
|
|
|
25383
|
-
+
|
|
25678
|
+
+ ``sourceQueueArns``: The Amazon Resource Names (ARN)s of the source queues that can specify this queue as the dead-letter queue and redrive messages. You can specify this parameter only when the ``redrivePermission`` parameter is set to ``byQueue``. You can specify up to 10 source queue ARNs. To allow more than 10 source queues to specify dead-letter queues, set the ``redrivePermission`` parameter to ``allowAll``. */
|
|
25384
25679
|
RedriveAllowPolicy?: Record<string, unknown>;
|
|
25385
25680
|
/** The string that includes the parameters for the dead-letter queue functionality of the source queue as a JSON object. The parameters are as follows:
|
|
25386
|
-
+
|
|
25387
|
-
+
|
|
25681
|
+
+ ``deadLetterTargetArn``: The Amazon Resource Name (ARN) of the dead-letter queue to which SQS moves messages after the value of ``maxReceiveCount`` is exceeded.
|
|
25682
|
+
+ ``maxReceiveCount``: The number of times a message is delivered to the source queue before being moved to the dead-letter queue. When the ``ReceiveCount`` for a message exceeds the ``maxReceiveCount`` for a queue, SQS moves the message to the dead-letter-queue.
|
|
25388
25683
|
|
|
25389
25684
|
The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue.
|
|
25390
25685
|
*JSON*
|
|
@@ -25654,6 +25949,28 @@ export declare class QuickSightTopic {
|
|
|
25654
25949
|
readonly Arn: string;
|
|
25655
25950
|
}
|
|
25656
25951
|
|
|
25952
|
+
export declare class QuotaShare {
|
|
25953
|
+
constructor(props: {
|
|
25954
|
+
/** The capacity limits for the quota share. */
|
|
25955
|
+
CapacityLimits: QuotaShare_QuotaShareCapacityLimit[];
|
|
25956
|
+
/** The Amazon Resource Name (ARN) or name of the job queue. */
|
|
25957
|
+
JobQueue: string;
|
|
25958
|
+
/** The preemption configuration for the quota share. */
|
|
25959
|
+
PreemptionConfiguration: QuotaShare_QuotaSharePreemptionConfiguration;
|
|
25960
|
+
/** The name of the quota share. */
|
|
25961
|
+
QuotaShareName: string;
|
|
25962
|
+
/** The resource sharing configuration for the quota share. */
|
|
25963
|
+
ResourceSharingConfiguration: QuotaShare_QuotaShareResourceSharingConfiguration;
|
|
25964
|
+
/** The Amazon Resource Name (ARN) of the quota share. */
|
|
25965
|
+
QuotaShareArn?: string;
|
|
25966
|
+
/** The state of the quota share. */
|
|
25967
|
+
State?: "DISABLED" | "ENABLED";
|
|
25968
|
+
/** A key-value pair to associate with a resource. */
|
|
25969
|
+
Tags?: Record<string, unknown>;
|
|
25970
|
+
}, attributes?: CFResourceAttributes);
|
|
25971
|
+
readonly QuotaShareArn: string;
|
|
25972
|
+
}
|
|
25973
|
+
|
|
25657
25974
|
export declare class RAMPermission {
|
|
25658
25975
|
constructor(props: {
|
|
25659
25976
|
/** The name of the permission. */
|
|
@@ -26079,7 +26396,7 @@ auto - Amazon Redshift determines whether to use AQUA.
|
|
|
26079
26396
|
ClusterVersion?: string;
|
|
26080
26397
|
/** A boolean indicating whether to enable the deferred maintenance window. */
|
|
26081
26398
|
DeferMaintenance?: boolean;
|
|
26082
|
-
/** An integer indicating the duration of the maintenance window in days. If you specify a duration, you can't specify an end time. The duration must be
|
|
26399
|
+
/** An integer indicating the duration of the maintenance window in days. If you specify a duration, you can't specify an end time. The duration must be 60 days or less. */
|
|
26083
26400
|
DeferMaintenanceDuration?: number;
|
|
26084
26401
|
/** A timestamp indicating end time for the deferred maintenance window. If you specify an end time, you can't specify a duration. */
|
|
26085
26402
|
DeferMaintenanceEndTime?: string;
|
|
@@ -26479,23 +26796,6 @@ export declare class RekognitionProject {
|
|
|
26479
26796
|
readonly Arn: string;
|
|
26480
26797
|
}
|
|
26481
26798
|
|
|
26482
|
-
export declare class RemediationConfiguration {
|
|
26483
|
-
constructor(props: {
|
|
26484
|
-
ConfigRuleName: string;
|
|
26485
|
-
TargetId: string;
|
|
26486
|
-
TargetType: string;
|
|
26487
|
-
Automatic?: boolean;
|
|
26488
|
-
ExecutionControls?: RemediationConfiguration_ExecutionControls;
|
|
26489
|
-
Id?: string;
|
|
26490
|
-
MaximumAutomaticAttempts?: number;
|
|
26491
|
-
Parameters?: Record<string, unknown>;
|
|
26492
|
-
ResourceType?: string;
|
|
26493
|
-
RetryAttemptSeconds?: number;
|
|
26494
|
-
TargetVersion?: string;
|
|
26495
|
-
}, attributes?: CFResourceAttributes);
|
|
26496
|
-
readonly Id: string;
|
|
26497
|
-
}
|
|
26498
|
-
|
|
26499
26799
|
export declare class ReplicaKey {
|
|
26500
26800
|
constructor(props: {
|
|
26501
26801
|
/** The key policy that authorizes use of the AWS KMS key. The key policy must observe the following rules. */
|
|
@@ -26555,67 +26855,106 @@ export declare class ReplicationConfiguration {
|
|
|
26555
26855
|
|
|
26556
26856
|
export declare class ReplicationGroup {
|
|
26557
26857
|
constructor(props: {
|
|
26858
|
+
/** A user-created description for the replication group. */
|
|
26558
26859
|
ReplicationGroupDescription: string;
|
|
26860
|
+
/** A flag that enables encryption at rest when set to true.AtRestEncryptionEnabled after the replication group is created. To enable encryption at rest on a replication group you must set AtRestEncryptionEnabled to true when you create the replication group. */
|
|
26559
26861
|
AtRestEncryptionEnabled?: boolean;
|
|
26862
|
+
/** Reserved parameter. The password used to access a password protected server.AuthToken can be specified only on replication groups where TransitEncryptionEnabled is true. For more information. */
|
|
26560
26863
|
AuthToken?: string;
|
|
26864
|
+
/** Specifies whether a read-only replica is automatically promoted to read/write primary if the existing primary fails. AutomaticFailoverEnabled must be enabled for Redis (cluster mode enabled) replication groups. */
|
|
26561
26865
|
AutomaticFailoverEnabled?: boolean;
|
|
26866
|
+
/** This parameter is currently disabled. */
|
|
26562
26867
|
AutoMinorVersionUpgrade?: boolean;
|
|
26868
|
+
/** The compute and memory capacity of the nodes in the node group (shard). */
|
|
26563
26869
|
CacheNodeType?: string;
|
|
26870
|
+
/** The name of the parameter group to associate with this replication group. If this argument is omitted, the default cache parameter group for the specified engine is used. */
|
|
26564
26871
|
CacheParameterGroupName?: string;
|
|
26872
|
+
/** A list of cache security group names to associate with this replication group. */
|
|
26565
26873
|
CacheSecurityGroupNames?: string[];
|
|
26874
|
+
/** The name of the cache subnet group to be used for the replication group. */
|
|
26566
26875
|
CacheSubnetGroupName?: string;
|
|
26876
|
+
/** Enabled or Disabled. To modify cluster mode from Disabled to Enabled, you must first set the cluster mode to Compatible. Compatible mode allows your Redis OSS clients to connect using both cluster mode enabled and cluster mode disabled. After you migrate all Redis OSS clients to use cluster mode enabled, you can then complete cluster mode configuration and set the cluster mode to Enabled. For more information, see Modify cluster mode. */
|
|
26567
26877
|
ClusterMode?: string;
|
|
26568
|
-
|
|
26569
|
-
|
|
26878
|
+
/** The configuration details of the replication group. */
|
|
26879
|
+
ConfigurationEndPoint?: ReplicationGroup_Endpoint;
|
|
26880
|
+
/** Enables data tiering. Data tiering is only supported for replication groups using the r6gd node type. This parameter must be set to true when using r6gd nodes. */
|
|
26570
26881
|
DataTieringEnabled?: boolean;
|
|
26882
|
+
/** The name of the cache engine to be used for the clusters in this replication group. */
|
|
26571
26883
|
Engine?: string;
|
|
26884
|
+
/** The version number of the cache engine to be used for the clusters in this replication group. To view the supported cache engine versions, use the DescribeCacheEngineVersions operation. */
|
|
26572
26885
|
EngineVersion?: string;
|
|
26886
|
+
/** The name of the Global datastore */
|
|
26573
26887
|
GlobalReplicationGroupId?: string;
|
|
26888
|
+
/** The network type you choose when creating a replication group, either ipv4 | ipv6. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system. */
|
|
26574
26889
|
IpDiscovery?: string;
|
|
26890
|
+
/** The ID of the KMS key used to encrypt the disk on the cluster. */
|
|
26575
26891
|
KmsKeyId?: string;
|
|
26892
|
+
/** Specifies the destination, format and type of the logs. */
|
|
26576
26893
|
LogDeliveryConfigurations?: ReplicationGroup_LogDeliveryConfigurationRequest[];
|
|
26894
|
+
/** A flag indicating if you have Multi-AZ enabled to enhance fault tolerance. For more information, see Minimizing Downtime: Multi-AZ. */
|
|
26577
26895
|
MultiAZEnabled?: boolean;
|
|
26896
|
+
/** Must be either ipv4 | ipv6 | dual_stack. IPv6 is supported for workloads using Redis OSS engine version 6.2 onward or Memcached engine version 1.6.6 on all instances built on the Nitro system */
|
|
26578
26897
|
NetworkType?: string;
|
|
26898
|
+
/** NodeGroupConfiguration is a property of the AWS::ElastiCache::ReplicationGroup resource that configures an Amazon ElastiCache (ElastiCache) Redis cluster node group. */
|
|
26579
26899
|
NodeGroupConfiguration?: ReplicationGroup_NodeGroupConfiguration[];
|
|
26900
|
+
/** The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic to which notifications are sent. */
|
|
26580
26901
|
NotificationTopicArn?: string;
|
|
26902
|
+
/** The number of clusters this replication group initially has.This parameter is not used if there is more than one node group (shard). You should use ReplicasPerNodeGroup instead. */
|
|
26581
26903
|
NumCacheClusters?: number;
|
|
26904
|
+
/** An optional parameter that specifies the number of node groups (shards) for this Redis (cluster mode enabled) replication group. For Redis (cluster mode disabled) either omit this parameter or set it to 1. */
|
|
26582
26905
|
NumNodeGroups?: number;
|
|
26906
|
+
/** The port number on which each member of the replication group accepts connections. */
|
|
26583
26907
|
Port?: number;
|
|
26908
|
+
/** A list of EC2 Availability Zones in which the replication group's clusters are created. The order of the Availability Zones in the list is the order in which clusters are allocated. The primary cluster is created in the first AZ in the list. This parameter is not used if there is more than one node group (shard). You should use NodeGroupConfiguration instead. */
|
|
26584
26909
|
PreferredCacheClusterAZs?: string[];
|
|
26910
|
+
/** Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period. */
|
|
26585
26911
|
PreferredMaintenanceWindow?: string;
|
|
26912
|
+
/** The identifier of the cluster that serves as the primary for this replication group. This cluster must already exist and have a status of available. */
|
|
26586
26913
|
PrimaryClusterId?: string;
|
|
26587
|
-
|
|
26588
|
-
|
|
26589
|
-
|
|
26590
|
-
|
|
26591
|
-
|
|
26592
|
-
|
|
26593
|
-
ReaderEndPointAddress?: string;
|
|
26594
|
-
ReaderEndPointPort?: string;
|
|
26914
|
+
/** The primary endpoint configuration */
|
|
26915
|
+
PrimaryEndPoint?: ReplicationGroup_Endpoint;
|
|
26916
|
+
ReadEndPoint?: Record<string, unknown>;
|
|
26917
|
+
/** The endpoint of the reader node in the replication group. */
|
|
26918
|
+
ReaderEndPoint?: ReplicationGroup_Endpoint;
|
|
26919
|
+
/** An optional parameter that specifies the number of replica nodes in each node group (shard). Valid values are 0 to 5. */
|
|
26595
26920
|
ReplicasPerNodeGroup?: number;
|
|
26921
|
+
/** The replication group identifier. This parameter is stored as a lowercase string. */
|
|
26596
26922
|
ReplicationGroupId?: string;
|
|
26923
|
+
/** One or more Amazon VPC security groups associated with this replication group. */
|
|
26597
26924
|
SecurityGroupIds?: string[];
|
|
26925
|
+
/** A list of Amazon Resource Names (ARN) that uniquely identify the Redis RDB snapshot files stored in Amazon S3. */
|
|
26598
26926
|
SnapshotArns?: string[];
|
|
26927
|
+
/** The name of a snapshot from which to restore data into the new replication group. The snapshot status changes to restoring while the new replication group is being created. */
|
|
26599
26928
|
SnapshotName?: string;
|
|
26929
|
+
/** The number of days for which ElastiCache retains automatic snapshots before deleting them. For example, if you set SnapshotRetentionLimit to 5, a snapshot that was taken today is retained for 5 days before being deleted. */
|
|
26600
26930
|
SnapshotRetentionLimit?: number;
|
|
26931
|
+
/** The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot be set for Redis (cluster mode enabled) replication groups. */
|
|
26601
26932
|
SnapshottingClusterId?: string;
|
|
26933
|
+
/** The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of your node group (shard). */
|
|
26602
26934
|
SnapshotWindow?: string;
|
|
26935
|
+
/** A list of cost allocation tags to be added to this resource. Tags are comma-separated key,value pairs (e.g. Key=myKey, Value=myKeyValue. You can include multiple tags as shown following: Key=myKey, Value=myKeyValue Key=mySecondKey, Value=mySecondKeyValue. */
|
|
26603
26936
|
Tags?: ReplicationGroup_Tag[];
|
|
26937
|
+
/** A flag that enables in-transit encryption when set to true. */
|
|
26604
26938
|
TransitEncryptionEnabled?: boolean;
|
|
26939
|
+
/** A setting that allows you to migrate your clients to use in-transit encryption, with no downtime. When setting TransitEncryptionEnabled to true, you can set your TransitEncryptionMode to preferred in the same request, to allow both encrypted and unencrypted connections at the same time. Once you migrate all your Redis OSS clients to use encrypted connections you can modify the value to required to allow encrypted connections only. Setting TransitEncryptionMode to required is a two-step process that requires you to first set the TransitEncryptionMode to preferred, after that you can set TransitEncryptionMode to required. This process will not trigger the replacement of the replication group. */
|
|
26605
26940
|
TransitEncryptionMode?: string;
|
|
26941
|
+
/** The ID of user group to associate with the replication group. */
|
|
26606
26942
|
UserGroupIds?: string[];
|
|
26607
26943
|
}, attributes?: CFResourceAttributes);
|
|
26944
|
+
readonly ConfigurationEndPoint: ReplicationGroup_Endpoint;
|
|
26608
26945
|
readonly ConfigurationEndPoint_Address: string;
|
|
26609
26946
|
readonly ConfigurationEndPoint_Port: string;
|
|
26947
|
+
readonly PrimaryEndPoint: ReplicationGroup_Endpoint;
|
|
26610
26948
|
readonly PrimaryEndPoint_Address: string;
|
|
26611
26949
|
readonly PrimaryEndPoint_Port: string;
|
|
26950
|
+
readonly ReadEndPoint: Record<string, unknown>;
|
|
26612
26951
|
readonly ReadEndPoint_Addresses: string;
|
|
26613
|
-
readonly
|
|
26952
|
+
readonly ReadEndPoint_AddressesList: string;
|
|
26614
26953
|
readonly ReadEndPoint_Ports: string;
|
|
26615
|
-
readonly
|
|
26954
|
+
readonly ReadEndPoint_PortsList: string;
|
|
26955
|
+
readonly ReaderEndPoint: ReplicationGroup_Endpoint;
|
|
26616
26956
|
readonly ReaderEndPoint_Address: string;
|
|
26617
26957
|
readonly ReaderEndPoint_Port: string;
|
|
26618
|
-
readonly ReplicationGroupId: string;
|
|
26619
26958
|
}
|
|
26620
26959
|
|
|
26621
26960
|
export declare class ReplicationInstance {
|
|
@@ -27724,6 +28063,33 @@ export declare class RotationSchedule {
|
|
|
27724
28063
|
readonly Id: string;
|
|
27725
28064
|
}
|
|
27726
28065
|
|
|
28066
|
+
export declare class Route53GlobalResolverFirewallDomainList {
|
|
28067
|
+
constructor(props: {
|
|
28068
|
+
GlobalResolverId: string;
|
|
28069
|
+
Name: string;
|
|
28070
|
+
Arn?: string;
|
|
28071
|
+
ClientToken?: string;
|
|
28072
|
+
CreatedAt?: string;
|
|
28073
|
+
Description?: string;
|
|
28074
|
+
DomainCount?: number;
|
|
28075
|
+
/** S3 URL to import domains from. */
|
|
28076
|
+
DomainFileUrl?: string;
|
|
28077
|
+
Domains?: any;
|
|
28078
|
+
FirewallDomainListId?: string;
|
|
28079
|
+
Status?: Route53GlobalResolverFirewallDomainList_CRResourceStatus;
|
|
28080
|
+
StatusMessage?: string;
|
|
28081
|
+
Tags?: Route53GlobalResolverFirewallDomainList_Tag[];
|
|
28082
|
+
UpdatedAt?: string;
|
|
28083
|
+
}, attributes?: CFResourceAttributes);
|
|
28084
|
+
readonly Arn: string;
|
|
28085
|
+
readonly CreatedAt: string;
|
|
28086
|
+
readonly DomainCount: number;
|
|
28087
|
+
readonly FirewallDomainListId: string;
|
|
28088
|
+
readonly Status: Route53GlobalResolverFirewallDomainList_CRResourceStatus;
|
|
28089
|
+
readonly StatusMessage: string;
|
|
28090
|
+
readonly UpdatedAt: string;
|
|
28091
|
+
}
|
|
28092
|
+
|
|
27727
28093
|
export declare class Route53ProfilesProfile {
|
|
27728
28094
|
constructor(props: {
|
|
27729
28095
|
/** The name of the profile. */
|
|
@@ -27783,6 +28149,45 @@ AWS: :AutoScaling: :AutoScalingGroup, AWS: :CloudWatch: :Alarm, AWS: :EC2: :Cust
|
|
|
27783
28149
|
readonly ResourceSetArn: string;
|
|
27784
28150
|
}
|
|
27785
28151
|
|
|
28152
|
+
export declare class Route53ResolverFirewallDomainList {
|
|
28153
|
+
constructor(props: {
|
|
28154
|
+
/** Arn */
|
|
28155
|
+
Arn?: string;
|
|
28156
|
+
/** Rfc3339TimeString */
|
|
28157
|
+
CreationTime?: string;
|
|
28158
|
+
/** The id of the creator request. */
|
|
28159
|
+
CreatorRequestId?: string;
|
|
28160
|
+
/** Count */
|
|
28161
|
+
DomainCount?: number;
|
|
28162
|
+
/** S3 URL to import domains from. */
|
|
28163
|
+
DomainFileUrl?: string;
|
|
28164
|
+
Domains?: any;
|
|
28165
|
+
/** ResourceId */
|
|
28166
|
+
Id?: string;
|
|
28167
|
+
/** ServicePrincipal */
|
|
28168
|
+
ManagedOwnerName?: string;
|
|
28169
|
+
/** Rfc3339TimeString */
|
|
28170
|
+
ModificationTime?: string;
|
|
28171
|
+
/** FirewallDomainListName */
|
|
28172
|
+
Name?: string;
|
|
28173
|
+
/** ResolverFirewallDomainList, possible values are COMPLETE, DELETING, UPDATING, COMPLETE_IMPORT_FAILED, IMPORTING, and INACTIVE_OWNER_ACCOUNT_CLOSED. */
|
|
28174
|
+
Status?: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
28175
|
+
/** FirewallDomainListAssociationStatus */
|
|
28176
|
+
StatusMessage?: string;
|
|
28177
|
+
/** Tags */
|
|
28178
|
+
Tags?: Route53ResolverFirewallDomainList_Tag[];
|
|
28179
|
+
}, attributes?: CFResourceAttributes);
|
|
28180
|
+
readonly Arn: string;
|
|
28181
|
+
readonly CreationTime: string;
|
|
28182
|
+
readonly CreatorRequestId: string;
|
|
28183
|
+
readonly DomainCount: number;
|
|
28184
|
+
readonly Id: string;
|
|
28185
|
+
readonly ManagedOwnerName: string;
|
|
28186
|
+
readonly ModificationTime: string;
|
|
28187
|
+
readonly Status: "COMPLETE" | "COMPLETE_IMPORT_FAILED" | "DELETING" | "IMPORTING" | "INACTIVE_OWNER_ACCOUNT_CLOSED" | "UPDATING";
|
|
28188
|
+
readonly StatusMessage: string;
|
|
28189
|
+
}
|
|
28190
|
+
|
|
27786
28191
|
export declare class RouteCalculator {
|
|
27787
28192
|
constructor(props: {
|
|
27788
28193
|
CalculatorName: string;
|
|
@@ -28991,6 +29396,7 @@ export declare class SchedulingPolicy {
|
|
|
28991
29396
|
FairsharePolicy?: SchedulingPolicy_FairsharePolicy;
|
|
28992
29397
|
/** Name of Scheduling Policy. */
|
|
28993
29398
|
Name?: string;
|
|
29399
|
+
QuotaSharePolicy?: SchedulingPolicy_QuotaSharePolicy;
|
|
28994
29400
|
/** A key-value pair to associate with a resource. */
|
|
28995
29401
|
Tags?: Record<string, unknown>;
|
|
28996
29402
|
}, attributes?: CFResourceAttributes);
|
|
@@ -30790,15 +31196,25 @@ export declare class StackSet {
|
|
|
30790
31196
|
|
|
30791
31197
|
export declare class StackSetConstraint {
|
|
30792
31198
|
constructor(props: {
|
|
31199
|
+
/** One or more AWS accounts that will have access to the provisioned product. */
|
|
30793
31200
|
AccountList: string[];
|
|
31201
|
+
/** AdminRole ARN. */
|
|
30794
31202
|
AdminRole: string;
|
|
31203
|
+
/** The description of the constraint. */
|
|
30795
31204
|
Description: string;
|
|
31205
|
+
/** ExecutionRole name. */
|
|
30796
31206
|
ExecutionRole: string;
|
|
31207
|
+
/** The portfolio identifier. */
|
|
30797
31208
|
PortfolioId: string;
|
|
31209
|
+
/** The product identifier. */
|
|
30798
31210
|
ProductId: string;
|
|
31211
|
+
/** One or more AWS Regions where the provisioned product will be available. */
|
|
30799
31212
|
RegionList: string[];
|
|
31213
|
+
/** Permission to create, update, and delete stack instances. Choose from ALLOWED and NOT_ALLOWED. */
|
|
30800
31214
|
StackInstanceControl: string;
|
|
31215
|
+
/** The language code. */
|
|
30801
31216
|
AcceptLanguage?: string;
|
|
31217
|
+
/** Unique identifier for the constraint */
|
|
30802
31218
|
Id?: string;
|
|
30803
31219
|
}, attributes?: CFResourceAttributes);
|
|
30804
31220
|
readonly Id: string;
|
|
@@ -31982,6 +32398,14 @@ export declare class TaskTemplate {
|
|
|
31982
32398
|
readonly Arn: string;
|
|
31983
32399
|
}
|
|
31984
32400
|
|
|
32401
|
+
export declare class TelemetryEnrichment {
|
|
32402
|
+
constructor(props: {
|
|
32403
|
+
Scope?: TelemetryEnrichment_Scope;
|
|
32404
|
+
Status?: TelemetryEnrichment_Status;
|
|
32405
|
+
}, attributes?: CFResourceAttributes);
|
|
32406
|
+
readonly Status: TelemetryEnrichment_Status;
|
|
32407
|
+
}
|
|
32408
|
+
|
|
31985
32409
|
export declare class TelemetryPipelines {
|
|
31986
32410
|
constructor(props: {
|
|
31987
32411
|
Configuration: TelemetryPipelines_TelemetryPipelineConfiguration;
|
|
@@ -35377,8 +35801,7 @@ export declare class Workgroup {
|
|
|
35377
35801
|
Workgroup?: Workgroup_Workgroup;
|
|
35378
35802
|
}, attributes?: CFResourceAttributes);
|
|
35379
35803
|
readonly Workgroup_BaseCapacity: string;
|
|
35380
|
-
readonly
|
|
35381
|
-
readonly Workgroup_ConfigParameters_Item_ParameterValue: string;
|
|
35804
|
+
readonly Workgroup_ConfigParameters: string;
|
|
35382
35805
|
readonly Workgroup_CreationDate: string;
|
|
35383
35806
|
readonly Workgroup_Endpoint_Address: string;
|
|
35384
35807
|
readonly Workgroup_Endpoint_Port: string;
|
|
@@ -36057,6 +36480,20 @@ export declare class AccessScopePathRequest {
|
|
|
36057
36480
|
});
|
|
36058
36481
|
}
|
|
36059
36482
|
|
|
36483
|
+
export declare class AccessSource_Tag {
|
|
36484
|
+
constructor(props: {
|
|
36485
|
+
Key: string;
|
|
36486
|
+
Value: string;
|
|
36487
|
+
});
|
|
36488
|
+
}
|
|
36489
|
+
|
|
36490
|
+
export declare class AccessToken_Tag {
|
|
36491
|
+
constructor(props: {
|
|
36492
|
+
Key: string;
|
|
36493
|
+
Value: string;
|
|
36494
|
+
});
|
|
36495
|
+
}
|
|
36496
|
+
|
|
36060
36497
|
export declare class AccountAggregationSource {
|
|
36061
36498
|
constructor(props: {
|
|
36062
36499
|
AccountIds: string[];
|
|
@@ -47626,6 +48063,7 @@ export declare class AthenaTableReference {
|
|
|
47626
48063
|
DatabaseName: string;
|
|
47627
48064
|
TableName: string;
|
|
47628
48065
|
WorkGroup: string;
|
|
48066
|
+
CatalogName?: string;
|
|
47629
48067
|
OutputLocation?: string;
|
|
47630
48068
|
Region?: ConfiguredTable_CommercialRegion;
|
|
47631
48069
|
});
|
|
@@ -50560,6 +50998,14 @@ export declare class BedrockAgentCoreGateway_GatewayInterceptorConfiguration {
|
|
|
50560
50998
|
});
|
|
50561
50999
|
}
|
|
50562
51000
|
|
|
51001
|
+
export declare class BedrockAgentCoreGateway_GatewayPolicyEngineConfiguration {
|
|
51002
|
+
constructor(props: {
|
|
51003
|
+
/** The ARN of the policy engine. The policy engine contains Cedar policies that define fine-grained authorization rules specifying who can perform what actions on which resources as agents interact through the gateway. */
|
|
51004
|
+
Arn: string;
|
|
51005
|
+
Mode: BedrockAgentCoreGateway_GatewayPolicyEngineMode;
|
|
51006
|
+
});
|
|
51007
|
+
}
|
|
51008
|
+
|
|
50563
51009
|
export declare class BedrockAgentCoreGateway_InterceptorInputConfiguration {
|
|
50564
51010
|
constructor(props: {
|
|
50565
51011
|
PassRequestHeaders: boolean;
|
|
@@ -55534,6 +55980,83 @@ export declare class CastColumnTypesOperation {
|
|
|
55534
55980
|
});
|
|
55535
55981
|
}
|
|
55536
55982
|
|
|
55983
|
+
export declare class Catalog_CatalogProperties {
|
|
55984
|
+
constructor(props: {
|
|
55985
|
+
/** Additional key-value properties for the catalog. */
|
|
55986
|
+
CustomProperties?: Record<string, unknown>;
|
|
55987
|
+
DataLakeAccessProperties?: Catalog_DataLakeAccessProperties;
|
|
55988
|
+
});
|
|
55989
|
+
}
|
|
55990
|
+
|
|
55991
|
+
export declare class Catalog_DataLakeAccessProperties {
|
|
55992
|
+
constructor(props: {
|
|
55993
|
+
/** Allows third-party engines to access data in Amazon S3 locations that are registered with Lake Formation. */
|
|
55994
|
+
AllowFullTableExternalDataAccess?: "False" | "True";
|
|
55995
|
+
/** Specifies a federated catalog type for the native catalog resource. */
|
|
55996
|
+
CatalogType?: string;
|
|
55997
|
+
/** Turns on or off data lake access for Apache Spark applications that access Amazon Redshift databases in the Data Catalog from any non-Redshift engine. */
|
|
55998
|
+
DataLakeAccess?: boolean;
|
|
55999
|
+
/** A role that will be assumed by Glue for transferring data into/out of the staging bucket during a query. */
|
|
56000
|
+
DataTransferRole?: string;
|
|
56001
|
+
/** An encryption key that will be used for the staging bucket that will be created along with the catalog. */
|
|
56002
|
+
KmsKey?: string;
|
|
56003
|
+
/** The name of the managed workgroup associated with the catalog. */
|
|
56004
|
+
ManagedWorkgroupName?: string;
|
|
56005
|
+
/** The status of the managed workgroup. */
|
|
56006
|
+
ManagedWorkgroupStatus?: string;
|
|
56007
|
+
/** The name of the Redshift database. */
|
|
56008
|
+
RedshiftDatabaseName?: string;
|
|
56009
|
+
});
|
|
56010
|
+
}
|
|
56011
|
+
|
|
56012
|
+
export declare class Catalog_DataLakePrincipal {
|
|
56013
|
+
constructor(props: {
|
|
56014
|
+
/** An identifier for the Lake Formation principal. */
|
|
56015
|
+
DataLakePrincipalIdentifier?: string;
|
|
56016
|
+
});
|
|
56017
|
+
}
|
|
56018
|
+
|
|
56019
|
+
export declare class Catalog_FederatedCatalog {
|
|
56020
|
+
constructor(props: {
|
|
56021
|
+
/** The name of the connection to an external data source. */
|
|
56022
|
+
ConnectionName?: string;
|
|
56023
|
+
/** A unique identifier for the federated catalog. */
|
|
56024
|
+
Identifier?: string;
|
|
56025
|
+
});
|
|
56026
|
+
}
|
|
56027
|
+
|
|
56028
|
+
export declare class Catalog_PrincipalPermissions {
|
|
56029
|
+
constructor(props: {
|
|
56030
|
+
/** The permissions that are granted to the principal. */
|
|
56031
|
+
Permissions?: "ALL" | "ALTER" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "DELETE" | "DROP" | "INSERT" | "SELECT"[];
|
|
56032
|
+
Principal?: Catalog_DataLakePrincipal;
|
|
56033
|
+
});
|
|
56034
|
+
}
|
|
56035
|
+
|
|
56036
|
+
export declare class Catalog_Tag {
|
|
56037
|
+
constructor(props: {
|
|
56038
|
+
/** The key name of the tag. */
|
|
56039
|
+
Key: string;
|
|
56040
|
+
/** The value for the tag. */
|
|
56041
|
+
Value: string;
|
|
56042
|
+
});
|
|
56043
|
+
}
|
|
56044
|
+
|
|
56045
|
+
export declare class Catalog_TargetRedshiftCatalog {
|
|
56046
|
+
constructor(props: {
|
|
56047
|
+
/** The Amazon Resource Name (ARN) of the catalog resource. */
|
|
56048
|
+
CatalogArn: string;
|
|
56049
|
+
});
|
|
56050
|
+
}
|
|
56051
|
+
|
|
56052
|
+
export declare class CatalogProperties {
|
|
56053
|
+
constructor(props: {
|
|
56054
|
+
/** Additional key-value properties for the catalog. */
|
|
56055
|
+
CustomProperties?: Record<string, unknown>;
|
|
56056
|
+
DataLakeAccessProperties?: Catalog_DataLakeAccessProperties;
|
|
56057
|
+
});
|
|
56058
|
+
}
|
|
56059
|
+
|
|
55537
56060
|
export declare class CatalogTarget {
|
|
55538
56061
|
constructor(props: {
|
|
55539
56062
|
/** The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a Catalog connection type paired with a NETWORK Connection type. */
|
|
@@ -57180,6 +57703,23 @@ export declare class ClientVpnEndpoint_TagSpecification {
|
|
|
57180
57703
|
});
|
|
57181
57704
|
}
|
|
57182
57705
|
|
|
57706
|
+
export declare class ClippingConfig {
|
|
57707
|
+
constructor(props: {
|
|
57708
|
+
CallbackMetadata?: string;
|
|
57709
|
+
});
|
|
57710
|
+
}
|
|
57711
|
+
|
|
57712
|
+
export declare class CloudAutonomousVmCluster_IamRole {
|
|
57713
|
+
constructor(props: {
|
|
57714
|
+
/** The AWS integration configuration settings for the AWS Identity and Access Management (IAM) service role. */
|
|
57715
|
+
AwsIntegration?: string;
|
|
57716
|
+
/** The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) service role. */
|
|
57717
|
+
IamRoleArn?: string;
|
|
57718
|
+
/** The current status of the AWS Identity and Access Management (IAM) service role. */
|
|
57719
|
+
Status?: string;
|
|
57720
|
+
});
|
|
57721
|
+
}
|
|
57722
|
+
|
|
57183
57723
|
export declare class CloudAutonomousVmCluster_MaintenanceWindow {
|
|
57184
57724
|
constructor(props: {
|
|
57185
57725
|
/** The days of the week when maintenance can be performed. */
|
|
@@ -57433,6 +57973,17 @@ export declare class CloudVmCluster_DbNode {
|
|
|
57433
57973
|
});
|
|
57434
57974
|
}
|
|
57435
57975
|
|
|
57976
|
+
export declare class CloudVmCluster_IamRole {
|
|
57977
|
+
constructor(props: {
|
|
57978
|
+
/** The AWS integration configuration settings for the AWS Identity and Access Management (IAM) service role. */
|
|
57979
|
+
AwsIntegration?: string;
|
|
57980
|
+
/** The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) service role. */
|
|
57981
|
+
IamRoleArn?: string;
|
|
57982
|
+
/** The current status of the AWS Identity and Access Management (IAM) service role. */
|
|
57983
|
+
Status?: string;
|
|
57984
|
+
});
|
|
57985
|
+
}
|
|
57986
|
+
|
|
57436
57987
|
export declare class CloudVmCluster_Tag {
|
|
57437
57988
|
constructor(props: {
|
|
57438
57989
|
/** The key name of the tag. You can specify a value that's 1 to 128 Unicode characters in length and can't be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, @, -, and ". */
|
|
@@ -60493,6 +61044,127 @@ export declare class ConfigurationTemplate_SourceConfiguration {
|
|
|
60493
61044
|
});
|
|
60494
61045
|
}
|
|
60495
61046
|
|
|
61047
|
+
export declare class ConfiguredModelAlgorithm_ContainerConfig {
|
|
61048
|
+
constructor(props: {
|
|
61049
|
+
ImageUri: string;
|
|
61050
|
+
Arguments?: string[];
|
|
61051
|
+
Entrypoint?: string[];
|
|
61052
|
+
MetricDefinitions?: ConfiguredModelAlgorithm_MetricDefinition[];
|
|
61053
|
+
});
|
|
61054
|
+
}
|
|
61055
|
+
|
|
61056
|
+
export declare class ConfiguredModelAlgorithm_InferenceContainerConfig {
|
|
61057
|
+
constructor(props: {
|
|
61058
|
+
ImageUri: string;
|
|
61059
|
+
});
|
|
61060
|
+
}
|
|
61061
|
+
|
|
61062
|
+
export declare class ConfiguredModelAlgorithm_MetricDefinition {
|
|
61063
|
+
constructor(props: {
|
|
61064
|
+
Name: string;
|
|
61065
|
+
Regex: string;
|
|
61066
|
+
});
|
|
61067
|
+
}
|
|
61068
|
+
|
|
61069
|
+
export declare class ConfiguredModelAlgorithm_Tag {
|
|
61070
|
+
constructor(props: {
|
|
61071
|
+
Key: string;
|
|
61072
|
+
Value: string;
|
|
61073
|
+
});
|
|
61074
|
+
}
|
|
61075
|
+
|
|
61076
|
+
export declare class ConfiguredModelAlgorithmAssociation_CustomEntityConfig {
|
|
61077
|
+
constructor(props: {
|
|
61078
|
+
CustomDataIdentifiers: string[];
|
|
61079
|
+
});
|
|
61080
|
+
}
|
|
61081
|
+
|
|
61082
|
+
export declare class ConfiguredModelAlgorithmAssociation_LogRedactionConfiguration {
|
|
61083
|
+
constructor(props: {
|
|
61084
|
+
EntitiesToRedact: ConfiguredModelAlgorithmAssociation_EntityType[];
|
|
61085
|
+
CustomEntityConfig?: ConfiguredModelAlgorithmAssociation_CustomEntityConfig;
|
|
61086
|
+
});
|
|
61087
|
+
}
|
|
61088
|
+
|
|
61089
|
+
export declare class ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy {
|
|
61090
|
+
constructor(props: {
|
|
61091
|
+
AllowedAccountIds: string[];
|
|
61092
|
+
FilterPattern?: string;
|
|
61093
|
+
LogRedactionConfiguration?: ConfiguredModelAlgorithmAssociation_LogRedactionConfiguration;
|
|
61094
|
+
LogType?: ConfiguredModelAlgorithmAssociation_LogType;
|
|
61095
|
+
});
|
|
61096
|
+
}
|
|
61097
|
+
|
|
61098
|
+
export declare class ConfiguredModelAlgorithmAssociation_MetricsConfigurationPolicy {
|
|
61099
|
+
constructor(props: {
|
|
61100
|
+
NoiseLevel: ConfiguredModelAlgorithmAssociation_NoiseLevelType;
|
|
61101
|
+
});
|
|
61102
|
+
}
|
|
61103
|
+
|
|
61104
|
+
export declare class ConfiguredModelAlgorithmAssociation_PrivacyConfiguration {
|
|
61105
|
+
constructor(props: {
|
|
61106
|
+
Policies: ConfiguredModelAlgorithmAssociation_PrivacyConfigurationPolicies;
|
|
61107
|
+
});
|
|
61108
|
+
}
|
|
61109
|
+
|
|
61110
|
+
export declare class ConfiguredModelAlgorithmAssociation_PrivacyConfigurationPolicies {
|
|
61111
|
+
constructor(props: {
|
|
61112
|
+
TrainedModelExports?: ConfiguredModelAlgorithmAssociation_TrainedModelExportsConfigurationPolicy;
|
|
61113
|
+
TrainedModelInferenceJobs?: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceJobsConfigurationPolicy;
|
|
61114
|
+
TrainedModels?: ConfiguredModelAlgorithmAssociation_TrainedModelsConfigurationPolicy;
|
|
61115
|
+
});
|
|
61116
|
+
}
|
|
61117
|
+
|
|
61118
|
+
export declare class ConfiguredModelAlgorithmAssociation_Tag {
|
|
61119
|
+
constructor(props: {
|
|
61120
|
+
Key: string;
|
|
61121
|
+
Value: string;
|
|
61122
|
+
});
|
|
61123
|
+
}
|
|
61124
|
+
|
|
61125
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSize {
|
|
61126
|
+
constructor(props: {
|
|
61127
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSizeUnitType;
|
|
61128
|
+
Value: number;
|
|
61129
|
+
});
|
|
61130
|
+
}
|
|
61131
|
+
|
|
61132
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelExportsConfigurationPolicy {
|
|
61133
|
+
constructor(props: {
|
|
61134
|
+
FilesToExport: ConfiguredModelAlgorithmAssociation_TrainedModelExportFileType[];
|
|
61135
|
+
MaxSize: ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSize;
|
|
61136
|
+
});
|
|
61137
|
+
}
|
|
61138
|
+
|
|
61139
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSize {
|
|
61140
|
+
constructor(props: {
|
|
61141
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSizeUnitType;
|
|
61142
|
+
Value: number;
|
|
61143
|
+
});
|
|
61144
|
+
}
|
|
61145
|
+
|
|
61146
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelInferenceJobsConfigurationPolicy {
|
|
61147
|
+
constructor(props: {
|
|
61148
|
+
ContainerLogs?: ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy[];
|
|
61149
|
+
MaxOutputSize?: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSize;
|
|
61150
|
+
});
|
|
61151
|
+
}
|
|
61152
|
+
|
|
61153
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSize {
|
|
61154
|
+
constructor(props: {
|
|
61155
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSizeUnitType;
|
|
61156
|
+
Value: number;
|
|
61157
|
+
});
|
|
61158
|
+
}
|
|
61159
|
+
|
|
61160
|
+
export declare class ConfiguredModelAlgorithmAssociation_TrainedModelsConfigurationPolicy {
|
|
61161
|
+
constructor(props: {
|
|
61162
|
+
ContainerLogs?: ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy[];
|
|
61163
|
+
ContainerMetrics?: ConfiguredModelAlgorithmAssociation_MetricsConfigurationPolicy;
|
|
61164
|
+
MaxArtifactSize?: ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSize;
|
|
61165
|
+
});
|
|
61166
|
+
}
|
|
61167
|
+
|
|
60496
61168
|
export declare class ConfiguredTable_AggregateColumn {
|
|
60497
61169
|
constructor(props: {
|
|
60498
61170
|
ColumnNames: string[];
|
|
@@ -60552,6 +61224,7 @@ export declare class ConfiguredTable_AthenaTableReference {
|
|
|
60552
61224
|
DatabaseName: string;
|
|
60553
61225
|
TableName: string;
|
|
60554
61226
|
WorkGroup: string;
|
|
61227
|
+
CatalogName?: string;
|
|
60555
61228
|
OutputLocation?: string;
|
|
60556
61229
|
Region?: ConfiguredTable_CommercialRegion;
|
|
60557
61230
|
});
|
|
@@ -62582,17 +63255,6 @@ export declare class ContainerAction {
|
|
|
62582
63255
|
});
|
|
62583
63256
|
}
|
|
62584
63257
|
|
|
62585
|
-
export declare class ContainerConfig {
|
|
62586
|
-
constructor(props: {
|
|
62587
|
-
/** A list of arguments to apply to the container. */
|
|
62588
|
-
ContainerArguments?: string[];
|
|
62589
|
-
/** The custom entry point to use on container. */
|
|
62590
|
-
ContainerEntrypoint?: string[];
|
|
62591
|
-
/** A list of variables to apply to the custom container. */
|
|
62592
|
-
ContainerEnvironmentVariables?: AppImageConfig_CustomImageContainerEnvironmentVariable[];
|
|
62593
|
-
});
|
|
62594
|
-
}
|
|
62595
|
-
|
|
62596
63258
|
export declare class ContainerConfiguration {
|
|
62597
63259
|
constructor(props: {
|
|
62598
63260
|
ContainerUri: string;
|
|
@@ -63236,7 +63898,7 @@ export declare class ControlPlanePlacement {
|
|
|
63236
63898
|
export declare class ControlPlaneScalingConfig {
|
|
63237
63899
|
constructor(props: {
|
|
63238
63900
|
/** The scaling tier for the provisioned control plane. */
|
|
63239
|
-
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-
|
|
63901
|
+
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-ultra" | "tier-xl";
|
|
63240
63902
|
});
|
|
63241
63903
|
}
|
|
63242
63904
|
|
|
@@ -63909,6 +64571,23 @@ export declare class CrossRegionCopyRule {
|
|
|
63909
64571
|
});
|
|
63910
64572
|
}
|
|
63911
64573
|
|
|
64574
|
+
export declare class CrossRegionCopyTarget {
|
|
64575
|
+
constructor(props: {
|
|
64576
|
+
TargetRegion?: string;
|
|
64577
|
+
});
|
|
64578
|
+
}
|
|
64579
|
+
|
|
64580
|
+
export declare class CrossRegionS3RestoreSourcesAccess {
|
|
64581
|
+
constructor(props: {
|
|
64582
|
+
/** The IPv4 addresses allowed for cross-Region Amazon S3 restore access. */
|
|
64583
|
+
Ipv4Addresses?: string[];
|
|
64584
|
+
/** The AWS-Region for cross-Region Amazon S3 restore access. */
|
|
64585
|
+
Region?: string;
|
|
64586
|
+
/** The current status of the cross-Region Amazon S3 restore access configuration. */
|
|
64587
|
+
Status?: OdbNetwork_ManagedResourceStatus;
|
|
64588
|
+
});
|
|
64589
|
+
}
|
|
64590
|
+
|
|
63912
64591
|
export declare class CsrExtensions {
|
|
63913
64592
|
constructor(props: {
|
|
63914
64593
|
KeyUsage?: CertificateAuthority_KeyUsage;
|
|
@@ -64210,6 +64889,12 @@ export declare class CustomEmailSender {
|
|
|
64210
64889
|
});
|
|
64211
64890
|
}
|
|
64212
64891
|
|
|
64892
|
+
export declare class CustomEntityConfig {
|
|
64893
|
+
constructor(props: {
|
|
64894
|
+
CustomDataIdentifiers: string[];
|
|
64895
|
+
});
|
|
64896
|
+
}
|
|
64897
|
+
|
|
64213
64898
|
export declare class CustomerContact {
|
|
64214
64899
|
constructor(props: {
|
|
64215
64900
|
/** The email address of the contact. */
|
|
@@ -66784,6 +67469,40 @@ export declare class DataLake_Transitions {
|
|
|
66784
67469
|
});
|
|
66785
67470
|
}
|
|
66786
67471
|
|
|
67472
|
+
export declare class DataLakeAccessProperties {
|
|
67473
|
+
constructor(props: {
|
|
67474
|
+
/** Allows third-party engines to access data in Amazon S3 locations that are registered with Lake Formation. */
|
|
67475
|
+
AllowFullTableExternalDataAccess?: "False" | "True";
|
|
67476
|
+
/** Specifies a federated catalog type for the native catalog resource. */
|
|
67477
|
+
CatalogType?: string;
|
|
67478
|
+
/** Turns on or off data lake access for Apache Spark applications that access Amazon Redshift databases in the Data Catalog from any non-Redshift engine. */
|
|
67479
|
+
DataLakeAccess?: boolean;
|
|
67480
|
+
/** A role that will be assumed by Glue for transferring data into/out of the staging bucket during a query. */
|
|
67481
|
+
DataTransferRole?: string;
|
|
67482
|
+
/** An encryption key that will be used for the staging bucket that will be created along with the catalog. */
|
|
67483
|
+
KmsKey?: string;
|
|
67484
|
+
/** The name of the managed workgroup associated with the catalog. */
|
|
67485
|
+
ManagedWorkgroupName?: string;
|
|
67486
|
+
/** The status of the managed workgroup. */
|
|
67487
|
+
ManagedWorkgroupStatus?: string;
|
|
67488
|
+
/** The name of the Redshift database. */
|
|
67489
|
+
RedshiftDatabaseName?: string;
|
|
67490
|
+
});
|
|
67491
|
+
}
|
|
67492
|
+
|
|
67493
|
+
export declare class DataLakeSettings_DataLakePrincipal {
|
|
67494
|
+
constructor(props: {
|
|
67495
|
+
DataLakePrincipalIdentifier: string;
|
|
67496
|
+
});
|
|
67497
|
+
}
|
|
67498
|
+
|
|
67499
|
+
export declare class DataLakeSettings_PrincipalPermissions {
|
|
67500
|
+
constructor(props: {
|
|
67501
|
+
Permissions: string[];
|
|
67502
|
+
Principal: DataLakeSettings_DataLakePrincipal;
|
|
67503
|
+
});
|
|
67504
|
+
}
|
|
67505
|
+
|
|
66787
67506
|
export declare class DataMigration_DataMigrationSettings {
|
|
66788
67507
|
constructor(props: {
|
|
66789
67508
|
/** The property specifies whether to enable the CloudWatch log. */
|
|
@@ -71105,6 +71824,12 @@ export declare class DeploymentStrategy_Tag {
|
|
|
71105
71824
|
});
|
|
71106
71825
|
}
|
|
71107
71826
|
|
|
71827
|
+
export declare class DeploymentStrategyOptions {
|
|
71828
|
+
constructor(props: {
|
|
71829
|
+
DeploymentStrategy?: "CapacityOptimized" | "Default";
|
|
71830
|
+
});
|
|
71831
|
+
}
|
|
71832
|
+
|
|
71108
71833
|
export declare class DeploymentStyle {
|
|
71109
71834
|
constructor(props: {
|
|
71110
71835
|
/** Indicates whether to route deployment traffic behind a load balancer. */
|
|
@@ -72767,6 +73492,12 @@ export declare class DLMLifecyclePolicy_CrossRegionCopyRule {
|
|
|
72767
73492
|
});
|
|
72768
73493
|
}
|
|
72769
73494
|
|
|
73495
|
+
export declare class DLMLifecyclePolicy_CrossRegionCopyTarget {
|
|
73496
|
+
constructor(props: {
|
|
73497
|
+
TargetRegion?: string;
|
|
73498
|
+
});
|
|
73499
|
+
}
|
|
73500
|
+
|
|
72770
73501
|
export declare class DLMLifecyclePolicy_DeprecateRule {
|
|
72771
73502
|
constructor(props: {
|
|
72772
73503
|
Count?: number;
|
|
@@ -72800,8 +73531,8 @@ export declare class DLMLifecyclePolicy_EventSource {
|
|
|
72800
73531
|
export declare class DLMLifecyclePolicy_Exclusions {
|
|
72801
73532
|
constructor(props: {
|
|
72802
73533
|
ExcludeBootVolumes?: boolean;
|
|
72803
|
-
ExcludeTags?:
|
|
72804
|
-
ExcludeVolumeTypes?: Record<string, unknown
|
|
73534
|
+
ExcludeTags?: DLMLifecyclePolicy_Tag[];
|
|
73535
|
+
ExcludeVolumeTypes?: Record<string, unknown>[];
|
|
72805
73536
|
});
|
|
72806
73537
|
}
|
|
72807
73538
|
|
|
@@ -72827,7 +73558,7 @@ export declare class DLMLifecyclePolicy_PolicyDetails {
|
|
|
72827
73558
|
Actions?: DLMLifecyclePolicy_Action[];
|
|
72828
73559
|
CopyTags?: boolean;
|
|
72829
73560
|
CreateInterval?: number;
|
|
72830
|
-
CrossRegionCopyTargets?:
|
|
73561
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
72831
73562
|
EventSource?: DLMLifecyclePolicy_EventSource;
|
|
72832
73563
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
72833
73564
|
ExtendDeletion?: boolean;
|
|
@@ -73313,6 +74044,13 @@ export declare class DNSTargetResource {
|
|
|
73313
74044
|
});
|
|
73314
74045
|
}
|
|
73315
74046
|
|
|
74047
|
+
export declare class DnsView_Tag {
|
|
74048
|
+
constructor(props: {
|
|
74049
|
+
Key: string;
|
|
74050
|
+
Value: string;
|
|
74051
|
+
});
|
|
74052
|
+
}
|
|
74053
|
+
|
|
73316
74054
|
export declare class DocDBDBCluster_ServerlessV2ScalingConfiguration {
|
|
73317
74055
|
constructor(props: {
|
|
73318
74056
|
MaxCapacity: number;
|
|
@@ -74506,6 +75244,12 @@ export declare class EC2Fleet_Placement {
|
|
|
74506
75244
|
});
|
|
74507
75245
|
}
|
|
74508
75246
|
|
|
75247
|
+
export declare class EC2Fleet_ReservedCapacityOptionsRequest {
|
|
75248
|
+
constructor(props: {
|
|
75249
|
+
ReservationTypes?: "interruptible-capacity-reservation"[];
|
|
75250
|
+
});
|
|
75251
|
+
}
|
|
75252
|
+
|
|
74509
75253
|
export declare class EC2Fleet_SpotOptionsRequest {
|
|
74510
75254
|
constructor(props: {
|
|
74511
75255
|
AllocationStrategy?: "capacity-optimized" | "capacity-optimized-prioritized" | "capacityOptimized" | "capacityOptimizedPrioritized" | "diversified" | "lowest-price" | "lowestPrice" | "price-capacity-optimized" | "priceCapacityOptimized";
|
|
@@ -74536,7 +75280,7 @@ export declare class EC2Fleet_TagSpecification {
|
|
|
74536
75280
|
export declare class EC2Fleet_TargetCapacitySpecificationRequest {
|
|
74537
75281
|
constructor(props: {
|
|
74538
75282
|
TotalTargetCapacity: number;
|
|
74539
|
-
DefaultTargetCapacityType?: "on-demand" | "spot";
|
|
75283
|
+
DefaultTargetCapacityType?: "on-demand" | "reserved-capacity" | "spot";
|
|
74540
75284
|
OnDemandTargetCapacity?: number;
|
|
74541
75285
|
SpotTargetCapacity?: number;
|
|
74542
75286
|
TargetCapacityUnitType?: "memory-mib" | "units" | "vcpu";
|
|
@@ -75964,7 +76708,7 @@ export declare class EKSCluster_ControlPlanePlacement {
|
|
|
75964
76708
|
export declare class EKSCluster_ControlPlaneScalingConfig {
|
|
75965
76709
|
constructor(props: {
|
|
75966
76710
|
/** The scaling tier for the provisioned control plane. */
|
|
75967
|
-
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-
|
|
76711
|
+
Tier?: "standard" | "tier-2xl" | "tier-4xl" | "tier-8xl" | "tier-ultra" | "tier-xl";
|
|
75968
76712
|
});
|
|
75969
76713
|
}
|
|
75970
76714
|
|
|
@@ -76032,7 +76776,7 @@ export declare class EKSCluster_Provider {
|
|
|
76032
76776
|
export declare class EKSCluster_RemoteNetworkConfig {
|
|
76033
76777
|
constructor(props: {
|
|
76034
76778
|
/** Network configuration of nodes run on-premises with EKS Hybrid Nodes. */
|
|
76035
|
-
RemoteNodeNetworks
|
|
76779
|
+
RemoteNodeNetworks?: any;
|
|
76036
76780
|
/** Network configuration of pods run on-premises with EKS Hybrid Nodes. */
|
|
76037
76781
|
RemotePodNetworks?: any;
|
|
76038
76782
|
});
|
|
@@ -77636,6 +78380,14 @@ export declare class EncoderSettings {
|
|
|
77636
78380
|
});
|
|
77637
78381
|
}
|
|
77638
78382
|
|
|
78383
|
+
export declare class EncodingConfig {
|
|
78384
|
+
constructor(props: {
|
|
78385
|
+
EncodingProfile?: MediaConnectFlow_EncodingProfile;
|
|
78386
|
+
/** The maximum video bitrate to use when transcoding the NDI source to a Transport Stream. This parameter enables you to override the default video bitrate within the encoding profile's supported range. The supported range is 10,000,000 - 50,000,000 bits per second (bps). If you do not specify a value, MediaConnect uses the default value of 20,000,000 bps. */
|
|
78387
|
+
VideoMaxBitrate?: number;
|
|
78388
|
+
});
|
|
78389
|
+
}
|
|
78390
|
+
|
|
77639
78391
|
export declare class EncodingParameters {
|
|
77640
78392
|
constructor(props: {
|
|
77641
78393
|
/** A value that is used to calculate compression for an output. The bitrate of the output is calculated as follows: Output bitrate = (1 / compressionFactor) * (source bitrate) This property only applies to outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol. Valid values are in the range of 3.0 to 10.0, inclusive. */
|
|
@@ -80317,8 +81069,8 @@ export declare class ExclusionRules {
|
|
|
80317
81069
|
export declare class Exclusions {
|
|
80318
81070
|
constructor(props: {
|
|
80319
81071
|
ExcludeBootVolumes?: boolean;
|
|
80320
|
-
ExcludeTags?:
|
|
80321
|
-
ExcludeVolumeTypes?: Record<string, unknown
|
|
81072
|
+
ExcludeTags?: DLMLifecyclePolicy_Tag[];
|
|
81073
|
+
ExcludeVolumeTypes?: Record<string, unknown>[];
|
|
80322
81074
|
});
|
|
80323
81075
|
}
|
|
80324
81076
|
|
|
@@ -80371,12 +81123,6 @@ export declare class ExecutionApprovalConfiguration {
|
|
|
80371
81123
|
});
|
|
80372
81124
|
}
|
|
80373
81125
|
|
|
80374
|
-
export declare class ExecutionControls {
|
|
80375
|
-
constructor(props: {
|
|
80376
|
-
SsmControls?: RemediationConfiguration_SsmControls;
|
|
80377
|
-
});
|
|
80378
|
-
}
|
|
80379
|
-
|
|
80380
81126
|
export declare class ExecutionPlan_CapacityUnitsConfiguration {
|
|
80381
81127
|
constructor(props: {
|
|
80382
81128
|
RescoreCapacityUnits: number;
|
|
@@ -81427,6 +82173,15 @@ export declare class FederatedAuthenticationRequest {
|
|
|
81427
82173
|
});
|
|
81428
82174
|
}
|
|
81429
82175
|
|
|
82176
|
+
export declare class FederatedCatalog {
|
|
82177
|
+
constructor(props: {
|
|
82178
|
+
/** The name of the connection to an external data source. */
|
|
82179
|
+
ConnectionName?: string;
|
|
82180
|
+
/** A unique identifier for the federated catalog. */
|
|
82181
|
+
Identifier?: string;
|
|
82182
|
+
});
|
|
82183
|
+
}
|
|
82184
|
+
|
|
81430
82185
|
export declare class FederatedDatabase {
|
|
81431
82186
|
constructor(props: {
|
|
81432
82187
|
/** The name of the connection to the external metastore. */
|
|
@@ -81453,6 +82208,21 @@ export declare class FederationParameters {
|
|
|
81453
82208
|
});
|
|
81454
82209
|
}
|
|
81455
82210
|
|
|
82211
|
+
export declare class Feed_ClippingConfig {
|
|
82212
|
+
constructor(props: {
|
|
82213
|
+
CallbackMetadata?: string;
|
|
82214
|
+
});
|
|
82215
|
+
}
|
|
82216
|
+
|
|
82217
|
+
export declare class Feed_GetOutput {
|
|
82218
|
+
constructor(props: {
|
|
82219
|
+
Name: string;
|
|
82220
|
+
OutputConfig: any;
|
|
82221
|
+
Status: Feed_OutputStatus;
|
|
82222
|
+
Description?: string;
|
|
82223
|
+
});
|
|
82224
|
+
}
|
|
82225
|
+
|
|
81456
82226
|
export declare class FeedbackAttributes {
|
|
81457
82227
|
constructor(props: {
|
|
81458
82228
|
/** If the value is true, you receive email notifications when bounce or complaint events occur */
|
|
@@ -81913,15 +82683,6 @@ export declare class Firewall_Tag {
|
|
|
81913
82683
|
});
|
|
81914
82684
|
}
|
|
81915
82685
|
|
|
81916
|
-
export declare class FirewallDomainList_Tag {
|
|
81917
|
-
constructor(props: {
|
|
81918
|
-
/** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
81919
|
-
Key: string;
|
|
81920
|
-
/** The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
81921
|
-
Value: string;
|
|
81922
|
-
});
|
|
81923
|
-
}
|
|
81924
|
-
|
|
81925
82686
|
export declare class FirewallPolicy_ActionDefinition {
|
|
81926
82687
|
constructor(props: {
|
|
81927
82688
|
PublishMetricAction?: FirewallPolicy_PublishMetricAction;
|
|
@@ -82005,35 +82766,6 @@ export declare class FirewallPolicy_Tag {
|
|
|
82005
82766
|
});
|
|
82006
82767
|
}
|
|
82007
82768
|
|
|
82008
|
-
export declare class FirewallRule {
|
|
82009
|
-
constructor(props: {
|
|
82010
|
-
/** Rule Action */
|
|
82011
|
-
Action: "ALERT" | "ALLOW" | "BLOCK";
|
|
82012
|
-
/** Rule Priority */
|
|
82013
|
-
Priority: number;
|
|
82014
|
-
/** BlockOverrideDnsType */
|
|
82015
|
-
BlockOverrideDnsType?: "CNAME";
|
|
82016
|
-
/** BlockOverrideDomain */
|
|
82017
|
-
BlockOverrideDomain?: string;
|
|
82018
|
-
/** BlockOverrideTtl */
|
|
82019
|
-
BlockOverrideTtl?: number;
|
|
82020
|
-
/** BlockResponse */
|
|
82021
|
-
BlockResponse?: "NODATA" | "NXDOMAIN" | "OVERRIDE";
|
|
82022
|
-
/** FirewallDomainRedirectionAction */
|
|
82023
|
-
ConfidenceThreshold?: "HIGH" | "LOW" | "MEDIUM";
|
|
82024
|
-
/** FirewallDomainRedirectionAction */
|
|
82025
|
-
DnsThreatProtection?: "DGA" | "DICTIONARY_DGA" | "DNS_TUNNELING";
|
|
82026
|
-
/** ResourceId */
|
|
82027
|
-
FirewallDomainListId?: string;
|
|
82028
|
-
/** FirewallDomainRedirectionAction */
|
|
82029
|
-
FirewallDomainRedirectionAction?: "INSPECT_REDIRECTION_DOMAIN" | "TRUST_REDIRECTION_DOMAIN";
|
|
82030
|
-
/** ResourceId */
|
|
82031
|
-
FirewallThreatProtectionId?: string;
|
|
82032
|
-
/** Qtype */
|
|
82033
|
-
Qtype?: string;
|
|
82034
|
-
});
|
|
82035
|
-
}
|
|
82036
|
-
|
|
82037
82769
|
export declare class FirewallRuleGroup_FirewallRule {
|
|
82038
82770
|
constructor(props: {
|
|
82039
82771
|
/** Rule Action */
|
|
@@ -82246,6 +82978,13 @@ export declare class FlowEntitlement_Encryption {
|
|
|
82246
82978
|
});
|
|
82247
82979
|
}
|
|
82248
82980
|
|
|
82981
|
+
export declare class FlowEntitlement_Tag {
|
|
82982
|
+
constructor(props: {
|
|
82983
|
+
Key: string;
|
|
82984
|
+
Value: string;
|
|
82985
|
+
});
|
|
82986
|
+
}
|
|
82987
|
+
|
|
82249
82988
|
export declare class FlowLog_Tag {
|
|
82250
82989
|
constructor(props: {
|
|
82251
82990
|
Key: string;
|
|
@@ -82331,6 +83070,13 @@ export declare class FlowOutput_SecretsManagerEncryptionKeyConfiguration {
|
|
|
82331
83070
|
});
|
|
82332
83071
|
}
|
|
82333
83072
|
|
|
83073
|
+
export declare class FlowOutput_Tag {
|
|
83074
|
+
constructor(props: {
|
|
83075
|
+
Key: string;
|
|
83076
|
+
Value: string;
|
|
83077
|
+
});
|
|
83078
|
+
}
|
|
83079
|
+
|
|
82334
83080
|
export declare class FlowOutput_VpcInterfaceAttachment {
|
|
82335
83081
|
constructor(props: {
|
|
82336
83082
|
/** The name of the VPC interface to use for this output. */
|
|
@@ -82370,6 +83116,13 @@ export declare class FlowSource_GatewayBridgeSource {
|
|
|
82370
83116
|
});
|
|
82371
83117
|
}
|
|
82372
83118
|
|
|
83119
|
+
export declare class FlowSource_Tag {
|
|
83120
|
+
constructor(props: {
|
|
83121
|
+
Key: string;
|
|
83122
|
+
Value: string;
|
|
83123
|
+
});
|
|
83124
|
+
}
|
|
83125
|
+
|
|
82373
83126
|
export declare class FlowSource_VpcInterfaceAttachment {
|
|
82374
83127
|
constructor(props: {
|
|
82375
83128
|
/** The name of the VPC interface to use for this resource. */
|
|
@@ -84487,6 +85240,14 @@ export declare class GatewayPlatform {
|
|
|
84487
85240
|
});
|
|
84488
85241
|
}
|
|
84489
85242
|
|
|
85243
|
+
export declare class GatewayPolicyEngineConfiguration {
|
|
85244
|
+
constructor(props: {
|
|
85245
|
+
/** The ARN of the policy engine. The policy engine contains Cedar policies that define fine-grained authorization rules specifying who can perform what actions on which resources as agents interact through the gateway. */
|
|
85246
|
+
Arn: string;
|
|
85247
|
+
Mode: BedrockAgentCoreGateway_GatewayPolicyEngineMode;
|
|
85248
|
+
});
|
|
85249
|
+
}
|
|
85250
|
+
|
|
84490
85251
|
export declare class GatewayRoute_GatewayRouteHostnameMatch {
|
|
84491
85252
|
constructor(props: {
|
|
84492
85253
|
Exact?: string;
|
|
@@ -84967,6 +85728,15 @@ export declare class GeoSpatialColumnGroup {
|
|
|
84967
85728
|
});
|
|
84968
85729
|
}
|
|
84969
85730
|
|
|
85731
|
+
export declare class GetOutput {
|
|
85732
|
+
constructor(props: {
|
|
85733
|
+
Name: string;
|
|
85734
|
+
OutputConfig: any;
|
|
85735
|
+
Status: Feed_OutputStatus;
|
|
85736
|
+
Description?: string;
|
|
85737
|
+
});
|
|
85738
|
+
}
|
|
85739
|
+
|
|
84970
85740
|
export declare class GitBranchFilterCriteria {
|
|
84971
85741
|
constructor(props: {
|
|
84972
85742
|
/** The list of patterns of Git branches that, when a commit is pushed, are to be excluded from starting the pipeline. */
|
|
@@ -85199,6 +85969,13 @@ export declare class GlobalReplicationGroupMember {
|
|
|
85199
85969
|
});
|
|
85200
85970
|
}
|
|
85201
85971
|
|
|
85972
|
+
export declare class GlobalResolver_Tag {
|
|
85973
|
+
constructor(props: {
|
|
85974
|
+
Key: string;
|
|
85975
|
+
Value: string;
|
|
85976
|
+
});
|
|
85977
|
+
}
|
|
85978
|
+
|
|
85202
85979
|
export declare class GlobalTable_AttributeDefinition {
|
|
85203
85980
|
constructor(props: {
|
|
85204
85981
|
AttributeName: string;
|
|
@@ -85727,7 +86504,7 @@ export declare class GlueSecurityConfiguration_EncryptionConfiguration {
|
|
|
85727
86504
|
constructor(props: {
|
|
85728
86505
|
CloudWatchEncryption?: GlueSecurityConfiguration_CloudWatchEncryption;
|
|
85729
86506
|
JobBookmarksEncryption?: GlueSecurityConfiguration_JobBookmarksEncryption;
|
|
85730
|
-
S3Encryptions?:
|
|
86507
|
+
S3Encryptions?: GlueSecurityConfiguration_S3Encryption[];
|
|
85731
86508
|
});
|
|
85732
86509
|
}
|
|
85733
86510
|
|
|
@@ -85738,6 +86515,13 @@ export declare class GlueSecurityConfiguration_JobBookmarksEncryption {
|
|
|
85738
86515
|
});
|
|
85739
86516
|
}
|
|
85740
86517
|
|
|
86518
|
+
export declare class GlueSecurityConfiguration_S3Encryption {
|
|
86519
|
+
constructor(props: {
|
|
86520
|
+
KmsKeyArn?: string;
|
|
86521
|
+
S3EncryptionMode?: string;
|
|
86522
|
+
});
|
|
86523
|
+
}
|
|
86524
|
+
|
|
85741
86525
|
export declare class GlueTable_Column {
|
|
85742
86526
|
constructor(props: {
|
|
85743
86527
|
Name: string;
|
|
@@ -87926,13 +88710,6 @@ export declare class IamPropertiesInput {
|
|
|
87926
88710
|
});
|
|
87927
88711
|
}
|
|
87928
88712
|
|
|
87929
|
-
export declare class IamRole {
|
|
87930
|
-
constructor(props: {
|
|
87931
|
-
/** The ARN of the IAM role. */
|
|
87932
|
-
arn?: string;
|
|
87933
|
-
});
|
|
87934
|
-
}
|
|
87935
|
-
|
|
87936
88713
|
export declare class IamUser {
|
|
87937
88714
|
constructor(props: {
|
|
87938
88715
|
/** The ARN of the IAM user. */
|
|
@@ -89492,6 +90269,12 @@ export declare class InferenceComponentStartupParameters {
|
|
|
89492
90269
|
});
|
|
89493
90270
|
}
|
|
89494
90271
|
|
|
90272
|
+
export declare class InferenceContainerConfig {
|
|
90273
|
+
constructor(props: {
|
|
90274
|
+
ImageUri: string;
|
|
90275
|
+
});
|
|
90276
|
+
}
|
|
90277
|
+
|
|
89495
90278
|
export declare class InferenceExecutionConfig {
|
|
89496
90279
|
constructor(props: {
|
|
89497
90280
|
Mode: string;
|
|
@@ -90442,6 +91225,13 @@ export declare class Insight_StringFilter {
|
|
|
90442
91225
|
});
|
|
90443
91226
|
}
|
|
90444
91227
|
|
|
91228
|
+
export declare class InsightRule_Tag {
|
|
91229
|
+
constructor(props: {
|
|
91230
|
+
Key: string;
|
|
91231
|
+
Value: string;
|
|
91232
|
+
});
|
|
91233
|
+
}
|
|
91234
|
+
|
|
90445
91235
|
export declare class InsightsConfiguration {
|
|
90446
91236
|
constructor(props: {
|
|
90447
91237
|
/** Set the InsightsEnabled value to true to enable insights or false to disable insights. */
|
|
@@ -90769,6 +91559,24 @@ export declare class InstanceConfig {
|
|
|
90769
91559
|
});
|
|
90770
91560
|
}
|
|
90771
91561
|
|
|
91562
|
+
export declare class InstanceConnectEndpoint_InstanceConnectEndpointDnsNames {
|
|
91563
|
+
constructor(props: {
|
|
91564
|
+
/** The DNS name of the EC2 Instance Connect Endpoint. */
|
|
91565
|
+
DnsName?: string;
|
|
91566
|
+
/** The Federal Information Processing Standards (FIPS) compliant DNS name of the EC2 Instance Connect Endpoint. */
|
|
91567
|
+
FipsDnsName?: string;
|
|
91568
|
+
});
|
|
91569
|
+
}
|
|
91570
|
+
|
|
91571
|
+
export declare class InstanceConnectEndpoint_InstanceConnectEndpointPublicDnsNames {
|
|
91572
|
+
constructor(props: {
|
|
91573
|
+
/** The dualstack DNS name of the EC2 Instance Connect Endpoint. A dualstack DNS name supports connections from both IPv4 and IPv6 clients. */
|
|
91574
|
+
Dualstack?: InstanceConnectEndpoint_InstanceConnectEndpointDnsNames;
|
|
91575
|
+
/** The IPv4-only DNS name of the EC2 Instance Connect Endpoint. */
|
|
91576
|
+
Ipv4?: InstanceConnectEndpoint_InstanceConnectEndpointDnsNames;
|
|
91577
|
+
});
|
|
91578
|
+
}
|
|
91579
|
+
|
|
90772
91580
|
export declare class InstanceConnectEndpoint_Tag {
|
|
90773
91581
|
constructor(props: {
|
|
90774
91582
|
Key: string;
|
|
@@ -90776,6 +91584,24 @@ export declare class InstanceConnectEndpoint_Tag {
|
|
|
90776
91584
|
});
|
|
90777
91585
|
}
|
|
90778
91586
|
|
|
91587
|
+
export declare class InstanceConnectEndpointDnsNames {
|
|
91588
|
+
constructor(props: {
|
|
91589
|
+
/** The DNS name of the EC2 Instance Connect Endpoint. */
|
|
91590
|
+
DnsName?: string;
|
|
91591
|
+
/** The Federal Information Processing Standards (FIPS) compliant DNS name of the EC2 Instance Connect Endpoint. */
|
|
91592
|
+
FipsDnsName?: string;
|
|
91593
|
+
});
|
|
91594
|
+
}
|
|
91595
|
+
|
|
91596
|
+
export declare class InstanceConnectEndpointPublicDnsNames {
|
|
91597
|
+
constructor(props: {
|
|
91598
|
+
/** The dualstack DNS name of the EC2 Instance Connect Endpoint. A dualstack DNS name supports connections from both IPv4 and IPv6 clients. */
|
|
91599
|
+
Dualstack?: InstanceConnectEndpoint_InstanceConnectEndpointDnsNames;
|
|
91600
|
+
/** The IPv4-only DNS name of the EC2 Instance Connect Endpoint. */
|
|
91601
|
+
Ipv4?: InstanceConnectEndpoint_InstanceConnectEndpointDnsNames;
|
|
91602
|
+
});
|
|
91603
|
+
}
|
|
91604
|
+
|
|
90779
91605
|
export declare class InstanceDefinition {
|
|
90780
91606
|
constructor(props: {
|
|
90781
91607
|
InstanceType: string;
|
|
@@ -91021,13 +91847,6 @@ export declare class InstanceMarketOptions {
|
|
|
91021
91847
|
});
|
|
91022
91848
|
}
|
|
91023
91849
|
|
|
91024
|
-
export declare class InstanceMarketOptionsRequest {
|
|
91025
|
-
constructor(props: {
|
|
91026
|
-
MarketType?: "capacity-block" | "spot";
|
|
91027
|
-
SpotOptions?: WorkspaceInstance_SpotMarketOptions;
|
|
91028
|
-
});
|
|
91029
|
-
}
|
|
91030
|
-
|
|
91031
91850
|
export declare class InstanceMetadataOptions {
|
|
91032
91851
|
constructor(props: {
|
|
91033
91852
|
/** Limit the number of hops that an instance metadata request can traverse to reach its destination. */
|
|
@@ -92759,6 +93578,15 @@ export declare class IpamPrefixListResolverRuleCondition {
|
|
|
92759
93578
|
});
|
|
92760
93579
|
}
|
|
92761
93580
|
|
|
93581
|
+
export declare class IPAMPrefixListResolverTarget_Tag {
|
|
93582
|
+
constructor(props: {
|
|
93583
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
93584
|
+
Key: string;
|
|
93585
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
93586
|
+
Value: string;
|
|
93587
|
+
});
|
|
93588
|
+
}
|
|
93589
|
+
|
|
92762
93590
|
export declare class IPAMResourceDiscovery_IpamOperatingRegion {
|
|
92763
93591
|
constructor(props: {
|
|
92764
93592
|
/** The name of the region. */
|
|
@@ -99190,6 +100018,13 @@ export declare class LogPublishingOptions {
|
|
|
99190
100018
|
});
|
|
99191
100019
|
}
|
|
99192
100020
|
|
|
100021
|
+
export declare class LogRedactionConfiguration {
|
|
100022
|
+
constructor(props: {
|
|
100023
|
+
EntitiesToRedact: ConfiguredModelAlgorithmAssociation_EntityType[];
|
|
100024
|
+
CustomEntityConfig?: ConfiguredModelAlgorithmAssociation_CustomEntityConfig;
|
|
100025
|
+
});
|
|
100026
|
+
}
|
|
100027
|
+
|
|
99193
100028
|
export declare class LogsBackupConfiguration {
|
|
99194
100029
|
constructor(props: {
|
|
99195
100030
|
Region: string;
|
|
@@ -99204,6 +100039,15 @@ export declare class LogsConfig {
|
|
|
99204
100039
|
});
|
|
99205
100040
|
}
|
|
99206
100041
|
|
|
100042
|
+
export declare class LogsConfigurationPolicy {
|
|
100043
|
+
constructor(props: {
|
|
100044
|
+
AllowedAccountIds: string[];
|
|
100045
|
+
FilterPattern?: string;
|
|
100046
|
+
LogRedactionConfiguration?: ConfiguredModelAlgorithmAssociation_LogRedactionConfiguration;
|
|
100047
|
+
LogType?: ConfiguredModelAlgorithmAssociation_LogType;
|
|
100048
|
+
});
|
|
100049
|
+
}
|
|
100050
|
+
|
|
99207
100051
|
export declare class LogsDestination_Tag {
|
|
99208
100052
|
constructor(props: {
|
|
99209
100053
|
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, - and @. */
|
|
@@ -100330,6 +101174,10 @@ export declare class ManagedScalingPolicy {
|
|
|
100330
101174
|
|
|
100331
101175
|
export declare class ManagedServices {
|
|
100332
101176
|
constructor(props: {
|
|
101177
|
+
/** The access configuration for the cross-Region Amazon S3 database restore source. */
|
|
101178
|
+
CrossRegionS3RestoreSourcesAccess?: OdbNetwork_CrossRegionS3RestoreSourcesAccess[];
|
|
101179
|
+
/** The AWS Key Management Service (KMS) access configuration. */
|
|
101180
|
+
KmsAccess?: Record<string, unknown>;
|
|
100333
101181
|
/** The managed Amazon S3 backup access configuration. */
|
|
100334
101182
|
ManagedS3BackupAccess?: Record<string, unknown>;
|
|
100335
101183
|
/** The IPv4 CIDR blocks for the managed services. */
|
|
@@ -100342,6 +101190,8 @@ export declare class ManagedServices {
|
|
|
100342
101190
|
ServiceNetworkArn?: string;
|
|
100343
101191
|
/** The service network endpoint configuration. */
|
|
100344
101192
|
ServiceNetworkEndpoint?: Record<string, unknown>;
|
|
101193
|
+
/** The AWS Security Token Service (STS) access configuration. */
|
|
101194
|
+
StsAccess?: Record<string, unknown>;
|
|
100345
101195
|
/** The Zero-ETL access configuration. */
|
|
100346
101196
|
ZeroEtlAccess?: Record<string, unknown>;
|
|
100347
101197
|
});
|
|
@@ -100929,6 +101779,14 @@ export declare class MediaConnectFlow_BlackFrames {
|
|
|
100929
101779
|
});
|
|
100930
101780
|
}
|
|
100931
101781
|
|
|
101782
|
+
export declare class MediaConnectFlow_EncodingConfig {
|
|
101783
|
+
constructor(props: {
|
|
101784
|
+
EncodingProfile?: MediaConnectFlow_EncodingProfile;
|
|
101785
|
+
/** The maximum video bitrate to use when transcoding the NDI source to a Transport Stream. This parameter enables you to override the default video bitrate within the encoding profile's supported range. The supported range is 10,000,000 - 50,000,000 bits per second (bps). If you do not specify a value, MediaConnect uses the default value of 20,000,000 bps. */
|
|
101786
|
+
VideoMaxBitrate?: number;
|
|
101787
|
+
});
|
|
101788
|
+
}
|
|
101789
|
+
|
|
100932
101790
|
export declare class MediaConnectFlow_Encryption {
|
|
100933
101791
|
constructor(props: {
|
|
100934
101792
|
/** The ARN of the role that you created during setup (when you set up AWS Elemental MediaConnect as a trusted entity). */
|
|
@@ -101049,6 +101907,8 @@ export declare class MediaConnectFlow_MediaStream {
|
|
|
101049
101907
|
Description?: string;
|
|
101050
101908
|
/** The format type number (sometimes referred to as RTP payload type) of the media stream. MediaConnect assigns this value to the media stream. For ST 2110 JPEG XS outputs, you need to provide this value to the receiver. */
|
|
101051
101909
|
Fmt?: number;
|
|
101910
|
+
/** Key-value pairs that can be used to tag this media stream. */
|
|
101911
|
+
Tags?: MediaConnectFlow_Tag[];
|
|
101052
101912
|
/** The resolution of the video. */
|
|
101053
101913
|
VideoFormat?: "1080i" | "1080p" | "2160p" | "480p" | "720p";
|
|
101054
101914
|
});
|
|
@@ -101080,8 +101940,8 @@ export declare class MediaConnectFlow_NdiConfig {
|
|
|
101080
101940
|
MachineName?: string;
|
|
101081
101941
|
/** A list of up to three NDI discovery server configurations. While not required by the API, this configuration is necessary for NDI functionality to work properly. */
|
|
101082
101942
|
NdiDiscoveryServers?: MediaConnectFlow_NdiDiscoveryServerConfig[];
|
|
101083
|
-
/** A setting that controls whether NDI outputs can be used in the flow.
|
|
101084
|
-
NdiState?:
|
|
101943
|
+
/** A setting that controls whether NDI sources or outputs can be used in the flow. The default value is DISABLED. This value must be set as ENABLED for your flow to support NDI sources or outputs. */
|
|
101944
|
+
NdiState?: MediaConnectFlow_NdiState;
|
|
101085
101945
|
});
|
|
101086
101946
|
}
|
|
101087
101947
|
|
|
@@ -101096,6 +101956,12 @@ export declare class MediaConnectFlow_NdiDiscoveryServerConfig {
|
|
|
101096
101956
|
});
|
|
101097
101957
|
}
|
|
101098
101958
|
|
|
101959
|
+
export declare class MediaConnectFlow_NdiSourceSettings {
|
|
101960
|
+
constructor(props: {
|
|
101961
|
+
SourceName?: string;
|
|
101962
|
+
});
|
|
101963
|
+
}
|
|
101964
|
+
|
|
101099
101965
|
export declare class MediaConnectFlow_SecretsManagerEncryptionKeyConfiguration {
|
|
101100
101966
|
constructor(props: {
|
|
101101
101967
|
/** The ARN of the IAM role used for transit encryption from the router output using AWS Secrets Manager. */
|
|
@@ -101140,8 +102006,10 @@ export declare class MediaConnectFlow_Source {
|
|
|
101140
102006
|
MinLatency?: number;
|
|
101141
102007
|
/** The name of the source. */
|
|
101142
102008
|
Name?: string;
|
|
102009
|
+
/** The settings for the NDI flow source. This includes the exact name of the upstream NDI sender that you want to connect to your flow source. */
|
|
102010
|
+
NdiSourceSettings?: MediaConnectFlow_NdiSourceSettings;
|
|
101143
102011
|
/** The protocol that is used by the source. */
|
|
101144
|
-
Protocol?: "cdi" | "
|
|
102012
|
+
Protocol?: "cdi" | "ndi-speed-hq" | "rist" | "rtp" | "rtp-fec" | "srt-caller" | "srt-listener" | "st2110-jpegxs" | "zixi-push";
|
|
101145
102013
|
RouterIntegrationState?: "DISABLED" | "ENABLED";
|
|
101146
102014
|
RouterIntegrationTransitDecryption?: MediaConnectFlow_FlowTransitEncryption;
|
|
101147
102015
|
/** The port that the flow uses to send outbound requests to initiate connection with the sender for fujitsu-qos protocol. */
|
|
@@ -101158,6 +102026,8 @@ export declare class MediaConnectFlow_Source {
|
|
|
101158
102026
|
SourceListenerPort?: number;
|
|
101159
102027
|
/** The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams. */
|
|
101160
102028
|
StreamId?: string;
|
|
102029
|
+
/** Key-value pairs that can be used to tag this source. */
|
|
102030
|
+
Tags?: MediaConnectFlow_Tag[];
|
|
101161
102031
|
/** The name of the VPC Interface this Source is configured with. */
|
|
101162
102032
|
VpcInterfaceName?: string;
|
|
101163
102033
|
/** The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. */
|
|
@@ -101178,6 +102048,13 @@ export declare class MediaConnectFlow_SourceMonitoringConfig {
|
|
|
101178
102048
|
});
|
|
101179
102049
|
}
|
|
101180
102050
|
|
|
102051
|
+
export declare class MediaConnectFlow_Tag {
|
|
102052
|
+
constructor(props: {
|
|
102053
|
+
Key: string;
|
|
102054
|
+
Value: string;
|
|
102055
|
+
});
|
|
102056
|
+
}
|
|
102057
|
+
|
|
101181
102058
|
export declare class MediaConnectFlow_VideoMonitoringSetting {
|
|
101182
102059
|
constructor(props: {
|
|
101183
102060
|
BlackFrames?: MediaConnectFlow_BlackFrames;
|
|
@@ -101199,6 +102076,8 @@ export declare class MediaConnectFlow_VpcInterface {
|
|
|
101199
102076
|
NetworkInterfaceIds?: string[];
|
|
101200
102077
|
/** The type of network adapter that you want MediaConnect to use on this interface. If you don't set this value, it defaults to ENA. */
|
|
101201
102078
|
NetworkInterfaceType?: "efa" | "ena";
|
|
102079
|
+
/** Key-value pairs that can be used to tag this VPC interface. */
|
|
102080
|
+
Tags?: MediaConnectFlow_Tag[];
|
|
101202
102081
|
});
|
|
101203
102082
|
}
|
|
101204
102083
|
|
|
@@ -103813,6 +104692,8 @@ export declare class MediaStream {
|
|
|
103813
104692
|
Description?: string;
|
|
103814
104693
|
/** The format type number (sometimes referred to as RTP payload type) of the media stream. MediaConnect assigns this value to the media stream. For ST 2110 JPEG XS outputs, you need to provide this value to the receiver. */
|
|
103815
104694
|
Fmt?: number;
|
|
104695
|
+
/** Key-value pairs that can be used to tag this media stream. */
|
|
104696
|
+
Tags?: MediaConnectFlow_Tag[];
|
|
103816
104697
|
/** The resolution of the video. */
|
|
103817
104698
|
VideoFormat?: "1080i" | "1080p" | "2160p" | "480p" | "720p";
|
|
103818
104699
|
});
|
|
@@ -104980,123 +105861,6 @@ export declare class MetricCharacteristics {
|
|
|
104980
105861
|
});
|
|
104981
105862
|
}
|
|
104982
105863
|
|
|
104983
|
-
export declare class MetricDefinition {
|
|
104984
|
-
constructor(props: {
|
|
104985
|
-
/** The name for the metric that is defined in this structure. For extended metrics, valid values are the following:
|
|
104986
|
-
|
|
104987
|
-
PerformanceNavigationDuration
|
|
104988
|
-
|
|
104989
|
-
PerformanceResourceDuration
|
|
104990
|
-
|
|
104991
|
-
NavigationSatisfiedTransaction
|
|
104992
|
-
|
|
104993
|
-
NavigationToleratedTransaction
|
|
104994
|
-
|
|
104995
|
-
NavigationFrustratedTransaction
|
|
104996
|
-
|
|
104997
|
-
WebVitalsCumulativeLayoutShift
|
|
104998
|
-
|
|
104999
|
-
WebVitalsFirstInputDelay
|
|
105000
|
-
|
|
105001
|
-
WebVitalsLargestContentfulPaint
|
|
105002
|
-
|
|
105003
|
-
WebVitalsInteractionToNextPaint
|
|
105004
|
-
|
|
105005
|
-
JsErrorCount
|
|
105006
|
-
|
|
105007
|
-
HttpErrorCount
|
|
105008
|
-
|
|
105009
|
-
SessionCount
|
|
105010
|
-
|
|
105011
|
-
PageViewCount
|
|
105012
|
-
|
|
105013
|
-
Http4xxCount
|
|
105014
|
-
|
|
105015
|
-
Http5xxCount
|
|
105016
|
-
|
|
105017
|
-
SessionDuration
|
|
105018
|
-
|
|
105019
|
-
PageViewCountPerSession
|
|
105020
|
-
|
|
105021
|
-
JsErrorCountPerSession
|
|
105022
|
-
|
|
105023
|
-
Http4xxCountPerSession
|
|
105024
|
-
|
|
105025
|
-
Http5xxCountPerSession
|
|
105026
|
-
|
|
105027
|
-
JsErrorCountPerPageView
|
|
105028
|
-
|
|
105029
|
-
Http4xxCountPerPageView
|
|
105030
|
-
|
|
105031
|
-
Http5xxCountPerPageView
|
|
105032
|
-
|
|
105033
|
-
TimeOnPage
|
|
105034
|
-
|
|
105035
|
-
ColdLaunchTime
|
|
105036
|
-
|
|
105037
|
-
WarmLaunchTime
|
|
105038
|
-
|
|
105039
|
-
CrashCount
|
|
105040
|
-
|
|
105041
|
-
ANRCount
|
|
105042
|
-
|
|
105043
|
-
AppHangCount
|
|
105044
|
-
|
|
105045
|
-
ScreenLoadCount
|
|
105046
|
-
|
|
105047
|
-
ScreenLoadTime
|
|
105048
|
-
|
|
105049
|
-
NetworkLatency
|
|
105050
|
-
|
|
105051
|
-
SpanPayloadSize
|
|
105052
|
-
|
|
105053
|
-
LogEventPayloadSize */
|
|
105054
|
-
Name: string;
|
|
105055
|
-
/** Use this field only if you are sending the metric to CloudWatch.
|
|
105056
|
-
|
|
105057
|
-
This field is a map of field paths to dimension names. It defines the dimensions to associate with this metric in CloudWatch. For extended metrics, valid values for the entries in this field are the following:
|
|
105058
|
-
|
|
105059
|
-
"metadata.pageId": "PageId"
|
|
105060
|
-
|
|
105061
|
-
"metadata.browserName": "BrowserName"
|
|
105062
|
-
|
|
105063
|
-
"metadata.deviceType": "DeviceType"
|
|
105064
|
-
|
|
105065
|
-
"metadata.osName": "OSName"
|
|
105066
|
-
|
|
105067
|
-
"metadata.countryCode": "CountryCode"
|
|
105068
|
-
|
|
105069
|
-
"event_details.fileType": "FileType"
|
|
105070
|
-
|
|
105071
|
-
All dimensions listed in this field must also be included in EventPattern. */
|
|
105072
|
-
DimensionKeys?: Record<string, unknown>;
|
|
105073
|
-
/** The pattern that defines the metric, specified as a JSON object. RUM checks events that happen in a user's session against the pattern, and events that match the pattern are sent to the metric destination.
|
|
105074
|
-
|
|
105075
|
-
When you define extended metrics, the metric definition is not valid if EventPattern is omitted.
|
|
105076
|
-
|
|
105077
|
-
Example event patterns:
|
|
105078
|
-
|
|
105079
|
-
'{ "event_type": ["com.amazon.rum.js_error_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], } }'
|
|
105080
|
-
|
|
105081
|
-
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Firefox" ] }, "event_details": { "duration": [{ "numeric": [ "<", 2000 ] }] } }'
|
|
105082
|
-
|
|
105083
|
-
'{ "event_type": ["com.amazon.rum.performance_navigation_event"], "metadata": { "browserName": [ "Chrome", "Safari" ], "countryCode": [ "US" ] }, "event_details": { "duration": [{ "numeric": [ ">=", 2000, "<", 8000 ] }] } }'
|
|
105084
|
-
|
|
105085
|
-
If the metrics destination' is CloudWatch and the event also matches a value in DimensionKeys, then the metric is published with the specified dimensions. */
|
|
105086
|
-
EventPattern?: string;
|
|
105087
|
-
/** The namespace used by CloudWatch Metrics for the metric that is defined in this structure */
|
|
105088
|
-
Namespace?: string;
|
|
105089
|
-
/** The CloudWatch metric unit to use for this metric. If you omit this field, the metric is recorded with no unit. */
|
|
105090
|
-
UnitLabel?: string;
|
|
105091
|
-
/** The field within the event object that the metric value is sourced from.
|
|
105092
|
-
|
|
105093
|
-
If you omit this field, a hardcoded value of 1 is pushed as the metric value. This is useful if you just want to count the number of events that the filter catches.
|
|
105094
|
-
|
|
105095
|
-
If this metric is sent to Evidently, this field will be passed to Evidently raw and Evidently will handle data extraction from the event. Note: Evidently has been discontinued. */
|
|
105096
|
-
ValueKey?: string;
|
|
105097
|
-
});
|
|
105098
|
-
}
|
|
105099
|
-
|
|
105100
105864
|
export declare class MetricDefinitionObject {
|
|
105101
105865
|
constructor(props: {
|
|
105102
105866
|
/** The JSON path to reference the entity id in the event. */
|
|
@@ -105247,6 +106011,12 @@ export declare class MetricsConfig {
|
|
|
105247
106011
|
});
|
|
105248
106012
|
}
|
|
105249
106013
|
|
|
106014
|
+
export declare class MetricsConfigurationPolicy {
|
|
106015
|
+
constructor(props: {
|
|
106016
|
+
NoiseLevel: ConfiguredModelAlgorithmAssociation_NoiseLevelType;
|
|
106017
|
+
});
|
|
106018
|
+
}
|
|
106019
|
+
|
|
105250
106020
|
export declare class MetricsSource {
|
|
105251
106021
|
constructor(props: {
|
|
105252
106022
|
/** The type of content stored in the metric source. */
|
|
@@ -108531,8 +109301,8 @@ export declare class NdiConfig {
|
|
|
108531
109301
|
MachineName?: string;
|
|
108532
109302
|
/** A list of up to three NDI discovery server configurations. While not required by the API, this configuration is necessary for NDI functionality to work properly. */
|
|
108533
109303
|
NdiDiscoveryServers?: MediaConnectFlow_NdiDiscoveryServerConfig[];
|
|
108534
|
-
/** A setting that controls whether NDI outputs can be used in the flow.
|
|
108535
|
-
NdiState?:
|
|
109304
|
+
/** A setting that controls whether NDI sources or outputs can be used in the flow. The default value is DISABLED. This value must be set as ENABLED for your flow to support NDI sources or outputs. */
|
|
109305
|
+
NdiState?: MediaConnectFlow_NdiState;
|
|
108536
109306
|
});
|
|
108537
109307
|
}
|
|
108538
109308
|
|
|
@@ -108547,6 +109317,12 @@ export declare class NdiDiscoveryServerConfig {
|
|
|
108547
109317
|
});
|
|
108548
109318
|
}
|
|
108549
109319
|
|
|
109320
|
+
export declare class NdiSourceSettings {
|
|
109321
|
+
constructor(props: {
|
|
109322
|
+
SourceName?: string;
|
|
109323
|
+
});
|
|
109324
|
+
}
|
|
109325
|
+
|
|
108550
109326
|
export declare class NegativeFormat {
|
|
108551
109327
|
constructor(props: {
|
|
108552
109328
|
Prefix?: string;
|
|
@@ -109620,10 +110396,15 @@ export declare class Nodegroup_UpdateConfig {
|
|
|
109620
110396
|
|
|
109621
110397
|
export declare class NodeGroupConfiguration {
|
|
109622
110398
|
constructor(props: {
|
|
110399
|
+
/** Either the ElastiCache for Redis supplied 4-digit id or a user supplied id for the node group these configuration values apply to. */
|
|
109623
110400
|
NodeGroupId?: string;
|
|
110401
|
+
/** The Availability Zone where the primary node of this node group (shard) is launched. */
|
|
109624
110402
|
PrimaryAvailabilityZone?: string;
|
|
110403
|
+
/** A list of Availability Zones to be used for the read replicas. The number of Availability Zones in this list must match the value of ReplicaCount or ReplicasPerNodeGroup if not specified. */
|
|
109625
110404
|
ReplicaAvailabilityZones?: string[];
|
|
110405
|
+
/** The number of read replica nodes in this node group (shard). */
|
|
109626
110406
|
ReplicaCount?: number;
|
|
110407
|
+
/** A string of comma-separated values where the first set of values are the slot numbers (zero based), and the second set of values are the keyspaces for each slot. The following example specifies three slots (numbered 0, 1, and 2): 0,1,2,0-4999,5000-9999,10000-16,383. */
|
|
109627
110408
|
Slots?: string;
|
|
109628
110409
|
});
|
|
109629
110410
|
}
|
|
@@ -110244,8 +111025,23 @@ export declare class OcspConfiguration {
|
|
|
110244
111025
|
});
|
|
110245
111026
|
}
|
|
110246
111027
|
|
|
111028
|
+
export declare class OdbNetwork_CrossRegionS3RestoreSourcesAccess {
|
|
111029
|
+
constructor(props: {
|
|
111030
|
+
/** The IPv4 addresses allowed for cross-Region Amazon S3 restore access. */
|
|
111031
|
+
Ipv4Addresses?: string[];
|
|
111032
|
+
/** The AWS-Region for cross-Region Amazon S3 restore access. */
|
|
111033
|
+
Region?: string;
|
|
111034
|
+
/** The current status of the cross-Region Amazon S3 restore access configuration. */
|
|
111035
|
+
Status?: OdbNetwork_ManagedResourceStatus;
|
|
111036
|
+
});
|
|
111037
|
+
}
|
|
111038
|
+
|
|
110247
111039
|
export declare class OdbNetwork_ManagedServices {
|
|
110248
111040
|
constructor(props: {
|
|
111041
|
+
/** The access configuration for the cross-Region Amazon S3 database restore source. */
|
|
111042
|
+
CrossRegionS3RestoreSourcesAccess?: OdbNetwork_CrossRegionS3RestoreSourcesAccess[];
|
|
111043
|
+
/** The AWS Key Management Service (KMS) access configuration. */
|
|
111044
|
+
KmsAccess?: Record<string, unknown>;
|
|
110249
111045
|
/** The managed Amazon S3 backup access configuration. */
|
|
110250
111046
|
ManagedS3BackupAccess?: Record<string, unknown>;
|
|
110251
111047
|
/** The IPv4 CIDR blocks for the managed services. */
|
|
@@ -110258,6 +111054,8 @@ export declare class OdbNetwork_ManagedServices {
|
|
|
110258
111054
|
ServiceNetworkArn?: string;
|
|
110259
111055
|
/** The service network endpoint configuration. */
|
|
110260
111056
|
ServiceNetworkEndpoint?: Record<string, unknown>;
|
|
111057
|
+
/** The AWS Security Token Service (STS) access configuration. */
|
|
111058
|
+
StsAccess?: Record<string, unknown>;
|
|
110261
111059
|
/** The Zero-ETL access configuration. */
|
|
110262
111060
|
ZeroEtlAccess?: Record<string, unknown>;
|
|
110263
111061
|
});
|
|
@@ -110741,6 +111539,12 @@ export declare class OpenSearchServerlessCollection_Tag {
|
|
|
110741
111539
|
});
|
|
110742
111540
|
}
|
|
110743
111541
|
|
|
111542
|
+
export declare class OpenSearchServerlessCollection_VectorOptions {
|
|
111543
|
+
constructor(props: {
|
|
111544
|
+
ServerlessVectorAcceleration?: OpenSearchServerlessCollection_ServerlessVectorAcceleration;
|
|
111545
|
+
});
|
|
111546
|
+
}
|
|
111547
|
+
|
|
110744
111548
|
export declare class OpenSearchServerlessConfiguration {
|
|
110745
111549
|
constructor(props: {
|
|
110746
111550
|
/** The ARN of the OpenSearch Service vector store. */
|
|
@@ -110874,6 +111678,12 @@ export declare class OpenSearchServiceDomain_ColdStorageOptions {
|
|
|
110874
111678
|
});
|
|
110875
111679
|
}
|
|
110876
111680
|
|
|
111681
|
+
export declare class OpenSearchServiceDomain_DeploymentStrategyOptions {
|
|
111682
|
+
constructor(props: {
|
|
111683
|
+
DeploymentStrategy?: "CapacityOptimized" | "Default";
|
|
111684
|
+
});
|
|
111685
|
+
}
|
|
111686
|
+
|
|
110877
111687
|
export declare class OpenSearchServiceDomain_DomainEndpointOptions {
|
|
110878
111688
|
constructor(props: {
|
|
110879
111689
|
CustomEndpoint?: string;
|
|
@@ -115666,7 +116476,7 @@ export declare class PolicyDetails {
|
|
|
115666
116476
|
Actions?: DLMLifecyclePolicy_Action[];
|
|
115667
116477
|
CopyTags?: boolean;
|
|
115668
116478
|
CreateInterval?: number;
|
|
115669
|
-
CrossRegionCopyTargets?:
|
|
116479
|
+
CrossRegionCopyTargets?: DLMLifecyclePolicy_CrossRegionCopyTarget[];
|
|
115670
116480
|
EventSource?: DLMLifecyclePolicy_EventSource;
|
|
115671
116481
|
Exclusions?: DLMLifecyclePolicy_Exclusions;
|
|
115672
116482
|
ExtendDeletion?: boolean;
|
|
@@ -115835,6 +116645,12 @@ export declare class PolicyStore_KmsEncryptionState {
|
|
|
115835
116645
|
});
|
|
115836
116646
|
}
|
|
115837
116647
|
|
|
116648
|
+
export declare class PolicyStore_SchemaDefinition {
|
|
116649
|
+
constructor(props: {
|
|
116650
|
+
CedarJson?: string;
|
|
116651
|
+
});
|
|
116652
|
+
}
|
|
116653
|
+
|
|
115838
116654
|
export declare class PolicyStore_Tag {
|
|
115839
116655
|
constructor(props: {
|
|
115840
116656
|
Key: string;
|
|
@@ -116473,6 +117289,20 @@ export declare class PrivacyBudgetTemplate_Tag {
|
|
|
116473
117289
|
});
|
|
116474
117290
|
}
|
|
116475
117291
|
|
|
117292
|
+
export declare class PrivacyConfiguration {
|
|
117293
|
+
constructor(props: {
|
|
117294
|
+
Policies: ConfiguredModelAlgorithmAssociation_PrivacyConfigurationPolicies;
|
|
117295
|
+
});
|
|
117296
|
+
}
|
|
117297
|
+
|
|
117298
|
+
export declare class PrivacyConfigurationPolicies {
|
|
117299
|
+
constructor(props: {
|
|
117300
|
+
TrainedModelExports?: ConfiguredModelAlgorithmAssociation_TrainedModelExportsConfigurationPolicy;
|
|
117301
|
+
TrainedModelInferenceJobs?: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceJobsConfigurationPolicy;
|
|
117302
|
+
TrainedModels?: ConfiguredModelAlgorithmAssociation_TrainedModelsConfigurationPolicy;
|
|
117303
|
+
});
|
|
117304
|
+
}
|
|
117305
|
+
|
|
116476
117306
|
export declare class PrivateDnsNameOptionsRequest {
|
|
116477
117307
|
constructor(props: {
|
|
116478
117308
|
EnableResourceNameDnsAAAARecord?: boolean;
|
|
@@ -128503,6 +129333,62 @@ export declare class QuotaSettings {
|
|
|
128503
129333
|
});
|
|
128504
129334
|
}
|
|
128505
129335
|
|
|
129336
|
+
export declare class QuotaShare_QuotaShareCapacityLimit {
|
|
129337
|
+
constructor(props: {
|
|
129338
|
+
/** The unit of compute capacity for the capacityLimit. */
|
|
129339
|
+
CapacityUnit: string;
|
|
129340
|
+
/** The maximum capacity available for the quota share. This value represents the maximum amount of resources that can be allocated to jobs in the quota share without borrowing */
|
|
129341
|
+
MaxCapacity: number;
|
|
129342
|
+
});
|
|
129343
|
+
}
|
|
129344
|
+
|
|
129345
|
+
export declare class QuotaShare_QuotaSharePreemptionConfiguration {
|
|
129346
|
+
constructor(props: {
|
|
129347
|
+
/** Whether preemption is enabled within the quota share. */
|
|
129348
|
+
InSharePreemption: "DISABLED" | "ENABLED";
|
|
129349
|
+
});
|
|
129350
|
+
}
|
|
129351
|
+
|
|
129352
|
+
export declare class QuotaShare_QuotaShareResourceSharingConfiguration {
|
|
129353
|
+
constructor(props: {
|
|
129354
|
+
/** The resource sharing strategy. */
|
|
129355
|
+
Strategy: "LEND" | "LEND_AND_BORROW" | "RESERVE";
|
|
129356
|
+
/** The maximum amount of compute capacity that can be borrowed. Use -1 for unlimited borrowing. */
|
|
129357
|
+
BorrowLimit?: number;
|
|
129358
|
+
});
|
|
129359
|
+
}
|
|
129360
|
+
|
|
129361
|
+
export declare class QuotaShareCapacityLimit {
|
|
129362
|
+
constructor(props: {
|
|
129363
|
+
/** The unit of compute capacity for the capacityLimit. */
|
|
129364
|
+
CapacityUnit: string;
|
|
129365
|
+
/** The maximum capacity available for the quota share. This value represents the maximum amount of resources that can be allocated to jobs in the quota share without borrowing */
|
|
129366
|
+
MaxCapacity: number;
|
|
129367
|
+
});
|
|
129368
|
+
}
|
|
129369
|
+
|
|
129370
|
+
export declare class QuotaSharePolicy {
|
|
129371
|
+
constructor(props: {
|
|
129372
|
+
IdleResourceAssignmentStrategy?: "FIFO";
|
|
129373
|
+
});
|
|
129374
|
+
}
|
|
129375
|
+
|
|
129376
|
+
export declare class QuotaSharePreemptionConfiguration {
|
|
129377
|
+
constructor(props: {
|
|
129378
|
+
/** Whether preemption is enabled within the quota share. */
|
|
129379
|
+
InSharePreemption: "DISABLED" | "ENABLED";
|
|
129380
|
+
});
|
|
129381
|
+
}
|
|
129382
|
+
|
|
129383
|
+
export declare class QuotaShareResourceSharingConfiguration {
|
|
129384
|
+
constructor(props: {
|
|
129385
|
+
/** The resource sharing strategy. */
|
|
129386
|
+
Strategy: "LEND" | "LEND_AND_BORROW" | "RESERVE";
|
|
129387
|
+
/** The maximum amount of compute capacity that can be borrowed. Use -1 for unlimited borrowing. */
|
|
129388
|
+
BorrowLimit?: number;
|
|
129389
|
+
});
|
|
129390
|
+
}
|
|
129391
|
+
|
|
128506
129392
|
export declare class R53ResourceRecord {
|
|
128507
129393
|
constructor(props: {
|
|
128508
129394
|
/** The DNS target domain name. */
|
|
@@ -130384,19 +131270,6 @@ export declare class Relevance {
|
|
|
130384
131270
|
});
|
|
130385
131271
|
}
|
|
130386
131272
|
|
|
130387
|
-
export declare class RemediationConfiguration_ExecutionControls {
|
|
130388
|
-
constructor(props: {
|
|
130389
|
-
SsmControls?: RemediationConfiguration_SsmControls;
|
|
130390
|
-
});
|
|
130391
|
-
}
|
|
130392
|
-
|
|
130393
|
-
export declare class RemediationConfiguration_SsmControls {
|
|
130394
|
-
constructor(props: {
|
|
130395
|
-
ConcurrentExecutionRatePercentage?: number;
|
|
130396
|
-
ErrorPercentage?: number;
|
|
130397
|
-
});
|
|
130398
|
-
}
|
|
130399
|
-
|
|
130400
131273
|
export declare class RemixSettings {
|
|
130401
131274
|
constructor(props: {
|
|
130402
131275
|
ChannelMappings?: MediaLiveChannel_AudioChannelMapping[];
|
|
@@ -130415,7 +131288,7 @@ export declare class RemoteAccess {
|
|
|
130415
131288
|
export declare class RemoteNetworkConfig {
|
|
130416
131289
|
constructor(props: {
|
|
130417
131290
|
/** Network configuration of nodes run on-premises with EKS Hybrid Nodes. */
|
|
130418
|
-
RemoteNodeNetworks
|
|
131291
|
+
RemoteNodeNetworks?: any;
|
|
130419
131292
|
/** Network configuration of pods run on-premises with EKS Hybrid Nodes. */
|
|
130420
131293
|
RemotePodNetworks?: any;
|
|
130421
131294
|
});
|
|
@@ -130621,6 +131494,7 @@ export declare class ReplicationConfiguration_RepositoryFilter {
|
|
|
130621
131494
|
|
|
130622
131495
|
export declare class ReplicationGroup_CloudWatchLogsDestinationDetails {
|
|
130623
131496
|
constructor(props: {
|
|
131497
|
+
/** The name of the CloudWatch Logs log group. */
|
|
130624
131498
|
LogGroup: string;
|
|
130625
131499
|
});
|
|
130626
131500
|
}
|
|
@@ -130632,8 +131506,18 @@ export declare class ReplicationGroup_DestinationDetails {
|
|
|
130632
131506
|
});
|
|
130633
131507
|
}
|
|
130634
131508
|
|
|
131509
|
+
export declare class ReplicationGroup_Endpoint {
|
|
131510
|
+
constructor(props: {
|
|
131511
|
+
/** The DNS hostname of the cache node. */
|
|
131512
|
+
Address?: string;
|
|
131513
|
+
/** The port number that the cache engine is listening on. */
|
|
131514
|
+
Port?: string;
|
|
131515
|
+
});
|
|
131516
|
+
}
|
|
131517
|
+
|
|
130635
131518
|
export declare class ReplicationGroup_KinesisFirehoseDestinationDetails {
|
|
130636
131519
|
constructor(props: {
|
|
131520
|
+
/** The name of the Kinesis Data Firehose delivery stream. */
|
|
130637
131521
|
DeliveryStream: string;
|
|
130638
131522
|
});
|
|
130639
131523
|
}
|
|
@@ -130641,25 +131525,35 @@ export declare class ReplicationGroup_KinesisFirehoseDestinationDetails {
|
|
|
130641
131525
|
export declare class ReplicationGroup_LogDeliveryConfigurationRequest {
|
|
130642
131526
|
constructor(props: {
|
|
130643
131527
|
DestinationDetails: ReplicationGroup_DestinationDetails;
|
|
131528
|
+
/** Specify either CloudWatch Logs or Kinesis Data Firehose as the destination type. Valid values are either cloudwatch-logs or kinesis-firehose. */
|
|
130644
131529
|
DestinationType: string;
|
|
131530
|
+
/** Valid values are either json or text. */
|
|
130645
131531
|
LogFormat: string;
|
|
131532
|
+
/** Valid value is either slow-log, which refers to slow-log or engine-log. */
|
|
130646
131533
|
LogType: string;
|
|
130647
131534
|
});
|
|
130648
131535
|
}
|
|
130649
131536
|
|
|
130650
131537
|
export declare class ReplicationGroup_NodeGroupConfiguration {
|
|
130651
131538
|
constructor(props: {
|
|
131539
|
+
/** Either the ElastiCache for Redis supplied 4-digit id or a user supplied id for the node group these configuration values apply to. */
|
|
130652
131540
|
NodeGroupId?: string;
|
|
131541
|
+
/** The Availability Zone where the primary node of this node group (shard) is launched. */
|
|
130653
131542
|
PrimaryAvailabilityZone?: string;
|
|
131543
|
+
/** A list of Availability Zones to be used for the read replicas. The number of Availability Zones in this list must match the value of ReplicaCount or ReplicasPerNodeGroup if not specified. */
|
|
130654
131544
|
ReplicaAvailabilityZones?: string[];
|
|
131545
|
+
/** The number of read replica nodes in this node group (shard). */
|
|
130655
131546
|
ReplicaCount?: number;
|
|
131547
|
+
/** A string of comma-separated values where the first set of values are the slot numbers (zero based), and the second set of values are the keyspaces for each slot. The following example specifies three slots (numbered 0, 1, and 2): 0,1,2,0-4999,5000-9999,10000-16,383. */
|
|
130656
131548
|
Slots?: string;
|
|
130657
131549
|
});
|
|
130658
131550
|
}
|
|
130659
131551
|
|
|
130660
131552
|
export declare class ReplicationGroup_Tag {
|
|
130661
131553
|
constructor(props: {
|
|
131554
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
130662
131555
|
Key: string;
|
|
131556
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
130663
131557
|
Value: string;
|
|
130664
131558
|
});
|
|
130665
131559
|
}
|
|
@@ -131136,6 +132030,12 @@ export declare class RequiredFieldInfo {
|
|
|
131136
132030
|
});
|
|
131137
132031
|
}
|
|
131138
132032
|
|
|
132033
|
+
export declare class ReservedCapacityOptionsRequest {
|
|
132034
|
+
constructor(props: {
|
|
132035
|
+
ReservationTypes?: "interruptible-capacity-reservation"[];
|
|
132036
|
+
});
|
|
132037
|
+
}
|
|
132038
|
+
|
|
131139
132039
|
export declare class ResetTimer {
|
|
131140
132040
|
constructor(props: {
|
|
131141
132041
|
/** The name of the timer to reset. */
|
|
@@ -132682,6 +133582,13 @@ export declare class Route {
|
|
|
132682
133582
|
});
|
|
132683
133583
|
}
|
|
132684
133584
|
|
|
133585
|
+
export declare class Route53GlobalResolverFirewallDomainList_Tag {
|
|
133586
|
+
constructor(props: {
|
|
133587
|
+
Key: string;
|
|
133588
|
+
Value: string;
|
|
133589
|
+
});
|
|
133590
|
+
}
|
|
133591
|
+
|
|
132685
133592
|
export declare class Route53HealthCheckConfiguration {
|
|
132686
133593
|
constructor(props: {
|
|
132687
133594
|
HostedZoneId: string;
|
|
@@ -132772,6 +133679,15 @@ export declare class Route53RecoveryReadinessResourceSet_TargetResource {
|
|
|
132772
133679
|
});
|
|
132773
133680
|
}
|
|
132774
133681
|
|
|
133682
|
+
export declare class Route53ResolverFirewallDomainList_Tag {
|
|
133683
|
+
constructor(props: {
|
|
133684
|
+
/** The key name of the tag. You can specify a value that is 1 to 127 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
133685
|
+
Key: string;
|
|
133686
|
+
/** The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
133687
|
+
Value: string;
|
|
133688
|
+
});
|
|
133689
|
+
}
|
|
133690
|
+
|
|
132775
133691
|
export declare class Route53ResourceRecordSet {
|
|
132776
133692
|
constructor(props: {
|
|
132777
133693
|
RecordSetIdentifier?: string;
|
|
@@ -134147,15 +135063,6 @@ export declare class S3DestinationProperties {
|
|
|
134147
135063
|
});
|
|
134148
135064
|
}
|
|
134149
135065
|
|
|
134150
|
-
export declare class S3Encryption {
|
|
134151
|
-
constructor(props: {
|
|
134152
|
-
/** Encryption mode for encrypting artifacts when uploading to S3. Valid values: SSE_S3 and SSE_KMS. */
|
|
134153
|
-
EncryptionMode?: string;
|
|
134154
|
-
/** KMS key Arn for encrypting artifacts when uploading to S3. You must specify KMS key Arn for SSE_KMS encryption mode only. */
|
|
134155
|
-
KmsKeyArn?: string;
|
|
134156
|
-
});
|
|
134157
|
-
}
|
|
134158
|
-
|
|
134159
135066
|
export declare class S3EncryptionConfiguration {
|
|
134160
135067
|
constructor(props: {
|
|
134161
135068
|
/** The S3 encryption option. */
|
|
@@ -136875,6 +137782,12 @@ export declare class SchedulingPolicy_FairsharePolicy {
|
|
|
136875
137782
|
});
|
|
136876
137783
|
}
|
|
136877
137784
|
|
|
137785
|
+
export declare class SchedulingPolicy_QuotaSharePolicy {
|
|
137786
|
+
constructor(props: {
|
|
137787
|
+
IdleResourceAssignmentStrategy?: "FIFO";
|
|
137788
|
+
});
|
|
137789
|
+
}
|
|
137790
|
+
|
|
136878
137791
|
export declare class SchedulingPolicy_ShareAttributes {
|
|
136879
137792
|
constructor(props: {
|
|
136880
137793
|
ShareIdentifier?: string;
|
|
@@ -141757,15 +142670,6 @@ export declare class SpotMaintenanceStrategies {
|
|
|
141757
142670
|
});
|
|
141758
142671
|
}
|
|
141759
142672
|
|
|
141760
|
-
export declare class SpotMarketOptions {
|
|
141761
|
-
constructor(props: {
|
|
141762
|
-
InstanceInterruptionBehavior?: "hibernate" | "stop";
|
|
141763
|
-
MaxPrice?: string;
|
|
141764
|
-
SpotInstanceType?: "one-time" | "persistent";
|
|
141765
|
-
ValidUntilUtc?: string;
|
|
141766
|
-
});
|
|
141767
|
-
}
|
|
141768
|
-
|
|
141769
142673
|
export declare class SpotOptions {
|
|
141770
142674
|
constructor(props: {
|
|
141771
142675
|
/** Deprecated. */
|
|
@@ -142106,13 +143010,6 @@ export declare class SSMContactsPlan_Targets {
|
|
|
142106
143010
|
});
|
|
142107
143011
|
}
|
|
142108
143012
|
|
|
142109
|
-
export declare class SsmControls {
|
|
142110
|
-
constructor(props: {
|
|
142111
|
-
ConcurrentExecutionRatePercentage?: number;
|
|
142112
|
-
ErrorPercentage?: number;
|
|
142113
|
-
});
|
|
142114
|
-
}
|
|
142115
|
-
|
|
142116
143013
|
export declare class SSMLMessage {
|
|
142117
143014
|
constructor(props: {
|
|
142118
143015
|
Value: string;
|
|
@@ -144351,7 +145248,7 @@ export declare class TargetAddress {
|
|
|
144351
145248
|
export declare class TargetCapacitySpecificationRequest {
|
|
144352
145249
|
constructor(props: {
|
|
144353
145250
|
TotalTargetCapacity: number;
|
|
144354
|
-
DefaultTargetCapacityType?: "on-demand" | "spot";
|
|
145251
|
+
DefaultTargetCapacityType?: "on-demand" | "reserved-capacity" | "spot";
|
|
144355
145252
|
OnDemandTargetCapacity?: number;
|
|
144356
145253
|
SpotTargetCapacity?: number;
|
|
144357
145254
|
TargetCapacityUnitType?: "memory-mib" | "units" | "vcpu";
|
|
@@ -144463,6 +145360,13 @@ export declare class TargetGroupsConfig {
|
|
|
144463
145360
|
});
|
|
144464
145361
|
}
|
|
144465
145362
|
|
|
145363
|
+
export declare class TargetRedshiftCatalog {
|
|
145364
|
+
constructor(props: {
|
|
145365
|
+
/** The Amazon Resource Name (ARN) of the catalog resource. */
|
|
145366
|
+
CatalogArn: string;
|
|
145367
|
+
});
|
|
145368
|
+
}
|
|
145369
|
+
|
|
144466
145370
|
export declare class TargetResource {
|
|
144467
145371
|
constructor(props: {
|
|
144468
145372
|
NLBResource?: Route53RecoveryReadinessResourceSet_NLBResource;
|
|
@@ -147616,6 +148520,49 @@ export declare class Trail_Tag {
|
|
|
147616
148520
|
});
|
|
147617
148521
|
}
|
|
147618
148522
|
|
|
148523
|
+
export declare class TrainedModelArtifactMaxSize {
|
|
148524
|
+
constructor(props: {
|
|
148525
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSizeUnitType;
|
|
148526
|
+
Value: number;
|
|
148527
|
+
});
|
|
148528
|
+
}
|
|
148529
|
+
|
|
148530
|
+
export declare class TrainedModelExportsConfigurationPolicy {
|
|
148531
|
+
constructor(props: {
|
|
148532
|
+
FilesToExport: ConfiguredModelAlgorithmAssociation_TrainedModelExportFileType[];
|
|
148533
|
+
MaxSize: ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSize;
|
|
148534
|
+
});
|
|
148535
|
+
}
|
|
148536
|
+
|
|
148537
|
+
export declare class TrainedModelExportsMaxSize {
|
|
148538
|
+
constructor(props: {
|
|
148539
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSizeUnitType;
|
|
148540
|
+
Value: number;
|
|
148541
|
+
});
|
|
148542
|
+
}
|
|
148543
|
+
|
|
148544
|
+
export declare class TrainedModelInferenceJobsConfigurationPolicy {
|
|
148545
|
+
constructor(props: {
|
|
148546
|
+
ContainerLogs?: ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy[];
|
|
148547
|
+
MaxOutputSize?: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSize;
|
|
148548
|
+
});
|
|
148549
|
+
}
|
|
148550
|
+
|
|
148551
|
+
export declare class TrainedModelInferenceMaxOutputSize {
|
|
148552
|
+
constructor(props: {
|
|
148553
|
+
Unit: ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSizeUnitType;
|
|
148554
|
+
Value: number;
|
|
148555
|
+
});
|
|
148556
|
+
}
|
|
148557
|
+
|
|
148558
|
+
export declare class TrainedModelsConfigurationPolicy {
|
|
148559
|
+
constructor(props: {
|
|
148560
|
+
ContainerLogs?: ConfiguredModelAlgorithmAssociation_LogsConfigurationPolicy[];
|
|
148561
|
+
ContainerMetrics?: ConfiguredModelAlgorithmAssociation_MetricsConfigurationPolicy;
|
|
148562
|
+
MaxArtifactSize?: ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSize;
|
|
148563
|
+
});
|
|
148564
|
+
}
|
|
148565
|
+
|
|
147619
148566
|
export declare class TrainingDataset_ColumnSchema {
|
|
147620
148567
|
constructor(props: {
|
|
147621
148568
|
ColumnName: string;
|
|
@@ -149726,6 +150673,12 @@ export declare class VectorKnowledgeBaseConfiguration {
|
|
|
149726
150673
|
});
|
|
149727
150674
|
}
|
|
149728
150675
|
|
|
150676
|
+
export declare class VectorOptions {
|
|
150677
|
+
constructor(props: {
|
|
150678
|
+
ServerlessVectorAcceleration?: OpenSearchServerlessCollection_ServerlessVectorAcceleration;
|
|
150679
|
+
});
|
|
150680
|
+
}
|
|
150681
|
+
|
|
149729
150682
|
export declare class VectorSearchConfiguration {
|
|
149730
150683
|
constructor(props: {
|
|
149731
150684
|
/** The vector search dimension */
|
|
@@ -151605,6 +152558,8 @@ export declare class VpcInterface {
|
|
|
151605
152558
|
NetworkInterfaceIds?: string[];
|
|
151606
152559
|
/** The type of network adapter that you want MediaConnect to use on this interface. If you don't set this value, it defaults to ENA. */
|
|
151607
152560
|
NetworkInterfaceType?: "efa" | "ena";
|
|
152561
|
+
/** Key-value pairs that can be used to tag this VPC interface. */
|
|
152562
|
+
Tags?: MediaConnectFlow_Tag[];
|
|
151608
152563
|
});
|
|
151609
152564
|
}
|
|
151610
152565
|
|
|
@@ -154668,13 +155623,6 @@ export declare class WorkspaceInstance_InstanceMaintenanceOptionsRequest {
|
|
|
154668
155623
|
});
|
|
154669
155624
|
}
|
|
154670
155625
|
|
|
154671
|
-
export declare class WorkspaceInstance_InstanceMarketOptionsRequest {
|
|
154672
|
-
constructor(props: {
|
|
154673
|
-
MarketType?: "capacity-block" | "spot";
|
|
154674
|
-
SpotOptions?: WorkspaceInstance_SpotMarketOptions;
|
|
154675
|
-
});
|
|
154676
|
-
}
|
|
154677
|
-
|
|
154678
155626
|
export declare class WorkspaceInstance_InstanceMetadataOptionsRequest {
|
|
154679
155627
|
constructor(props: {
|
|
154680
155628
|
HttpEndpoint?: "disabled" | "enabled";
|
|
@@ -154749,15 +155697,6 @@ export declare class WorkspaceInstance_RunInstancesMonitoringEnabled {
|
|
|
154749
155697
|
});
|
|
154750
155698
|
}
|
|
154751
155699
|
|
|
154752
|
-
export declare class WorkspaceInstance_SpotMarketOptions {
|
|
154753
|
-
constructor(props: {
|
|
154754
|
-
InstanceInterruptionBehavior?: "hibernate" | "stop";
|
|
154755
|
-
MaxPrice?: string;
|
|
154756
|
-
SpotInstanceType?: "one-time" | "persistent";
|
|
154757
|
-
ValidUntilUtc?: string;
|
|
154758
|
-
});
|
|
154759
|
-
}
|
|
154760
|
-
|
|
154761
155700
|
export declare class WorkspaceInstance_Tag {
|
|
154762
155701
|
constructor(props: {
|
|
154763
155702
|
Key: string;
|
|
@@ -155240,6 +156179,14 @@ export type Accessor_NetworkAccessorType =
|
|
|
155240
156179
|
| "POLYGON_MAINNET"
|
|
155241
156180
|
| "POLYGON_MUMBAI";
|
|
155242
156181
|
|
|
156182
|
+
export type AccessSource_CRResourceStatus = "CREATING" | "DELETING" | "OPERATIONAL" | "UPDATING";
|
|
156183
|
+
|
|
156184
|
+
export type AccessSource_DnsProtocol = "DO53" | "DOH" | "DOT";
|
|
156185
|
+
|
|
156186
|
+
export type AccessSource_IpAddressType = "IPV4" | "IPV6";
|
|
156187
|
+
|
|
156188
|
+
export type AccessToken_TokenStatus = "CREATING" | "DELETING" | "OPERATIONAL";
|
|
156189
|
+
|
|
155243
156190
|
export type ActionConnector_ActionConnectorType =
|
|
155244
156191
|
| "AMAZON_BEDROCK_AGENT_RUNTIME"
|
|
155245
156192
|
| "AMAZON_BEDROCK_DATA_AUTOMATION_RUNTIME"
|
|
@@ -157158,6 +158105,8 @@ export type BedrockAgentCoreGateway_ExceptionLevel = "DEBUG";
|
|
|
157158
158105
|
|
|
157159
158106
|
export type BedrockAgentCoreGateway_GatewayInterceptionPoint = "REQUEST" | "RESPONSE";
|
|
157160
158107
|
|
|
158108
|
+
export type BedrockAgentCoreGateway_GatewayPolicyEngineMode = "ENFORCE" | "LOG_ONLY";
|
|
158109
|
+
|
|
157161
158110
|
export type BedrockAgentCoreGateway_GatewayProtocolType = "MCP";
|
|
157162
158111
|
|
|
157163
158112
|
export type BedrockAgentCoreGateway_GatewayStatus =
|
|
@@ -157629,6 +158578,27 @@ export type ConfigurationManager_Status =
|
|
|
157629
158578
|
|
|
157630
158579
|
export type ConfigurationManager_StatusType = "AsyncExecutions" | "Deployment";
|
|
157631
158580
|
|
|
158581
|
+
export type ConfiguredModelAlgorithmAssociation_EntityType =
|
|
158582
|
+
| "ALL_PERSONALLY_IDENTIFIABLE_INFORMATION"
|
|
158583
|
+
| "CUSTOM"
|
|
158584
|
+
| "NUMBERS";
|
|
158585
|
+
|
|
158586
|
+
export type ConfiguredModelAlgorithmAssociation_LogType = "ALL" | "ERROR_SUMMARY";
|
|
158587
|
+
|
|
158588
|
+
export type ConfiguredModelAlgorithmAssociation_NoiseLevelType =
|
|
158589
|
+
| "HIGH"
|
|
158590
|
+
| "LOW"
|
|
158591
|
+
| "MEDIUM"
|
|
158592
|
+
| "NONE";
|
|
158593
|
+
|
|
158594
|
+
export type ConfiguredModelAlgorithmAssociation_TrainedModelArtifactMaxSizeUnitType = "GB";
|
|
158595
|
+
|
|
158596
|
+
export type ConfiguredModelAlgorithmAssociation_TrainedModelExportFileType = "MODEL" | "OUTPUT";
|
|
158597
|
+
|
|
158598
|
+
export type ConfiguredModelAlgorithmAssociation_TrainedModelExportsMaxSizeUnitType = "GB";
|
|
158599
|
+
|
|
158600
|
+
export type ConfiguredModelAlgorithmAssociation_TrainedModelInferenceMaxOutputSizeUnitType = "GB";
|
|
158601
|
+
|
|
157632
158602
|
export type ConfiguredTable_AdditionalAnalyses = "ALLOWED" | "NOT_ALLOWED" | "REQUIRED";
|
|
157633
158603
|
|
|
157634
158604
|
export type ConfiguredTable_AggregateFunctionName =
|
|
@@ -158342,6 +159312,21 @@ export type DevOpsGuruNotificationChannel_NotificationMessageType =
|
|
|
158342
159312
|
| "NEW_RECOMMENDATION"
|
|
158343
159313
|
| "SEVERITY_UPGRADED";
|
|
158344
159314
|
|
|
159315
|
+
export type DnsView_DnsSecValidationType = "DISABLED" | "ENABLED";
|
|
159316
|
+
|
|
159317
|
+
export type DnsView_EdnsClientSubnetType = "DISABLED" | "ENABLED";
|
|
159318
|
+
|
|
159319
|
+
export type DnsView_FirewallRulesFailOpenType = "DISABLED" | "ENABLED";
|
|
159320
|
+
|
|
159321
|
+
export type DnsView_ProfileResourceStatus =
|
|
159322
|
+
| "CREATING"
|
|
159323
|
+
| "DELETING"
|
|
159324
|
+
| "DISABLED"
|
|
159325
|
+
| "DISABLING"
|
|
159326
|
+
| "ENABLING"
|
|
159327
|
+
| "OPERATIONAL"
|
|
159328
|
+
| "UPDATING";
|
|
159329
|
+
|
|
158345
159330
|
export type ECRRepository_EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
|
|
158346
159331
|
|
|
158347
159332
|
export type ECRRepository_ImageTagMutabilityExclusionFilterType = "WILDCARD";
|
|
@@ -158426,6 +159411,8 @@ export type FeatureGroup_ThroughputMode = "OnDemand" | "Provisioned";
|
|
|
158426
159411
|
|
|
158427
159412
|
export type FeatureGroup_Unit = "Days" | "Hours" | "Minutes" | "Seconds" | "Weeks";
|
|
158428
159413
|
|
|
159414
|
+
export type Feed_OutputStatus = "DISABLED" | "ENABLED";
|
|
159415
|
+
|
|
158429
159416
|
export type FHIRDatastore_DatastoreStatus = "ACTIVE" | "CREATING" | "DELETED" | "DELETING";
|
|
158430
159417
|
|
|
158431
159418
|
export type FHIRDatastore_DatastoreTypeVersion = "R4";
|
|
@@ -158449,6 +159436,18 @@ export type FirewallPolicy_RuleOrder = "DEFAULT_ACTION_ORDER" | "STRICT_ORDER";
|
|
|
158449
159436
|
|
|
158450
159437
|
export type FirewallPolicy_StreamExceptionPolicy = "CONTINUE" | "DROP" | "REJECT";
|
|
158451
159438
|
|
|
159439
|
+
export type FirewallRule_BlockOverrideDnsQueryType = "CNAME";
|
|
159440
|
+
|
|
159441
|
+
export type FirewallRule_ConfidenceThreshold = "HIGH" | "LOW" | "MEDIUM";
|
|
159442
|
+
|
|
159443
|
+
export type FirewallRule_CRResourceStatus = "CREATING" | "DELETING" | "OPERATIONAL" | "UPDATING";
|
|
159444
|
+
|
|
159445
|
+
export type FirewallRule_DnsAdvancedProtection = "DGA" | "DICTIONARY_DGA" | "DNS_TUNNELING";
|
|
159446
|
+
|
|
159447
|
+
export type FirewallRule_FirewallBlockResponse = "NODATA" | "NXDOMAIN" | "OVERRIDE";
|
|
159448
|
+
|
|
159449
|
+
export type FirewallRule_FirewallRuleAction = "ALERT" | "ALLOW" | "BLOCK";
|
|
159450
|
+
|
|
158452
159451
|
export type FlowAlias_ConcurrencyType = "Automatic" | "Manual";
|
|
158453
159452
|
|
|
158454
159453
|
export type FlowOutput_FlowTransitEncryptionKeyType = "AUTOMATIC" | "SECRETS_MANAGER";
|
|
@@ -158570,6 +159569,10 @@ export type GatewayTarget_TargetStatus =
|
|
|
158570
159569
|
|
|
158571
159570
|
export type GeofenceCollection_PricingPlan = "RequestBasedUsage";
|
|
158572
159571
|
|
|
159572
|
+
export type GlobalResolver_CRResourceStatus = "CREATING" | "DELETING" | "OPERATIONAL" | "UPDATING";
|
|
159573
|
+
|
|
159574
|
+
export type GlobalResolver_GlobalResolverIpAddressType = "DUAL_STACK" | "IPV4";
|
|
159575
|
+
|
|
158573
159576
|
export type GrafanaWorkspace_AccountAccessType = "CURRENT_ACCOUNT" | "ORGANIZATION";
|
|
158574
159577
|
|
|
158575
159578
|
export type GrafanaWorkspace_AuthenticationProviderTypes = "AWS_SSO" | "SAML";
|
|
@@ -158693,6 +159696,11 @@ export type HealthImagingDatastore_DatastoreStatus =
|
|
|
158693
159696
|
| "DELETED"
|
|
158694
159697
|
| "DELETING";
|
|
158695
159698
|
|
|
159699
|
+
export type HostedZoneAssociation_HostedZoneAssociationStatus =
|
|
159700
|
+
| "CREATING"
|
|
159701
|
+
| "DELETING"
|
|
159702
|
+
| "OPERATIONAL";
|
|
159703
|
+
|
|
158696
159704
|
export type HoursOfOperation_OverrideType = "CLOSED" | "OPEN" | "STANDARD";
|
|
158697
159705
|
|
|
158698
159706
|
export type HoursOfOperation_RecurrenceFrequency = "MONTHLY" | "WEEKLY" | "YEARLY";
|
|
@@ -159286,8 +160294,14 @@ export type Map_PricingPlan = "RequestBasedUsage";
|
|
|
159286
160294
|
|
|
159287
160295
|
export type MatchingWorkflow_ResolutionType = "ML_MATCHING" | "PROVIDER" | "RULE_MATCHING";
|
|
159288
160296
|
|
|
160297
|
+
export type MediaConnectFlow_EncodingProfile =
|
|
160298
|
+
| "CONTRIBUTION_H264_DEFAULT"
|
|
160299
|
+
| "DISTRIBUTION_H264_DEFAULT";
|
|
160300
|
+
|
|
159289
160301
|
export type MediaConnectFlow_FlowTransitEncryptionKeyType = "AUTOMATIC" | "SECRETS_MANAGER";
|
|
159290
160302
|
|
|
160303
|
+
export type MediaConnectFlow_NdiState = "DISABLED" | "ENABLED";
|
|
160304
|
+
|
|
159291
160305
|
export type MediaLiveCluster_ClusterState =
|
|
159292
160306
|
| "ACTIVE"
|
|
159293
160307
|
| "CREATE_FAILED"
|
|
@@ -159580,6 +160594,11 @@ export type OpenSearchServerlessCollection_CollectionType =
|
|
|
159580
160594
|
| "TIMESERIES"
|
|
159581
160595
|
| "VECTORSEARCH";
|
|
159582
160596
|
|
|
160597
|
+
export type OpenSearchServerlessCollection_ServerlessVectorAcceleration =
|
|
160598
|
+
| "ALLOWED"
|
|
160599
|
+
| "DISABLED"
|
|
160600
|
+
| "ENABLED";
|
|
160601
|
+
|
|
159583
160602
|
export type OpenSearchServerlessCollection_StandbyReplicas = "DISABLED" | "ENABLED";
|
|
159584
160603
|
|
|
159585
160604
|
export type OpenSearchServerlessLifecyclePolicy_LifecyclePolicyType = "retention";
|
|
@@ -161213,6 +162232,12 @@ export type RolesAnywhereProfile_CertificateField = "x509Issuer" | "x509SAN" | "
|
|
|
161213
162232
|
|
|
161214
162233
|
export type Rotation_DayOfWeek = "FRI" | "MON" | "SAT" | "SUN" | "THU" | "TUE" | "WED";
|
|
161215
162234
|
|
|
162235
|
+
export type Route53GlobalResolverFirewallDomainList_CRResourceStatus =
|
|
162236
|
+
| "CREATING"
|
|
162237
|
+
| "DELETING"
|
|
162238
|
+
| "OPERATIONAL"
|
|
162239
|
+
| "UPDATING";
|
|
162240
|
+
|
|
161216
162241
|
export type RouteCalculator_PricingPlan = "RequestBasedUsage";
|
|
161217
162242
|
|
|
161218
162243
|
export type RouterInput_Day =
|
|
@@ -162069,6 +163094,10 @@ export type TaskTemplate_FieldType =
|
|
|
162069
163094
|
|
|
162070
163095
|
export type TaskTemplate_Status = "ACTIVE" | "INACTIVE";
|
|
162071
163096
|
|
|
163097
|
+
export type TelemetryEnrichment_Scope = "ACCOUNT";
|
|
163098
|
+
|
|
163099
|
+
export type TelemetryEnrichment_Status = "IMPAIRED" | "RUNNING" | "STOPPED";
|
|
163100
|
+
|
|
162072
163101
|
export type TelemetryPipelines_TelemetryPipelineStatus =
|
|
162073
163102
|
| "ACTIVE"
|
|
162074
163103
|
| "CREATE_FAILED"
|
|
@@ -162216,6 +163245,7 @@ export type TransferUser_HomeDirectoryType = "LOGICAL" | "PATH";
|
|
|
162216
163245
|
export type TransferUser_MapType = "DIRECTORY" | "FILE";
|
|
162217
163246
|
|
|
162218
163247
|
export type TransitGatewayMeteringPolicyEntry_TransitGatewayAttachmentResourceType =
|
|
163248
|
+
| "client-vpn"
|
|
162219
163249
|
| "direct-connect-gateway"
|
|
162220
163250
|
| "network-function"
|
|
162221
163251
|
| "peering"
|