@intentius/chant-lexicon-aws 0.12.1 → 0.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/index.d.ts +110 -11
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +1367 -125
- package/dist/types/index.d.ts +1467 -157
- package/package.json +2 -2
- package/src/generated/index.d.ts +1467 -157
- package/src/generated/index.ts +111 -12
- package/src/generated/lexicon-aws.json +1367 -125
package/src/generated/index.d.ts
CHANGED
|
@@ -800,6 +800,27 @@ export declare class AlarmMuteRule {
|
|
|
800
800
|
readonly Status: "ACTIVE" | "EXPIRED" | "SCHEDULED";
|
|
801
801
|
}
|
|
802
802
|
|
|
803
|
+
export declare class Algorithm {
|
|
804
|
+
constructor(props: {
|
|
805
|
+
/** The name of the algorithm. */
|
|
806
|
+
AlgorithmName: string;
|
|
807
|
+
TrainingSpecification: Algorithm_TrainingSpecification;
|
|
808
|
+
/** The Amazon Resource Name (ARN) of the algorithm. */
|
|
809
|
+
AlgorithmArn?: string;
|
|
810
|
+
/** A description of the algorithm. */
|
|
811
|
+
AlgorithmDescription?: string;
|
|
812
|
+
/** Whether to certify the algorithm so that it can be listed in AWS Marketplace. */
|
|
813
|
+
CertifyForMarketplace?: boolean;
|
|
814
|
+
/** A timestamp specifying when the algorithm was created. */
|
|
815
|
+
CreationTime?: string;
|
|
816
|
+
InferenceSpecification?: Algorithm_InferenceSpecification;
|
|
817
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
818
|
+
Tags?: Algorithm_Tag[];
|
|
819
|
+
}, attributes?: CFResourceAttributes);
|
|
820
|
+
readonly AlgorithmArn: string;
|
|
821
|
+
readonly CreationTime: string;
|
|
822
|
+
}
|
|
823
|
+
|
|
803
824
|
export declare class AllowList {
|
|
804
825
|
constructor(props: {
|
|
805
826
|
/** AllowList criteria. */
|
|
@@ -1843,6 +1864,19 @@ export declare class AppInstanceBot {
|
|
|
1843
1864
|
readonly LastUpdatedTimestamp: number;
|
|
1844
1865
|
}
|
|
1845
1866
|
|
|
1867
|
+
export declare class AppInstanceUser {
|
|
1868
|
+
constructor(props: {
|
|
1869
|
+
AppInstanceArn: string;
|
|
1870
|
+
AppInstanceUserId: string;
|
|
1871
|
+
AppInstanceUserArn?: string;
|
|
1872
|
+
ExpirationSettings?: AppInstanceUser_ExpirationSettings;
|
|
1873
|
+
Metadata?: string;
|
|
1874
|
+
Name?: string;
|
|
1875
|
+
Tags?: AppInstanceUser_Tag[];
|
|
1876
|
+
}, attributes?: CFResourceAttributes);
|
|
1877
|
+
readonly AppInstanceUserArn: string;
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1846
1880
|
export declare class AppIntegrationsApplication {
|
|
1847
1881
|
constructor(props: {
|
|
1848
1882
|
/** Application source config */
|
|
@@ -2619,6 +2653,62 @@ export declare class AssessmentTemplate {
|
|
|
2619
2653
|
readonly Arn: string;
|
|
2620
2654
|
}
|
|
2621
2655
|
|
|
2656
|
+
export declare class AssetBundleExportJob {
|
|
2657
|
+
constructor(props: {
|
|
2658
|
+
/** The ID of the export job. */
|
|
2659
|
+
AssetBundleExportJobId: string;
|
|
2660
|
+
/** The export data format. */
|
|
2661
|
+
ExportFormat: "CLOUDFORMATION_JSON" | "QUICKSIGHT_JSON";
|
|
2662
|
+
/** An array of resource ARNs to export. */
|
|
2663
|
+
ResourceArns: string[];
|
|
2664
|
+
/** The Amazon Resource Name (ARN) for the export job. */
|
|
2665
|
+
Arn?: string;
|
|
2666
|
+
/** The ID of the Amazon Web Services account to export assets from. */
|
|
2667
|
+
AwsAccountId?: string;
|
|
2668
|
+
/** The time that the export job was created. */
|
|
2669
|
+
CreatedTime?: string;
|
|
2670
|
+
/** A Boolean that determines whether all dependencies of each resource ARN are recursively exported with the job. */
|
|
2671
|
+
IncludeAllDependencies?: boolean;
|
|
2672
|
+
/** A setting that indicates whether you want to include folder assets. */
|
|
2673
|
+
IncludeFolderMembers?: "NONE" | "ONE_LEVEL" | "RECURSE";
|
|
2674
|
+
/** A Boolean that determines if the exported asset carries over information about the folders that the asset is a member of. */
|
|
2675
|
+
IncludeFolderMemberships?: boolean;
|
|
2676
|
+
/** A Boolean that determines whether all permissions for each resource ARN are exported with the job. */
|
|
2677
|
+
IncludePermissions?: boolean;
|
|
2678
|
+
/** A Boolean that determines whether all tags for each resource ARN are exported with the job. */
|
|
2679
|
+
IncludeTags?: boolean;
|
|
2680
|
+
/** Indicates the status of a job through its queuing and execution. */
|
|
2681
|
+
JobStatus?: "FAILED" | "IN_PROGRESS" | "QUEUED_FOR_IMMEDIATE_EXECUTION" | "SUCCESSFUL";
|
|
2682
|
+
}, attributes?: CFResourceAttributes);
|
|
2683
|
+
readonly Arn: string;
|
|
2684
|
+
readonly CreatedTime: string;
|
|
2685
|
+
readonly JobStatus: "FAILED" | "IN_PROGRESS" | "QUEUED_FOR_IMMEDIATE_EXECUTION" | "SUCCESSFUL";
|
|
2686
|
+
}
|
|
2687
|
+
|
|
2688
|
+
export declare class AssetBundleImportJob {
|
|
2689
|
+
constructor(props: {
|
|
2690
|
+
/** The ID of the import job. */
|
|
2691
|
+
AssetBundleImportJobId: string;
|
|
2692
|
+
/** The Amazon Resource Name (ARN) for the import job. */
|
|
2693
|
+
Arn?: string;
|
|
2694
|
+
/** The source of the asset bundle zip file. */
|
|
2695
|
+
AssetBundleImportSource?: AssetBundleImportJob_AssetBundleImportSourceDescription;
|
|
2696
|
+
/** The ID of the Amazon Web Services account to import assets into. */
|
|
2697
|
+
AwsAccountId?: string;
|
|
2698
|
+
/** The time that the import job was created. */
|
|
2699
|
+
CreatedTime?: string;
|
|
2700
|
+
/** The failure action for the import job. */
|
|
2701
|
+
FailureAction?: "DO_NOTHING" | "ROLLBACK";
|
|
2702
|
+
/** Indicates the status of the import job. */
|
|
2703
|
+
JobStatus?: "FAILED" | "FAILED_ROLLBACK_COMPLETED" | "FAILED_ROLLBACK_ERROR" | "FAILED_ROLLBACK_IN_PROGRESS" | "IN_PROGRESS" | "QUEUED_FOR_IMMEDIATE_EXECUTION" | "SUCCESSFUL";
|
|
2704
|
+
/** An optional validation strategy override for all analyses and dashboards. */
|
|
2705
|
+
OverrideValidationStrategy?: AssetBundleImportJob_AssetBundleImportJobOverrideValidationStrategy;
|
|
2706
|
+
}, attributes?: CFResourceAttributes);
|
|
2707
|
+
readonly Arn: string;
|
|
2708
|
+
readonly CreatedTime: string;
|
|
2709
|
+
readonly JobStatus: "FAILED" | "FAILED_ROLLBACK_COMPLETED" | "FAILED_ROLLBACK_ERROR" | "FAILED_ROLLBACK_IN_PROGRESS" | "IN_PROGRESS" | "QUEUED_FOR_IMMEDIATE_EXECUTION" | "SUCCESSFUL";
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2622
2712
|
export declare class AssetModel {
|
|
2623
2713
|
constructor(props: {
|
|
2624
2714
|
/** A unique, friendly name for the asset model. */
|
|
@@ -3828,6 +3918,9 @@ Information on the current primary is available on the DataReplicationMetadata o
|
|
|
3828
3918
|
MaintenanceWindowStartTime?: Broker_MaintenanceWindow;
|
|
3829
3919
|
MqttEndpoints?: string[];
|
|
3830
3920
|
OpenWireEndpoints?: string[];
|
|
3921
|
+
/** The ARNs of the resource shares to be associated with the broker.
|
|
3922
|
+
*/
|
|
3923
|
+
ResourceShareArns?: string[];
|
|
3831
3924
|
SecurityGroups?: string[];
|
|
3832
3925
|
StompEndpoints?: string[];
|
|
3833
3926
|
StorageType?: any;
|
|
@@ -4061,27 +4154,44 @@ export declare class BudgetsAction {
|
|
|
4061
4154
|
readonly ActionId: string;
|
|
4062
4155
|
}
|
|
4063
4156
|
|
|
4064
|
-
export declare class
|
|
4157
|
+
export declare class BuildBatch {
|
|
4065
4158
|
constructor(props: {
|
|
4066
|
-
/** The Amazon Resource Name (ARN)
|
|
4067
|
-
|
|
4068
|
-
/**
|
|
4069
|
-
|
|
4070
|
-
/**
|
|
4071
|
-
|
|
4072
|
-
/**
|
|
4073
|
-
|
|
4074
|
-
/**
|
|
4075
|
-
|
|
4076
|
-
/**
|
|
4077
|
-
|
|
4078
|
-
/**
|
|
4079
|
-
|
|
4080
|
-
/**
|
|
4081
|
-
|
|
4159
|
+
/** The Amazon Resource Name (ARN) of the batch build. */
|
|
4160
|
+
Arn?: string;
|
|
4161
|
+
/** The number of the batch build. */
|
|
4162
|
+
BuildBatchNumber?: number;
|
|
4163
|
+
/** The current status of the batch build. */
|
|
4164
|
+
BuildBatchStatus?: "FAILED" | "FAULT" | "IN_PROGRESS" | "STOPPED" | "SUCCEEDED" | "TIMED_OUT";
|
|
4165
|
+
/** How long, in minutes, for CodeBuild to wait before timing out the batch build. */
|
|
4166
|
+
BuildTimeoutInMinutes?: number;
|
|
4167
|
+
/** Whether the batch build is complete. */
|
|
4168
|
+
Complete?: boolean;
|
|
4169
|
+
/** The current build phase of the batch build. */
|
|
4170
|
+
CurrentPhase?: string;
|
|
4171
|
+
/** The KMS key used to encrypt the batch build output artifacts. */
|
|
4172
|
+
EncryptionKey?: string;
|
|
4173
|
+
/** The unique ID for the batch build. */
|
|
4174
|
+
Id?: string;
|
|
4175
|
+
/** The entity that started the batch build. */
|
|
4176
|
+
Initiator?: string;
|
|
4177
|
+
/** The name of the CodeBuild build project. */
|
|
4178
|
+
ProjectName?: string;
|
|
4179
|
+
/** The number of minutes a batch build is allowed to be queued before it times out. */
|
|
4180
|
+
QueuedTimeoutInMinutes?: number;
|
|
4181
|
+
/** When the batch build started, in ISO 8601 format. */
|
|
4182
|
+
StartTime?: string;
|
|
4082
4183
|
}, attributes?: CFResourceAttributes);
|
|
4083
|
-
readonly
|
|
4084
|
-
readonly
|
|
4184
|
+
readonly Arn: string;
|
|
4185
|
+
readonly BuildBatchNumber: number;
|
|
4186
|
+
readonly BuildBatchStatus: "FAILED" | "FAULT" | "IN_PROGRESS" | "STOPPED" | "SUCCEEDED" | "TIMED_OUT";
|
|
4187
|
+
readonly BuildTimeoutInMinutes: number;
|
|
4188
|
+
readonly Complete: boolean;
|
|
4189
|
+
readonly CurrentPhase: string;
|
|
4190
|
+
readonly EncryptionKey: string;
|
|
4191
|
+
readonly Id: string;
|
|
4192
|
+
readonly Initiator: string;
|
|
4193
|
+
readonly QueuedTimeoutInMinutes: number;
|
|
4194
|
+
readonly StartTime: string;
|
|
4085
4195
|
}
|
|
4086
4196
|
|
|
4087
4197
|
export declare class CACertificate {
|
|
@@ -5448,6 +5558,52 @@ export declare class CodeArtifactRepository {
|
|
|
5448
5558
|
readonly Name: string;
|
|
5449
5559
|
}
|
|
5450
5560
|
|
|
5561
|
+
export declare class CodeBuildBuild {
|
|
5562
|
+
constructor(props: {
|
|
5563
|
+
/** The Amazon Resource Name (ARN) of the build. */
|
|
5564
|
+
Arn?: string;
|
|
5565
|
+
/** Whether the build is complete. */
|
|
5566
|
+
BuildComplete?: boolean;
|
|
5567
|
+
/** The number of the build. */
|
|
5568
|
+
BuildNumber?: number;
|
|
5569
|
+
/** The current status of the build. */
|
|
5570
|
+
BuildStatus?: "FAILED" | "FAULT" | "IN_PROGRESS" | "STOPPED" | "SUCCEEDED" | "TIMED_OUT";
|
|
5571
|
+
/** The current build phase. */
|
|
5572
|
+
CurrentPhase?: string;
|
|
5573
|
+
/** The KMS key used to encrypt the build output artifacts. */
|
|
5574
|
+
EncryptionKey?: string;
|
|
5575
|
+
/** When the build process ended, in ISO 8601 format. */
|
|
5576
|
+
EndTime?: string;
|
|
5577
|
+
/** The unique ID for the build (format: projectName:buildId). */
|
|
5578
|
+
Id?: string;
|
|
5579
|
+
/** The entity that started the build. */
|
|
5580
|
+
Initiator?: string;
|
|
5581
|
+
/** The name of the CodeBuild build project. */
|
|
5582
|
+
ProjectName?: string;
|
|
5583
|
+
/** The number of minutes a build is allowed to be queued before it times out. */
|
|
5584
|
+
QueuedTimeoutInMinutes?: number;
|
|
5585
|
+
/** The name of a service role used for this build. */
|
|
5586
|
+
ServiceRole?: string;
|
|
5587
|
+
/** When the build process started, in ISO 8601 format. */
|
|
5588
|
+
StartTime?: string;
|
|
5589
|
+
/** How long, in minutes, from 5 to 2160 (36 hours), for CodeBuild to wait before timing out the build. */
|
|
5590
|
+
TimeoutInMinutes?: number;
|
|
5591
|
+
}, attributes?: CFResourceAttributes);
|
|
5592
|
+
readonly Arn: string;
|
|
5593
|
+
readonly BuildComplete: boolean;
|
|
5594
|
+
readonly BuildNumber: number;
|
|
5595
|
+
readonly BuildStatus: "FAILED" | "FAULT" | "IN_PROGRESS" | "STOPPED" | "SUCCEEDED" | "TIMED_OUT";
|
|
5596
|
+
readonly CurrentPhase: string;
|
|
5597
|
+
readonly EncryptionKey: string;
|
|
5598
|
+
readonly EndTime: string;
|
|
5599
|
+
readonly Id: string;
|
|
5600
|
+
readonly Initiator: string;
|
|
5601
|
+
readonly QueuedTimeoutInMinutes: number;
|
|
5602
|
+
readonly ServiceRole: string;
|
|
5603
|
+
readonly StartTime: string;
|
|
5604
|
+
readonly TimeoutInMinutes: number;
|
|
5605
|
+
}
|
|
5606
|
+
|
|
5451
5607
|
export declare class CodeBuildFleet {
|
|
5452
5608
|
constructor(props: {
|
|
5453
5609
|
Arn?: string;
|
|
@@ -5815,6 +5971,35 @@ export declare class Command {
|
|
|
5815
5971
|
readonly CommandArn: string;
|
|
5816
5972
|
}
|
|
5817
5973
|
|
|
5974
|
+
export declare class CommonControl {
|
|
5975
|
+
constructor(props: {
|
|
5976
|
+
/** The Amazon Resource Name (ARN) that identifies the common control. */
|
|
5977
|
+
Arn?: string;
|
|
5978
|
+
/** The unique identifier of the common control. */
|
|
5979
|
+
CommonControlId?: string;
|
|
5980
|
+
/** The time when the common control was created. */
|
|
5981
|
+
CreateTime?: string;
|
|
5982
|
+
/** The description of the common control. */
|
|
5983
|
+
Description?: string;
|
|
5984
|
+
/** The domain that the common control belongs to. */
|
|
5985
|
+
Domain?: Record<string, unknown>;
|
|
5986
|
+
/** The time when the common control was most recently updated. */
|
|
5987
|
+
LastUpdateTime?: string;
|
|
5988
|
+
/** The name of the common control. */
|
|
5989
|
+
Name?: string;
|
|
5990
|
+
/** The objective that the common control belongs to. */
|
|
5991
|
+
Objective?: Record<string, unknown>;
|
|
5992
|
+
}, attributes?: CFResourceAttributes);
|
|
5993
|
+
readonly Arn: string;
|
|
5994
|
+
readonly CommonControlId: string;
|
|
5995
|
+
readonly CreateTime: string;
|
|
5996
|
+
readonly Description: string;
|
|
5997
|
+
readonly Domain: Record<string, unknown>;
|
|
5998
|
+
readonly LastUpdateTime: string;
|
|
5999
|
+
readonly Name: string;
|
|
6000
|
+
readonly Objective: Record<string, unknown>;
|
|
6001
|
+
}
|
|
6002
|
+
|
|
5818
6003
|
export declare class ComponentType {
|
|
5819
6004
|
constructor(props: {
|
|
5820
6005
|
/** The ID of the component type. */
|
|
@@ -7211,6 +7396,42 @@ export declare class ContinuousDeploymentPolicy {
|
|
|
7211
7396
|
readonly LastModifiedTime: string;
|
|
7212
7397
|
}
|
|
7213
7398
|
|
|
7399
|
+
export declare class Control {
|
|
7400
|
+
constructor(props: {
|
|
7401
|
+
/** A list of alternative identifiers for the control. */
|
|
7402
|
+
Aliases?: string[];
|
|
7403
|
+
/** The Amazon Resource Name (ARN) of the control. */
|
|
7404
|
+
Arn?: string;
|
|
7405
|
+
/** A term that identifies the control's functional behavior. */
|
|
7406
|
+
Behavior?: "DETECTIVE" | "PREVENTIVE" | "PROACTIVE";
|
|
7407
|
+
/** The unique opaque identifier of the control. */
|
|
7408
|
+
ControlId?: string;
|
|
7409
|
+
/** A timestamp that notes the time when the control was released. */
|
|
7410
|
+
CreateTime?: string;
|
|
7411
|
+
/** A description of what the control does. */
|
|
7412
|
+
Description?: string;
|
|
7413
|
+
/** A list of AWS resource types that are governed by this control. */
|
|
7414
|
+
GovernedResources?: string[];
|
|
7415
|
+
Implementation?: Control_ImplementationDetails;
|
|
7416
|
+
/** The display name of the control. */
|
|
7417
|
+
Name?: string;
|
|
7418
|
+
RegionConfiguration?: Control_RegionConfiguration;
|
|
7419
|
+
/** The severity of the control. */
|
|
7420
|
+
Severity?: "CRITICAL" | "HIGH" | "LOW" | "MEDIUM";
|
|
7421
|
+
}, attributes?: CFResourceAttributes);
|
|
7422
|
+
readonly Aliases: string[];
|
|
7423
|
+
readonly Arn: string;
|
|
7424
|
+
readonly Behavior: "DETECTIVE" | "PREVENTIVE" | "PROACTIVE";
|
|
7425
|
+
readonly ControlId: string;
|
|
7426
|
+
readonly CreateTime: string;
|
|
7427
|
+
readonly Description: string;
|
|
7428
|
+
readonly GovernedResources: string[];
|
|
7429
|
+
readonly Implementation: Control_ImplementationDetails;
|
|
7430
|
+
readonly Name: string;
|
|
7431
|
+
readonly RegionConfiguration: Control_RegionConfiguration;
|
|
7432
|
+
readonly Severity: "CRITICAL" | "HIGH" | "LOW" | "MEDIUM";
|
|
7433
|
+
}
|
|
7434
|
+
|
|
7214
7435
|
export declare class ControlPanel {
|
|
7215
7436
|
constructor(props: {
|
|
7216
7437
|
/** The name of the control panel. You can use any non-white space character in the name. */
|
|
@@ -8067,6 +8288,30 @@ export declare class DataCellsFilter {
|
|
|
8067
8288
|
}, attributes?: CFResourceAttributes);
|
|
8068
8289
|
}
|
|
8069
8290
|
|
|
8291
|
+
export declare class DataDeletionJob {
|
|
8292
|
+
constructor(props: {
|
|
8293
|
+
/** The creation date and time of the data deletion job. */
|
|
8294
|
+
CreationDateTime?: string;
|
|
8295
|
+
/** The Amazon Resource Name (ARN) of the data deletion job. */
|
|
8296
|
+
DataDeletionJobArn?: string;
|
|
8297
|
+
/** The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from. */
|
|
8298
|
+
DatasetGroupArn?: string;
|
|
8299
|
+
DataSource?: DataDeletionJob_DataSource;
|
|
8300
|
+
/** The name for the data deletion job. */
|
|
8301
|
+
JobName?: string;
|
|
8302
|
+
/** The date and time the data deletion job was last updated. */
|
|
8303
|
+
LastUpdatedDateTime?: string;
|
|
8304
|
+
/** The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source. */
|
|
8305
|
+
RoleArn?: string;
|
|
8306
|
+
/** The status of the data deletion job. */
|
|
8307
|
+
Status?: string;
|
|
8308
|
+
}, attributes?: CFResourceAttributes);
|
|
8309
|
+
readonly CreationDateTime: string;
|
|
8310
|
+
readonly DataDeletionJobArn: string;
|
|
8311
|
+
readonly LastUpdatedDateTime: string;
|
|
8312
|
+
readonly Status: string;
|
|
8313
|
+
}
|
|
8314
|
+
|
|
8070
8315
|
export declare class DataflowEndpointGroup {
|
|
8071
8316
|
constructor(props: {
|
|
8072
8317
|
EndpointDetails: DataflowEndpointGroup_EndpointDetails[];
|
|
@@ -11421,6 +11666,30 @@ export declare class DSQLCluster {
|
|
|
11421
11666
|
readonly VpcEndpointServiceName: string;
|
|
11422
11667
|
}
|
|
11423
11668
|
|
|
11669
|
+
export declare class DynamoDBStream {
|
|
11670
|
+
constructor(props: {
|
|
11671
|
+
/** The date and time when the request to create this stream was issued. */
|
|
11672
|
+
CreationRequestDateTime?: string;
|
|
11673
|
+
/** The key attribute(s) of the stream's DynamoDB table. */
|
|
11674
|
+
KeySchema?: Record<string, unknown>[];
|
|
11675
|
+
/** The Amazon Resource Name (ARN) for the stream. */
|
|
11676
|
+
StreamArn?: string;
|
|
11677
|
+
/** A timestamp, in ISO 8601 format, for this stream. */
|
|
11678
|
+
StreamLabel?: string;
|
|
11679
|
+
/** Indicates the current status of the stream. */
|
|
11680
|
+
StreamStatus?: "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
|
|
11681
|
+
/** Indicates the format of the records within this stream. */
|
|
11682
|
+
StreamViewType?: "KEYS_ONLY" | "NEW_AND_OLD_IMAGES" | "NEW_IMAGE" | "OLD_IMAGE";
|
|
11683
|
+
/** The DynamoDB table with which the stream is associated. */
|
|
11684
|
+
TableName?: string;
|
|
11685
|
+
}, attributes?: CFResourceAttributes);
|
|
11686
|
+
readonly CreationRequestDateTime: string;
|
|
11687
|
+
readonly KeySchema: Record<string, unknown>[];
|
|
11688
|
+
readonly StreamArn: string;
|
|
11689
|
+
readonly StreamLabel: string;
|
|
11690
|
+
readonly StreamStatus: "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
|
|
11691
|
+
}
|
|
11692
|
+
|
|
11424
11693
|
export declare class EC2CapacityReservation {
|
|
11425
11694
|
constructor(props: {
|
|
11426
11695
|
InstanceCount: number;
|
|
@@ -14014,6 +14283,24 @@ export declare class Firewall {
|
|
|
14014
14283
|
readonly TransitGatewayAttachmentId: string;
|
|
14015
14284
|
}
|
|
14016
14285
|
|
|
14286
|
+
export declare class FirewallConfig {
|
|
14287
|
+
constructor(props: {
|
|
14288
|
+
/** The ARN of the firewall configuration. */
|
|
14289
|
+
Arn?: string;
|
|
14290
|
+
/** Determines how DNS Firewall operates during failures. By default, fail open is disabled, which means the failure mode is closed. If you enable this option, the failure mode is open. This behavior is only enforced for VPCs that have at least one DNS Firewall rule group association. */
|
|
14291
|
+
FirewallFailOpen?: "DISABLED" | "ENABLED" | "USE_LOCAL_RESOURCE_SETTING";
|
|
14292
|
+
/** The ID of the firewall configuration. */
|
|
14293
|
+
Id?: string;
|
|
14294
|
+
/** The Amazon Web Services account ID of the owner of the VPC that this firewall configuration applies to. */
|
|
14295
|
+
OwnerId?: string;
|
|
14296
|
+
/** The ID of the VPC that this firewall configuration applies to. */
|
|
14297
|
+
ResourceId?: string;
|
|
14298
|
+
}, attributes?: CFResourceAttributes);
|
|
14299
|
+
readonly Arn: string;
|
|
14300
|
+
readonly Id: string;
|
|
14301
|
+
readonly OwnerId: string;
|
|
14302
|
+
}
|
|
14303
|
+
|
|
14017
14304
|
export declare class FirewallPolicy {
|
|
14018
14305
|
constructor(props: {
|
|
14019
14306
|
FirewallPolicy: FirewallPolicy_FirewallPolicy;
|
|
@@ -14939,6 +15226,29 @@ export declare class GameLiftAlias {
|
|
|
14939
15226
|
readonly AliasId: string;
|
|
14940
15227
|
}
|
|
14941
15228
|
|
|
15229
|
+
export declare class GameLiftBuild {
|
|
15230
|
+
constructor(props: {
|
|
15231
|
+
/** The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift build resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift build ARN, the resource ID matches the BuildId value. */
|
|
15232
|
+
BuildArn?: string;
|
|
15233
|
+
/** A unique identifier for a build to be deployed on the new fleet. If you are deploying the fleet with a custom game build, you must specify this property. The build must have been successfully uploaded to Amazon GameLift and be in a READY status. This fleet setting cannot be changed once the fleet is created. */
|
|
15234
|
+
BuildId?: string;
|
|
15235
|
+
/** A descriptive label that is associated with a build. Build names do not need to be unique. */
|
|
15236
|
+
Name?: string;
|
|
15237
|
+
/** The operating system that the game server binaries are built to run on. This value determines the type of fleet resources that you can use for this build. If your game build contains multiple executables, they all must run on the same operating system. If an operating system is not specified when creating a build, Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be changed later. */
|
|
15238
|
+
OperatingSystem?: "AMAZON_LINUX" | "AMAZON_LINUX_2" | "AMAZON_LINUX_2023" | "WINDOWS_2012" | "WINDOWS_2016" | "WINDOWS_2022";
|
|
15239
|
+
/** A server SDK version you used when integrating your game server build with Amazon GameLift. By default Amazon GameLift sets this value to 4.0.2. */
|
|
15240
|
+
ServerSdkVersion?: string;
|
|
15241
|
+
/** Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift to access your Amazon S3 bucket. The S3 bucket and your new build must be in the same Region. */
|
|
15242
|
+
StorageLocation?: GameLiftBuild_StorageLocation;
|
|
15243
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
15244
|
+
Tags?: GameLiftBuild_Tag[];
|
|
15245
|
+
/** Version information that is associated with this build. Version strings do not need to be unique. */
|
|
15246
|
+
Version?: string;
|
|
15247
|
+
}, attributes?: CFResourceAttributes);
|
|
15248
|
+
readonly BuildArn: string;
|
|
15249
|
+
readonly BuildId: string;
|
|
15250
|
+
}
|
|
15251
|
+
|
|
14942
15252
|
export declare class GameLiftFleet {
|
|
14943
15253
|
constructor(props: {
|
|
14944
15254
|
/** A descriptive label that is associated with a fleet. Fleet names do not need to be unique. */
|
|
@@ -15911,6 +16221,8 @@ export declare class Harness {
|
|
|
15911
16221
|
Truncation?: Harness_HarnessTruncationConfiguration;
|
|
15912
16222
|
/** The timestamp when the harness was last updated. */
|
|
15913
16223
|
UpdatedAt?: string;
|
|
16224
|
+
/** The version of the harness. Incremented on every successful update. */
|
|
16225
|
+
Version?: string;
|
|
15914
16226
|
}, attributes?: CFResourceAttributes);
|
|
15915
16227
|
readonly Arn: string;
|
|
15916
16228
|
readonly CreatedAt: string;
|
|
@@ -15918,8 +16230,10 @@ export declare class Harness {
|
|
|
15918
16230
|
readonly Environment_AgentCoreRuntimeEnvironment_AgentRuntimeId: string;
|
|
15919
16231
|
readonly Environment_AgentCoreRuntimeEnvironment_AgentRuntimeName: string;
|
|
15920
16232
|
readonly HarnessId: string;
|
|
16233
|
+
readonly Memory_ManagedMemoryConfiguration_Arn: string;
|
|
15921
16234
|
readonly Status: Harness_HarnessStatus;
|
|
15922
16235
|
readonly UpdatedAt: string;
|
|
16236
|
+
readonly Version: string;
|
|
15923
16237
|
}
|
|
15924
16238
|
|
|
15925
16239
|
export declare class HealthCheck {
|
|
@@ -16205,24 +16519,6 @@ export declare class HttpNamespace {
|
|
|
16205
16519
|
readonly Id: string;
|
|
16206
16520
|
}
|
|
16207
16521
|
|
|
16208
|
-
export declare class Hub {
|
|
16209
|
-
constructor(props: {
|
|
16210
|
-
/** An ARN is automatically created for the customer. */
|
|
16211
|
-
ARN?: string;
|
|
16212
|
-
/** Whether to automatically enable new controls when they are added to standards that are enabled */
|
|
16213
|
-
AutoEnableControls?: boolean;
|
|
16214
|
-
/** This field, used when enabling Security Hub, specifies whether the calling account has consolidated control findings turned on. If the value for this field is set to SECURITY_CONTROL, Security Hub generates a single finding for a control check even when the check applies to multiple enabled standards. If the value for this field is set to STANDARD_CONTROL, Security Hub generates separate findings for a control check when the check applies to multiple enabled standards. */
|
|
16215
|
-
ControlFindingGenerator?: string;
|
|
16216
|
-
/** Whether to enable the security standards that Security Hub has designated as automatically enabled. */
|
|
16217
|
-
EnableDefaultStandards?: boolean;
|
|
16218
|
-
/** The date and time when Security Hub was enabled in the account. */
|
|
16219
|
-
SubscribedAt?: string;
|
|
16220
|
-
Tags?: Record<string, unknown>;
|
|
16221
|
-
}, attributes?: CFResourceAttributes);
|
|
16222
|
-
readonly ARN: string;
|
|
16223
|
-
readonly SubscribedAt: string;
|
|
16224
|
-
}
|
|
16225
|
-
|
|
16226
16522
|
export declare class HubV2 {
|
|
16227
16523
|
constructor(props: {
|
|
16228
16524
|
/** The Amazon Resource Name of the Security Hub V2 resource. */
|
|
@@ -17823,6 +18119,22 @@ export declare class IoTFleetWiseFleet {
|
|
|
17823
18119
|
readonly LastModificationTime: string;
|
|
17824
18120
|
}
|
|
17825
18121
|
|
|
18122
|
+
export declare class IoTIndex {
|
|
18123
|
+
constructor(props: {
|
|
18124
|
+
/** The Amazon Resource Name (ARN) of the index. */
|
|
18125
|
+
Arn?: string;
|
|
18126
|
+
/** The index name. */
|
|
18127
|
+
IndexName?: string;
|
|
18128
|
+
/** The index status. */
|
|
18129
|
+
IndexStatus?: "ACTIVE" | "BUILDING" | "REBUILDING";
|
|
18130
|
+
/** Contains a value that specifies the type of indexing performed. */
|
|
18131
|
+
Schema?: string;
|
|
18132
|
+
}, attributes?: CFResourceAttributes);
|
|
18133
|
+
readonly Arn: string;
|
|
18134
|
+
readonly IndexStatus: "ACTIVE" | "BUILDING" | "REBUILDING";
|
|
18135
|
+
readonly Schema: string;
|
|
18136
|
+
}
|
|
18137
|
+
|
|
17826
18138
|
export declare class IoTJobTemplate {
|
|
17827
18139
|
constructor(props: {
|
|
17828
18140
|
/** A description of the Job Template. */
|
|
@@ -21052,6 +21364,18 @@ export declare class ManagedBlockchainMember {
|
|
|
21052
21364
|
readonly MemberId: string;
|
|
21053
21365
|
}
|
|
21054
21366
|
|
|
21367
|
+
export declare class ManagedBlockchainNode {
|
|
21368
|
+
constructor(props: {
|
|
21369
|
+
NetworkId: string;
|
|
21370
|
+
NodeConfiguration: ManagedBlockchainNode_NodeConfiguration;
|
|
21371
|
+
Arn?: string;
|
|
21372
|
+
MemberId?: string;
|
|
21373
|
+
NodeId?: string;
|
|
21374
|
+
}, attributes?: CFResourceAttributes);
|
|
21375
|
+
readonly Arn: string;
|
|
21376
|
+
readonly NodeId: string;
|
|
21377
|
+
}
|
|
21378
|
+
|
|
21055
21379
|
export declare class ManagedLoginBranding {
|
|
21056
21380
|
constructor(props: {
|
|
21057
21381
|
UserPoolId: string;
|
|
@@ -21422,6 +21746,38 @@ export declare class MediaLiveInput {
|
|
|
21422
21746
|
readonly Id: string;
|
|
21423
21747
|
}
|
|
21424
21748
|
|
|
21749
|
+
export declare class MediaLiveNode {
|
|
21750
|
+
constructor(props: {
|
|
21751
|
+
/** The ID of the Cluster that the Node belongs to. */
|
|
21752
|
+
ClusterId: string;
|
|
21753
|
+
/** The ARN of the Node. It is automatically assigned when the Node is created. */
|
|
21754
|
+
Arn?: string;
|
|
21755
|
+
/** An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node. */
|
|
21756
|
+
ChannelPlacementGroups?: string[];
|
|
21757
|
+
ConnectionState?: MediaLiveNode_NodeConnectionState;
|
|
21758
|
+
/** The unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN. */
|
|
21759
|
+
Id?: string;
|
|
21760
|
+
/** The ARN of the EC2 instance hosting the Node. */
|
|
21761
|
+
InstanceArn?: string;
|
|
21762
|
+
/** The user-specified name of the Node. */
|
|
21763
|
+
Name?: string;
|
|
21764
|
+
/** An array of interface mappings for the Node. */
|
|
21765
|
+
NodeInterfaceMappings?: MediaLiveNode_NodeInterfaceMapping[];
|
|
21766
|
+
Role?: MediaLiveNode_NodeRole;
|
|
21767
|
+
/** An array of SDI source mappings. */
|
|
21768
|
+
SdiSourceMappings?: MediaLiveNode_SdiSourceMapping[];
|
|
21769
|
+
State?: MediaLiveNode_NodeState;
|
|
21770
|
+
/** A collection of key-value pairs. */
|
|
21771
|
+
Tags?: MediaLiveNode_Tag[];
|
|
21772
|
+
}, attributes?: CFResourceAttributes);
|
|
21773
|
+
readonly Arn: string;
|
|
21774
|
+
readonly ChannelPlacementGroups: string[];
|
|
21775
|
+
readonly ConnectionState: MediaLiveNode_NodeConnectionState;
|
|
21776
|
+
readonly Id: string;
|
|
21777
|
+
readonly InstanceArn: string;
|
|
21778
|
+
readonly State: MediaLiveNode_NodeState;
|
|
21779
|
+
}
|
|
21780
|
+
|
|
21425
21781
|
export declare class MediaPackageAsset {
|
|
21426
21782
|
constructor(props: {
|
|
21427
21783
|
/** The unique identifier for the Asset. */
|
|
@@ -22056,6 +22412,52 @@ export declare class MicrosoftTeamsChannelConfiguration {
|
|
|
22056
22412
|
readonly Arn: string;
|
|
22057
22413
|
}
|
|
22058
22414
|
|
|
22415
|
+
export declare class MicrovmImage {
|
|
22416
|
+
constructor(props: {
|
|
22417
|
+
AdditionalOsCapabilities: "ALL"[];
|
|
22418
|
+
/** ARN of the base MicroVM image. */
|
|
22419
|
+
BaseImageArn: string;
|
|
22420
|
+
/** Specific version of the base MicroVM image to use. */
|
|
22421
|
+
BaseImageVersion: string;
|
|
22422
|
+
/** ARN of the IAM build role. */
|
|
22423
|
+
BuildRoleArn: string;
|
|
22424
|
+
/** Code artifact for the active MicroVM image. */
|
|
22425
|
+
CodeArtifact: MicrovmImage_CodeArtifact;
|
|
22426
|
+
CpuConfigurations: MicrovmImage_CpuConfiguration[];
|
|
22427
|
+
/** Human-readable description of the MicroVM image and its purpose. */
|
|
22428
|
+
Description: string;
|
|
22429
|
+
EgressNetworkConnectors: string[];
|
|
22430
|
+
/** Environment variables to set in the container during the snapshot build. */
|
|
22431
|
+
EnvironmentVariables: MicrovmImage_EnvironmentVariable[];
|
|
22432
|
+
Hooks: MicrovmImage_Hooks;
|
|
22433
|
+
/** Configuration for MicroVM image logging. */
|
|
22434
|
+
Logging: MicrovmImage_Logging;
|
|
22435
|
+
/** Unique name for the MicroVM image within the account. */
|
|
22436
|
+
Name: string;
|
|
22437
|
+
Resources: MicrovmImage_Resources[];
|
|
22438
|
+
/** Timestamp when the MicroVM image was created. */
|
|
22439
|
+
CreatedAt?: string;
|
|
22440
|
+
/** ARN of the MicroVM image. */
|
|
22441
|
+
ImageArn?: string;
|
|
22442
|
+
/** The latest active version of the MicroVM image. */
|
|
22443
|
+
LatestActiveImageVersion?: string;
|
|
22444
|
+
/** The latest failed version of the MicroVM image. */
|
|
22445
|
+
LatestFailedImageVersion?: string;
|
|
22446
|
+
/** Current state of the MicroVM image. */
|
|
22447
|
+
State?: MicrovmImage_MicrovmImageState;
|
|
22448
|
+
/** Key-value pairs to associate with the MicroVM image for organization and management. */
|
|
22449
|
+
Tags?: MicrovmImage_Tag[];
|
|
22450
|
+
/** Timestamp when the MicroVM image was updated. */
|
|
22451
|
+
UpdatedAt?: string;
|
|
22452
|
+
}, attributes?: CFResourceAttributes);
|
|
22453
|
+
readonly CreatedAt: string;
|
|
22454
|
+
readonly ImageArn: string;
|
|
22455
|
+
readonly LatestActiveImageVersion: string;
|
|
22456
|
+
readonly LatestFailedImageVersion: string;
|
|
22457
|
+
readonly State: MicrovmImage_MicrovmImageState;
|
|
22458
|
+
readonly UpdatedAt: string;
|
|
22459
|
+
}
|
|
22460
|
+
|
|
22059
22461
|
export declare class MigrationProject {
|
|
22060
22462
|
constructor(props: {
|
|
22061
22463
|
/** The optional description of the migration project. */
|
|
@@ -22272,6 +22674,34 @@ export declare class ModelCard {
|
|
|
22272
22674
|
readonly ModelCardVersion: number;
|
|
22273
22675
|
}
|
|
22274
22676
|
|
|
22677
|
+
export declare class ModelCardExportJob {
|
|
22678
|
+
constructor(props: {
|
|
22679
|
+
/** The name of the model card export job. */
|
|
22680
|
+
ModelCardExportJobName: string;
|
|
22681
|
+
/** The name or Amazon Resource Name (ARN) of the model card to export. */
|
|
22682
|
+
ModelCardName: string;
|
|
22683
|
+
/** The model card output configuration that specifies the Amazon S3 path for exporting. */
|
|
22684
|
+
OutputConfig: ModelCardExportJob_ModelCardExportOutputConfig;
|
|
22685
|
+
/** The date and time that the model card export job was created. */
|
|
22686
|
+
CreatedAt?: string;
|
|
22687
|
+
/** The exported model card artifacts. */
|
|
22688
|
+
ExportArtifacts?: ModelCardExportJob_ModelCardExportArtifacts;
|
|
22689
|
+
/** The date and time that the model card export job was last modified. */
|
|
22690
|
+
LastModifiedAt?: string;
|
|
22691
|
+
/** The Amazon Resource Name (ARN) of the model card export job. */
|
|
22692
|
+
ModelCardExportJobArn?: string;
|
|
22693
|
+
/** The version of the model card to export. If a version is not provided, then the latest version of the model card is exported. */
|
|
22694
|
+
ModelCardVersion?: number;
|
|
22695
|
+
/** The completion status of the model card export job. */
|
|
22696
|
+
Status?: "Completed" | "Failed" | "InProgress";
|
|
22697
|
+
}, attributes?: CFResourceAttributes);
|
|
22698
|
+
readonly CreatedAt: string;
|
|
22699
|
+
readonly ExportArtifacts: ModelCardExportJob_ModelCardExportArtifacts;
|
|
22700
|
+
readonly LastModifiedAt: string;
|
|
22701
|
+
readonly ModelCardExportJobArn: string;
|
|
22702
|
+
readonly Status: "Completed" | "Failed" | "InProgress";
|
|
22703
|
+
}
|
|
22704
|
+
|
|
22275
22705
|
export declare class ModelExplainabilityJobDefinition {
|
|
22276
22706
|
constructor(props: {
|
|
22277
22707
|
JobResources: ModelExplainabilityJobDefinition_MonitoringResources;
|
|
@@ -23219,6 +23649,20 @@ export declare class NetworkAnalyzerConfiguration {
|
|
|
23219
23649
|
readonly Arn: string;
|
|
23220
23650
|
}
|
|
23221
23651
|
|
|
23652
|
+
export declare class NetworkConnector {
|
|
23653
|
+
constructor(props: {
|
|
23654
|
+
Configuration: NetworkConnector_Config;
|
|
23655
|
+
Arn?: string;
|
|
23656
|
+
Name?: string;
|
|
23657
|
+
OperatorRole?: string;
|
|
23658
|
+
State?: NetworkConnector_State;
|
|
23659
|
+
/** A list of tags to apply to the network connector. Use tags to categorize network connectors for cost allocation, access control, or operational management. */
|
|
23660
|
+
Tags?: NetworkConnector_Tag[];
|
|
23661
|
+
}, attributes?: CFResourceAttributes);
|
|
23662
|
+
readonly Arn: string;
|
|
23663
|
+
readonly State: NetworkConnector_State;
|
|
23664
|
+
}
|
|
23665
|
+
|
|
23222
23666
|
export declare class NetworkFirewallLoggingConfiguration {
|
|
23223
23667
|
constructor(props: {
|
|
23224
23668
|
FirewallArn: string;
|
|
@@ -23493,6 +23937,31 @@ export declare class NetworkManagerLink {
|
|
|
23493
23937
|
readonly State: string;
|
|
23494
23938
|
}
|
|
23495
23939
|
|
|
23940
|
+
export declare class NetworkManagerSite {
|
|
23941
|
+
constructor(props: {
|
|
23942
|
+
/** The ID of the global network. */
|
|
23943
|
+
GlobalNetworkId: string;
|
|
23944
|
+
/** The date and time that the device was created. */
|
|
23945
|
+
CreatedAt?: string;
|
|
23946
|
+
/** The description of the site. */
|
|
23947
|
+
Description?: string;
|
|
23948
|
+
/** The location of the site. */
|
|
23949
|
+
Location?: NetworkManagerSite_Location;
|
|
23950
|
+
/** The Amazon Resource Name (ARN) of the site. */
|
|
23951
|
+
SiteArn?: string;
|
|
23952
|
+
/** The ID of the site. */
|
|
23953
|
+
SiteId?: string;
|
|
23954
|
+
/** The state of the site. */
|
|
23955
|
+
State?: string;
|
|
23956
|
+
/** The tags for the site. */
|
|
23957
|
+
Tags?: NetworkManagerSite_Tag[];
|
|
23958
|
+
}, attributes?: CFResourceAttributes);
|
|
23959
|
+
readonly CreatedAt: string;
|
|
23960
|
+
readonly SiteArn: string;
|
|
23961
|
+
readonly SiteId: string;
|
|
23962
|
+
readonly State: string;
|
|
23963
|
+
}
|
|
23964
|
+
|
|
23496
23965
|
export declare class NetworkPerformanceMetricSubscription {
|
|
23497
23966
|
constructor(props: {
|
|
23498
23967
|
/** The target Region or Availability Zone for the metric to subscribe to. */
|
|
@@ -23519,18 +23988,6 @@ export declare class NetworkSettings {
|
|
|
23519
23988
|
readonly NetworkSettingsArn: string;
|
|
23520
23989
|
}
|
|
23521
23990
|
|
|
23522
|
-
export declare class Node {
|
|
23523
|
-
constructor(props: {
|
|
23524
|
-
NetworkId: string;
|
|
23525
|
-
NodeConfiguration: Node_NodeConfiguration;
|
|
23526
|
-
Arn?: string;
|
|
23527
|
-
MemberId?: string;
|
|
23528
|
-
NodeId?: string;
|
|
23529
|
-
}, attributes?: CFResourceAttributes);
|
|
23530
|
-
readonly Arn: string;
|
|
23531
|
-
readonly NodeId: string;
|
|
23532
|
-
}
|
|
23533
|
-
|
|
23534
23991
|
export declare class Nodegroup {
|
|
23535
23992
|
constructor(props: {
|
|
23536
23993
|
/** Name of the cluster to create the node group in. */
|
|
@@ -24706,6 +25163,22 @@ export declare class OutpostResolver {
|
|
|
24706
25163
|
readonly StatusMessage: string;
|
|
24707
25164
|
}
|
|
24708
25165
|
|
|
25166
|
+
export declare class OutpostsSite {
|
|
25167
|
+
constructor(props: {
|
|
25168
|
+
Name: string;
|
|
25169
|
+
Description?: string;
|
|
25170
|
+
Notes?: string;
|
|
25171
|
+
OperatingAddress?: OutpostsSite_Address;
|
|
25172
|
+
RackPhysicalProperties?: OutpostsSite_RackPhysicalProperties;
|
|
25173
|
+
ShippingAddress?: OutpostsSite_Address;
|
|
25174
|
+
SiteArn?: string;
|
|
25175
|
+
SiteId?: string;
|
|
25176
|
+
Tags?: OutpostsSite_Tag[];
|
|
25177
|
+
}, attributes?: CFResourceAttributes);
|
|
25178
|
+
readonly SiteArn: string;
|
|
25179
|
+
readonly SiteId: string;
|
|
25180
|
+
}
|
|
25181
|
+
|
|
24709
25182
|
export declare class Owner {
|
|
24710
25183
|
constructor(props: {
|
|
24711
25184
|
/** The ID of the domain in which you want to add the entity owner. */
|
|
@@ -28368,6 +28841,58 @@ export declare class RequestValidator {
|
|
|
28368
28841
|
readonly RequestValidatorId: string;
|
|
28369
28842
|
}
|
|
28370
28843
|
|
|
28844
|
+
export declare class ReservedDBInstance {
|
|
28845
|
+
constructor(props: {
|
|
28846
|
+
/** The currency code for the reserved DB instance. */
|
|
28847
|
+
CurrencyCode?: string;
|
|
28848
|
+
/** The DB instance class for the reserved DB instance. */
|
|
28849
|
+
DBInstanceClass?: string;
|
|
28850
|
+
/** The number of reserved DB instances. */
|
|
28851
|
+
DBInstanceCount?: number;
|
|
28852
|
+
/** The duration of the reservation in seconds. */
|
|
28853
|
+
Duration?: number;
|
|
28854
|
+
/** The fixed price charged for this reserved DB instance. */
|
|
28855
|
+
FixedPrice?: number;
|
|
28856
|
+
/** Indicates whether the reservation applies to Multi-AZ deployments. */
|
|
28857
|
+
MultiAZ?: boolean;
|
|
28858
|
+
/** The offering type of this reserved DB instance. */
|
|
28859
|
+
OfferingType?: string;
|
|
28860
|
+
/** The description of the reserved DB instance. */
|
|
28861
|
+
ProductDescription?: string;
|
|
28862
|
+
/** The recurring price charged to run this reserved DB instance. */
|
|
28863
|
+
RecurringCharges?: ReservedDBInstance_RecurringCharge[];
|
|
28864
|
+
/** The Amazon Resource Name (ARN) for the reserved DB instance. */
|
|
28865
|
+
ReservedDBInstanceArn?: string;
|
|
28866
|
+
/** The unique identifier for the reservation. */
|
|
28867
|
+
ReservedDBInstanceId?: string;
|
|
28868
|
+
/** The offering identifier. */
|
|
28869
|
+
ReservedDBInstancesOfferingId?: string;
|
|
28870
|
+
/** The time the reservation started. */
|
|
28871
|
+
StartTime?: string;
|
|
28872
|
+
/** The state of the reserved DB instance. */
|
|
28873
|
+
State?: string;
|
|
28874
|
+
/** A list of tags. */
|
|
28875
|
+
Tags?: ReservedDBInstance_Tag[];
|
|
28876
|
+
/** The hourly price charged for this reserved DB instance. */
|
|
28877
|
+
UsagePrice?: number;
|
|
28878
|
+
}, attributes?: CFResourceAttributes);
|
|
28879
|
+
readonly CurrencyCode: string;
|
|
28880
|
+
readonly DBInstanceClass: string;
|
|
28881
|
+
readonly Duration: number;
|
|
28882
|
+
readonly FixedPrice: number;
|
|
28883
|
+
readonly MultiAZ: boolean;
|
|
28884
|
+
readonly OfferingType: string;
|
|
28885
|
+
readonly ProductDescription: string;
|
|
28886
|
+
readonly RecurringCharges: ReservedDBInstance_RecurringCharge[];
|
|
28887
|
+
readonly ReservedDBInstanceArn: string;
|
|
28888
|
+
readonly ReservedDBInstanceId: string;
|
|
28889
|
+
readonly ReservedDBInstancesOfferingId: string;
|
|
28890
|
+
readonly StartTime: string;
|
|
28891
|
+
readonly State: string;
|
|
28892
|
+
readonly Tags: ReservedDBInstance_Tag[];
|
|
28893
|
+
readonly UsagePrice: number;
|
|
28894
|
+
}
|
|
28895
|
+
|
|
28371
28896
|
export declare class ResilienceHubApp {
|
|
28372
28897
|
constructor(props: {
|
|
28373
28898
|
/** A string containing full ResilienceHub app template body. */
|
|
@@ -30449,6 +30974,35 @@ export declare class SageMakerEndpoint {
|
|
|
30449
30974
|
readonly EndpointName: string;
|
|
30450
30975
|
}
|
|
30451
30976
|
|
|
30977
|
+
export declare class SageMakerHub {
|
|
30978
|
+
constructor(props: {
|
|
30979
|
+
/** A description of the hub. */
|
|
30980
|
+
HubDescription: string;
|
|
30981
|
+
/** The name of the hub. */
|
|
30982
|
+
HubName: string;
|
|
30983
|
+
/** The date and time that the hub was created. */
|
|
30984
|
+
CreationTime?: string;
|
|
30985
|
+
/** The Amazon Resource Name (ARN) of the hub. */
|
|
30986
|
+
HubArn?: string;
|
|
30987
|
+
/** The display name of the hub. */
|
|
30988
|
+
HubDisplayName?: string;
|
|
30989
|
+
/** The searchable keywords for the hub. */
|
|
30990
|
+
HubSearchKeywords?: string[];
|
|
30991
|
+
/** The status of the hub. */
|
|
30992
|
+
HubStatus?: "CreateFailed" | "Creating" | "DeleteFailed" | "Deleting" | "InService" | "UpdateFailed" | "Updating";
|
|
30993
|
+
/** The date and time that the hub was last modified. */
|
|
30994
|
+
LastModifiedTime?: string;
|
|
30995
|
+
/** The Amazon S3 storage configuration for the hub. */
|
|
30996
|
+
S3StorageConfig?: Record<string, unknown>;
|
|
30997
|
+
/** Tags to associate with the hub. */
|
|
30998
|
+
Tags?: SageMakerHub_Tag[];
|
|
30999
|
+
}, attributes?: CFResourceAttributes);
|
|
31000
|
+
readonly CreationTime: string;
|
|
31001
|
+
readonly HubArn: string;
|
|
31002
|
+
readonly HubStatus: "CreateFailed" | "Creating" | "DeleteFailed" | "Deleting" | "InService" | "UpdateFailed" | "Updating";
|
|
31003
|
+
readonly LastModifiedTime: string;
|
|
31004
|
+
}
|
|
31005
|
+
|
|
30452
31006
|
export declare class SageMakerImage {
|
|
30453
31007
|
constructor(props: {
|
|
30454
31008
|
ImageName: string;
|
|
@@ -31124,6 +31678,24 @@ export declare class SecurityHubAutomationRule {
|
|
|
31124
31678
|
readonly UpdatedAt: string;
|
|
31125
31679
|
}
|
|
31126
31680
|
|
|
31681
|
+
export declare class SecurityHubHub {
|
|
31682
|
+
constructor(props: {
|
|
31683
|
+
/** An ARN is automatically created for the customer. */
|
|
31684
|
+
ARN?: string;
|
|
31685
|
+
/** Whether to automatically enable new controls when they are added to standards that are enabled */
|
|
31686
|
+
AutoEnableControls?: boolean;
|
|
31687
|
+
/** This field, used when enabling Security Hub, specifies whether the calling account has consolidated control findings turned on. If the value for this field is set to SECURITY_CONTROL, Security Hub generates a single finding for a control check even when the check applies to multiple enabled standards. If the value for this field is set to STANDARD_CONTROL, Security Hub generates separate findings for a control check when the check applies to multiple enabled standards. */
|
|
31688
|
+
ControlFindingGenerator?: string;
|
|
31689
|
+
/** Whether to enable the security standards that Security Hub has designated as automatically enabled. */
|
|
31690
|
+
EnableDefaultStandards?: boolean;
|
|
31691
|
+
/** The date and time when Security Hub was enabled in the account. */
|
|
31692
|
+
SubscribedAt?: string;
|
|
31693
|
+
Tags?: Record<string, unknown>;
|
|
31694
|
+
}, attributes?: CFResourceAttributes);
|
|
31695
|
+
readonly ARN: string;
|
|
31696
|
+
readonly SubscribedAt: string;
|
|
31697
|
+
}
|
|
31698
|
+
|
|
31127
31699
|
export declare class SecurityKey {
|
|
31128
31700
|
constructor(props: {
|
|
31129
31701
|
InstanceId: string;
|
|
@@ -32100,31 +32672,6 @@ export declare class Sink {
|
|
|
32100
32672
|
readonly Arn: string;
|
|
32101
32673
|
}
|
|
32102
32674
|
|
|
32103
|
-
export declare class Site {
|
|
32104
|
-
constructor(props: {
|
|
32105
|
-
/** The ID of the global network. */
|
|
32106
|
-
GlobalNetworkId: string;
|
|
32107
|
-
/** The date and time that the device was created. */
|
|
32108
|
-
CreatedAt?: string;
|
|
32109
|
-
/** The description of the site. */
|
|
32110
|
-
Description?: string;
|
|
32111
|
-
/** The location of the site. */
|
|
32112
|
-
Location?: Site_Location;
|
|
32113
|
-
/** The Amazon Resource Name (ARN) of the site. */
|
|
32114
|
-
SiteArn?: string;
|
|
32115
|
-
/** The ID of the site. */
|
|
32116
|
-
SiteId?: string;
|
|
32117
|
-
/** The state of the site. */
|
|
32118
|
-
State?: string;
|
|
32119
|
-
/** The tags for the site. */
|
|
32120
|
-
Tags?: Site_Tag[];
|
|
32121
|
-
}, attributes?: CFResourceAttributes);
|
|
32122
|
-
readonly CreatedAt: string;
|
|
32123
|
-
readonly SiteArn: string;
|
|
32124
|
-
readonly SiteId: string;
|
|
32125
|
-
readonly State: string;
|
|
32126
|
-
}
|
|
32127
|
-
|
|
32128
32675
|
export declare class SiteToSiteVpnAttachment {
|
|
32129
32676
|
constructor(props: {
|
|
32130
32677
|
/** The ID of a core network where you're creating a site-to-site VPN attachment. */
|
|
@@ -38581,6 +39128,22 @@ export declare class Addon_Tag {
|
|
|
38581
39128
|
});
|
|
38582
39129
|
}
|
|
38583
39130
|
|
|
39131
|
+
export declare class Address {
|
|
39132
|
+
constructor(props: {
|
|
39133
|
+
AddressLine1: string;
|
|
39134
|
+
City: string;
|
|
39135
|
+
ContactName: string;
|
|
39136
|
+
ContactPhoneNumber: string;
|
|
39137
|
+
CountryCode: string;
|
|
39138
|
+
PostalCode: string;
|
|
39139
|
+
StateOrRegion: string;
|
|
39140
|
+
AddressLine2?: string;
|
|
39141
|
+
AddressLine3?: string;
|
|
39142
|
+
DistrictOrCounty?: string;
|
|
39143
|
+
Municipality?: string;
|
|
39144
|
+
});
|
|
39145
|
+
}
|
|
39146
|
+
|
|
38584
39147
|
export declare class AddThingsToThingGroupParams {
|
|
38585
39148
|
constructor(props: {
|
|
38586
39149
|
/** The list of groups to which you want to add the things that triggered the mitigation action. */
|
|
@@ -39180,6 +39743,101 @@ export declare class AlarmRule {
|
|
|
39180
39743
|
});
|
|
39181
39744
|
}
|
|
39182
39745
|
|
|
39746
|
+
export declare class Algorithm_ChannelSpecification {
|
|
39747
|
+
constructor(props: {
|
|
39748
|
+
Name: string;
|
|
39749
|
+
SupportedContentTypes: string[];
|
|
39750
|
+
SupportedInputModes: "FastFile" | "File" | "Pipe"[];
|
|
39751
|
+
Description?: string;
|
|
39752
|
+
IsRequired?: boolean;
|
|
39753
|
+
SupportedCompressionTypes?: "Gzip" | "None"[];
|
|
39754
|
+
});
|
|
39755
|
+
}
|
|
39756
|
+
|
|
39757
|
+
export declare class Algorithm_HyperParameterSpecification {
|
|
39758
|
+
constructor(props: {
|
|
39759
|
+
Name: string;
|
|
39760
|
+
Type: "Categorical" | "Continuous" | "FreeText" | "Integer";
|
|
39761
|
+
DefaultValue?: string;
|
|
39762
|
+
Description?: string;
|
|
39763
|
+
IsRequired?: boolean;
|
|
39764
|
+
IsTunable?: boolean;
|
|
39765
|
+
Range?: Algorithm_ParameterRange;
|
|
39766
|
+
});
|
|
39767
|
+
}
|
|
39768
|
+
|
|
39769
|
+
export declare class Algorithm_HyperParameterTuningJobObjective {
|
|
39770
|
+
constructor(props: {
|
|
39771
|
+
MetricName: string;
|
|
39772
|
+
Type: "Maximize" | "Minimize";
|
|
39773
|
+
});
|
|
39774
|
+
}
|
|
39775
|
+
|
|
39776
|
+
export declare class Algorithm_InferenceSpecification {
|
|
39777
|
+
constructor(props: {
|
|
39778
|
+
Containers: Algorithm_ModelPackageContainerDefinition[];
|
|
39779
|
+
SupportedContentTypes?: string[];
|
|
39780
|
+
SupportedRealtimeInferenceInstanceTypes?: string[];
|
|
39781
|
+
SupportedResponseMIMETypes?: string[];
|
|
39782
|
+
SupportedTransformInstanceTypes?: string[];
|
|
39783
|
+
});
|
|
39784
|
+
}
|
|
39785
|
+
|
|
39786
|
+
export declare class Algorithm_MetricDefinition {
|
|
39787
|
+
constructor(props: {
|
|
39788
|
+
Name: string;
|
|
39789
|
+
Regex: string;
|
|
39790
|
+
});
|
|
39791
|
+
}
|
|
39792
|
+
|
|
39793
|
+
export declare class Algorithm_ModelInput {
|
|
39794
|
+
constructor(props: {
|
|
39795
|
+
DataInputConfig: string;
|
|
39796
|
+
});
|
|
39797
|
+
}
|
|
39798
|
+
|
|
39799
|
+
export declare class Algorithm_ModelPackageContainerDefinition {
|
|
39800
|
+
constructor(props: {
|
|
39801
|
+
Image: string;
|
|
39802
|
+
ContainerHostname?: string;
|
|
39803
|
+
Environment?: Record<string, unknown>;
|
|
39804
|
+
Framework?: string;
|
|
39805
|
+
FrameworkVersion?: string;
|
|
39806
|
+
ImageDigest?: string;
|
|
39807
|
+
IsCheckpoint?: boolean;
|
|
39808
|
+
ModelInput?: Algorithm_ModelInput;
|
|
39809
|
+
NearestModelName?: string;
|
|
39810
|
+
});
|
|
39811
|
+
}
|
|
39812
|
+
|
|
39813
|
+
export declare class Algorithm_ParameterRange {
|
|
39814
|
+
constructor(props: {
|
|
39815
|
+
CategoricalParameterRangeSpecification?: Record<string, unknown>;
|
|
39816
|
+
ContinuousParameterRangeSpecification?: Record<string, unknown>;
|
|
39817
|
+
IntegerParameterRangeSpecification?: Record<string, unknown>;
|
|
39818
|
+
});
|
|
39819
|
+
}
|
|
39820
|
+
|
|
39821
|
+
export declare class Algorithm_Tag {
|
|
39822
|
+
constructor(props: {
|
|
39823
|
+
Key: string;
|
|
39824
|
+
Value: string;
|
|
39825
|
+
});
|
|
39826
|
+
}
|
|
39827
|
+
|
|
39828
|
+
export declare class Algorithm_TrainingSpecification {
|
|
39829
|
+
constructor(props: {
|
|
39830
|
+
SupportedTrainingInstanceTypes: string[];
|
|
39831
|
+
TrainingChannels: Algorithm_ChannelSpecification[];
|
|
39832
|
+
TrainingImage: string;
|
|
39833
|
+
MetricDefinitions?: Algorithm_MetricDefinition[];
|
|
39834
|
+
SupportedHyperParameters?: Algorithm_HyperParameterSpecification[];
|
|
39835
|
+
SupportedTuningJobObjectiveMetrics?: Algorithm_HyperParameterTuningJobObjective[];
|
|
39836
|
+
SupportsDistributedTraining?: boolean;
|
|
39837
|
+
TrainingImageDigest?: string;
|
|
39838
|
+
});
|
|
39839
|
+
}
|
|
39840
|
+
|
|
39183
39841
|
export declare class Alias {
|
|
39184
39842
|
constructor(props: {
|
|
39185
39843
|
/** The value of the Object Lambda alias. */
|
|
@@ -41299,6 +41957,20 @@ export declare class AppInstanceBot_Tag {
|
|
|
41299
41957
|
});
|
|
41300
41958
|
}
|
|
41301
41959
|
|
|
41960
|
+
export declare class AppInstanceUser_ExpirationSettings {
|
|
41961
|
+
constructor(props: {
|
|
41962
|
+
ExpirationCriterion: "CREATED_TIMESTAMP";
|
|
41963
|
+
ExpirationDays: number;
|
|
41964
|
+
});
|
|
41965
|
+
}
|
|
41966
|
+
|
|
41967
|
+
export declare class AppInstanceUser_Tag {
|
|
41968
|
+
constructor(props: {
|
|
41969
|
+
Key: string;
|
|
41970
|
+
Value: string;
|
|
41971
|
+
});
|
|
41972
|
+
}
|
|
41973
|
+
|
|
41302
41974
|
export declare class AppIntegrationsApplication_ApplicationConfig {
|
|
41303
41975
|
constructor(props: {
|
|
41304
41976
|
ContactHandling?: AppIntegrationsApplication_ContactHandling;
|
|
@@ -43053,6 +43725,34 @@ export declare class AssessmentTemplate_Tag {
|
|
|
43053
43725
|
});
|
|
43054
43726
|
}
|
|
43055
43727
|
|
|
43728
|
+
export declare class AssetBundleImportJob_AssetBundleImportJobOverrideValidationStrategy {
|
|
43729
|
+
constructor(props: {
|
|
43730
|
+
/** A Boolean value that indicates whether to import all analyses and dashboards under strict or lenient mode. */
|
|
43731
|
+
StrictModeForAllResources?: boolean;
|
|
43732
|
+
});
|
|
43733
|
+
}
|
|
43734
|
+
|
|
43735
|
+
export declare class AssetBundleImportJob_AssetBundleImportSourceDescription {
|
|
43736
|
+
constructor(props: {
|
|
43737
|
+
/** The Amazon S3 URI for the asset bundle import file. */
|
|
43738
|
+
S3Uri?: string;
|
|
43739
|
+
});
|
|
43740
|
+
}
|
|
43741
|
+
|
|
43742
|
+
export declare class AssetBundleImportJobOverrideValidationStrategy {
|
|
43743
|
+
constructor(props: {
|
|
43744
|
+
/** A Boolean value that indicates whether to import all analyses and dashboards under strict or lenient mode. */
|
|
43745
|
+
StrictModeForAllResources?: boolean;
|
|
43746
|
+
});
|
|
43747
|
+
}
|
|
43748
|
+
|
|
43749
|
+
export declare class AssetBundleImportSourceDescription {
|
|
43750
|
+
constructor(props: {
|
|
43751
|
+
/** The Amazon S3 URI for the asset bundle import file. */
|
|
43752
|
+
S3Uri?: string;
|
|
43753
|
+
});
|
|
43754
|
+
}
|
|
43755
|
+
|
|
43056
43756
|
export declare class AssetHierarchy {
|
|
43057
43757
|
constructor(props: {
|
|
43058
43758
|
/** The ID of the child asset to be associated. */
|
|
@@ -45726,6 +46426,7 @@ export declare class BedrockDataSource_DataSourceConfiguration {
|
|
|
45726
46426
|
constructor(props: {
|
|
45727
46427
|
Type: BedrockDataSource_DataSourceType;
|
|
45728
46428
|
ConfluenceConfiguration?: BedrockDataSource_ConfluenceDataSourceConfiguration;
|
|
46429
|
+
ManagedKnowledgeBaseConnectorConfiguration?: BedrockDataSource_ManagedKnowledgeBaseConnectorConfiguration;
|
|
45729
46430
|
S3Configuration?: BedrockDataSource_S3DataSourceConfiguration;
|
|
45730
46431
|
SalesforceConfiguration?: BedrockDataSource_SalesforceDataSourceConfiguration;
|
|
45731
46432
|
SharePointConfiguration?: BedrockDataSource_SharePointDataSourceConfiguration;
|
|
@@ -45733,6 +46434,14 @@ export declare class BedrockDataSource_DataSourceConfiguration {
|
|
|
45733
46434
|
});
|
|
45734
46435
|
}
|
|
45735
46436
|
|
|
46437
|
+
export declare class BedrockDataSource_DeletionProtectionConfiguration {
|
|
46438
|
+
constructor(props: {
|
|
46439
|
+
DeletionProtectionStatus: BedrockDataSource_EnabledOrDisabledState;
|
|
46440
|
+
/** Threshold for deletion protection. */
|
|
46441
|
+
DeletionProtectionThreshold?: number;
|
|
46442
|
+
});
|
|
46443
|
+
}
|
|
46444
|
+
|
|
45736
46445
|
export declare class BedrockDataSource_FixedSizeChunkingConfiguration {
|
|
45737
46446
|
constructor(props: {
|
|
45738
46447
|
/** The maximum number of tokens to include in a chunk. */
|
|
@@ -45757,6 +46466,23 @@ export declare class BedrockDataSource_IntermediateStorage {
|
|
|
45757
46466
|
});
|
|
45758
46467
|
}
|
|
45759
46468
|
|
|
46469
|
+
export declare class BedrockDataSource_ManagedKnowledgeBaseConnectorConfiguration {
|
|
46470
|
+
constructor(props: {
|
|
46471
|
+
/** Connector-specific parameters. */
|
|
46472
|
+
ConnectorParameters?: Record<string, unknown>;
|
|
46473
|
+
DeletionProtectionConfiguration?: BedrockDataSource_DeletionProtectionConfiguration;
|
|
46474
|
+
MediaExtractionConfiguration?: BedrockDataSource_MediaExtractionConfiguration;
|
|
46475
|
+
});
|
|
46476
|
+
}
|
|
46477
|
+
|
|
46478
|
+
export declare class BedrockDataSource_MediaExtractionConfiguration {
|
|
46479
|
+
constructor(props: {
|
|
46480
|
+
AudioExtractionConfiguration?: Record<string, unknown>;
|
|
46481
|
+
ImageExtractionConfiguration?: Record<string, unknown>;
|
|
46482
|
+
VideoExtractionConfiguration?: Record<string, unknown>;
|
|
46483
|
+
});
|
|
46484
|
+
}
|
|
46485
|
+
|
|
45760
46486
|
export declare class BedrockDataSource_ParsingConfiguration {
|
|
45761
46487
|
constructor(props: {
|
|
45762
46488
|
ParsingStrategy: BedrockDataSource_ParsingStrategy;
|
|
@@ -45987,11 +46713,29 @@ export declare class BedrockKnowledgeBase_KnowledgeBaseConfiguration {
|
|
|
45987
46713
|
constructor(props: {
|
|
45988
46714
|
Type: BedrockKnowledgeBase_KnowledgeBaseType;
|
|
45989
46715
|
KendraKnowledgeBaseConfiguration?: BedrockKnowledgeBase_KendraKnowledgeBaseConfiguration;
|
|
46716
|
+
ManagedKnowledgeBaseConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration;
|
|
45990
46717
|
SqlKnowledgeBaseConfiguration?: BedrockKnowledgeBase_SqlKnowledgeBaseConfiguration;
|
|
45991
46718
|
VectorKnowledgeBaseConfiguration?: BedrockKnowledgeBase_VectorKnowledgeBaseConfiguration;
|
|
45992
46719
|
});
|
|
45993
46720
|
}
|
|
45994
46721
|
|
|
46722
|
+
export declare class BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration {
|
|
46723
|
+
constructor(props: {
|
|
46724
|
+
/** The ARN of the model used to create vector embeddings for the knowledge base. */
|
|
46725
|
+
EmbeddingModelArn: string;
|
|
46726
|
+
EmbeddingModelConfiguration?: BedrockKnowledgeBase_EmbeddingModelConfiguration;
|
|
46727
|
+
EmbeddingModelType?: BedrockKnowledgeBase_EmbeddingModelType;
|
|
46728
|
+
ServerSideEncryptionConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration;
|
|
46729
|
+
});
|
|
46730
|
+
}
|
|
46731
|
+
|
|
46732
|
+
export declare class BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration {
|
|
46733
|
+
constructor(props: {
|
|
46734
|
+
/** The ARN of the AWS KMS key used to encrypt the managed knowledge base. */
|
|
46735
|
+
KmsKeyArn?: string;
|
|
46736
|
+
});
|
|
46737
|
+
}
|
|
46738
|
+
|
|
45995
46739
|
export declare class BedrockKnowledgeBase_MongoDbAtlasConfiguration {
|
|
45996
46740
|
constructor(props: {
|
|
45997
46741
|
/** Name of the collection within MongoDB Atlas. */
|
|
@@ -48047,28 +48791,6 @@ export declare class BufferOptions {
|
|
|
48047
48791
|
});
|
|
48048
48792
|
}
|
|
48049
48793
|
|
|
48050
|
-
export declare class Build_StorageLocation {
|
|
48051
|
-
constructor(props: {
|
|
48052
|
-
/** An Amazon S3 bucket identifier. This is the name of the S3 bucket. */
|
|
48053
|
-
Bucket: string;
|
|
48054
|
-
/** The name of the zip file that contains the build files or script files. */
|
|
48055
|
-
Key: string;
|
|
48056
|
-
/** The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket. */
|
|
48057
|
-
RoleArn: string;
|
|
48058
|
-
/** The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from your S3 bucket. To retrieve a specific version of the file, provide an object version. To retrieve the latest version of the file, do not set this parameter. */
|
|
48059
|
-
ObjectVersion?: string;
|
|
48060
|
-
});
|
|
48061
|
-
}
|
|
48062
|
-
|
|
48063
|
-
export declare class Build_Tag {
|
|
48064
|
-
constructor(props: {
|
|
48065
|
-
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length. */
|
|
48066
|
-
Key: string;
|
|
48067
|
-
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length. */
|
|
48068
|
-
Value: string;
|
|
48069
|
-
});
|
|
48070
|
-
}
|
|
48071
|
-
|
|
48072
48794
|
export declare class BuildStatusConfig {
|
|
48073
48795
|
constructor(props: {
|
|
48074
48796
|
Context?: string;
|
|
@@ -50325,6 +51047,17 @@ export declare class ChannelPlacementGroup_Tags {
|
|
|
50325
51047
|
});
|
|
50326
51048
|
}
|
|
50327
51049
|
|
|
51050
|
+
export declare class ChannelSpecification {
|
|
51051
|
+
constructor(props: {
|
|
51052
|
+
Name: string;
|
|
51053
|
+
SupportedContentTypes: string[];
|
|
51054
|
+
SupportedInputModes: "FastFile" | "File" | "Pipe"[];
|
|
51055
|
+
Description?: string;
|
|
51056
|
+
IsRequired?: boolean;
|
|
51057
|
+
SupportedCompressionTypes?: "Gzip" | "None"[];
|
|
51058
|
+
});
|
|
51059
|
+
}
|
|
51060
|
+
|
|
50328
51061
|
export declare class ChannelStorage {
|
|
50329
51062
|
constructor(props: {
|
|
50330
51063
|
CustomerManagedS3?: IoTAnalyticsChannel_CustomerManagedS3;
|
|
@@ -51008,6 +51741,13 @@ export declare class CloudWatchLog {
|
|
|
51008
51741
|
});
|
|
51009
51742
|
}
|
|
51010
51743
|
|
|
51744
|
+
export declare class CloudWatchLogging {
|
|
51745
|
+
constructor(props: {
|
|
51746
|
+
LogGroup?: string;
|
|
51747
|
+
LogStream?: string;
|
|
51748
|
+
});
|
|
51749
|
+
}
|
|
51750
|
+
|
|
51011
51751
|
export declare class CloudWatchLoggingOption {
|
|
51012
51752
|
constructor(props: {
|
|
51013
51753
|
LogStreamARN: string;
|
|
@@ -51251,6 +51991,12 @@ export declare class Code {
|
|
|
51251
51991
|
});
|
|
51252
51992
|
}
|
|
51253
51993
|
|
|
51994
|
+
export declare class CodeArtifact {
|
|
51995
|
+
constructor(props: {
|
|
51996
|
+
Uri: string;
|
|
51997
|
+
});
|
|
51998
|
+
}
|
|
51999
|
+
|
|
51254
52000
|
export declare class CodeArtifactDomain_Tag {
|
|
51255
52001
|
constructor(props: {
|
|
51256
52002
|
/** 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 -. */
|
|
@@ -55480,6 +56226,24 @@ export declare class ContinuousIntegrationScanConfiguration {
|
|
|
55480
56226
|
});
|
|
55481
56227
|
}
|
|
55482
56228
|
|
|
56229
|
+
export declare class Control_ImplementationDetails {
|
|
56230
|
+
constructor(props: {
|
|
56231
|
+
/** A string that describes a control's implementation type. */
|
|
56232
|
+
Type: string;
|
|
56233
|
+
/** A service-specific identifier for the control. */
|
|
56234
|
+
Identifier?: string;
|
|
56235
|
+
});
|
|
56236
|
+
}
|
|
56237
|
+
|
|
56238
|
+
export declare class Control_RegionConfiguration {
|
|
56239
|
+
constructor(props: {
|
|
56240
|
+
/** The scope of the control. */
|
|
56241
|
+
Scope: "GLOBAL" | "REGIONAL";
|
|
56242
|
+
/** Regions in which the control is available to be deployed. */
|
|
56243
|
+
DeployableRegions?: string[];
|
|
56244
|
+
});
|
|
56245
|
+
}
|
|
56246
|
+
|
|
55483
56247
|
export declare class ControlCondition {
|
|
55484
56248
|
constructor(props: {
|
|
55485
56249
|
AlarmIdentifier: string;
|
|
@@ -55727,6 +56491,12 @@ export declare class CoverageTime {
|
|
|
55727
56491
|
});
|
|
55728
56492
|
}
|
|
55729
56493
|
|
|
56494
|
+
export declare class CpuConfiguration {
|
|
56495
|
+
constructor(props: {
|
|
56496
|
+
Architecture: "ARM_64";
|
|
56497
|
+
});
|
|
56498
|
+
}
|
|
56499
|
+
|
|
55730
56500
|
export declare class CpuOptions {
|
|
55731
56501
|
constructor(props: {
|
|
55732
56502
|
/** Indicates whether to enable the instance for AMD SEV-SNP. AMD SEV-SNP is supported with M6a, R6a, and C6a instance types only. For more information, see [AMD SEV-SNP for Amazon EC2 instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html). */
|
|
@@ -58932,6 +59702,13 @@ export declare class DataColorPalette {
|
|
|
58932
59702
|
});
|
|
58933
59703
|
}
|
|
58934
59704
|
|
|
59705
|
+
export declare class DataDeletionJob_DataSource {
|
|
59706
|
+
constructor(props: {
|
|
59707
|
+
/** The path to the Amazon S3 bucket where the data is stored. */
|
|
59708
|
+
DataLocation?: string;
|
|
59709
|
+
});
|
|
59710
|
+
}
|
|
59711
|
+
|
|
58935
59712
|
export declare class DataDeliveryObject {
|
|
58936
59713
|
constructor(props: {
|
|
58937
59714
|
LogGroup?: string;
|
|
@@ -61076,6 +61853,14 @@ export declare class DeletionProtection {
|
|
|
61076
61853
|
});
|
|
61077
61854
|
}
|
|
61078
61855
|
|
|
61856
|
+
export declare class DeletionProtectionConfiguration {
|
|
61857
|
+
constructor(props: {
|
|
61858
|
+
DeletionProtectionStatus: BedrockDataSource_EnabledOrDisabledState;
|
|
61859
|
+
/** Threshold for deletion protection. */
|
|
61860
|
+
DeletionProtectionThreshold?: number;
|
|
61861
|
+
});
|
|
61862
|
+
}
|
|
61863
|
+
|
|
61079
61864
|
export declare class DeletionSettings {
|
|
61080
61865
|
constructor(props: {
|
|
61081
61866
|
/** The execution role to use for deleting the image, as well as underlying resources. */
|
|
@@ -69237,6 +70022,13 @@ export declare class ExpirationDataRule {
|
|
|
69237
70022
|
});
|
|
69238
70023
|
}
|
|
69239
70024
|
|
|
70025
|
+
export declare class ExpirationSettings {
|
|
70026
|
+
constructor(props: {
|
|
70027
|
+
ExpirationCriterion: "CREATED_TIMESTAMP";
|
|
70028
|
+
ExpirationDays: number;
|
|
70029
|
+
});
|
|
70030
|
+
}
|
|
70031
|
+
|
|
69240
70032
|
export declare class ExpiryEventsConfiguration {
|
|
69241
70033
|
constructor(props: {
|
|
69242
70034
|
DaysBeforeExpiry?: number;
|
|
@@ -71976,6 +72768,28 @@ export declare class GameLiftAlias_Tag {
|
|
|
71976
72768
|
});
|
|
71977
72769
|
}
|
|
71978
72770
|
|
|
72771
|
+
export declare class GameLiftBuild_StorageLocation {
|
|
72772
|
+
constructor(props: {
|
|
72773
|
+
/** An Amazon S3 bucket identifier. This is the name of the S3 bucket. */
|
|
72774
|
+
Bucket: string;
|
|
72775
|
+
/** The name of the zip file that contains the build files or script files. */
|
|
72776
|
+
Key: string;
|
|
72777
|
+
/** The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket. */
|
|
72778
|
+
RoleArn: string;
|
|
72779
|
+
/** The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from your S3 bucket. To retrieve a specific version of the file, provide an object version. To retrieve the latest version of the file, do not set this parameter. */
|
|
72780
|
+
ObjectVersion?: string;
|
|
72781
|
+
});
|
|
72782
|
+
}
|
|
72783
|
+
|
|
72784
|
+
export declare class GameLiftBuild_Tag {
|
|
72785
|
+
constructor(props: {
|
|
72786
|
+
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length. */
|
|
72787
|
+
Key: string;
|
|
72788
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length. */
|
|
72789
|
+
Value: string;
|
|
72790
|
+
});
|
|
72791
|
+
}
|
|
72792
|
+
|
|
71979
72793
|
export declare class GameLiftFleet_AnywhereConfiguration {
|
|
71980
72794
|
constructor(props: {
|
|
71981
72795
|
/** Cost of compute can be specified on Anywhere Fleets to prioritize placement across Queue destinations based on Cost. */
|
|
@@ -74097,9 +74911,24 @@ export declare class Harness_HarnessLiteLlmModelConfig {
|
|
|
74097
74911
|
});
|
|
74098
74912
|
}
|
|
74099
74913
|
|
|
74914
|
+
export declare class Harness_HarnessManagedMemoryConfiguration {
|
|
74915
|
+
constructor(props: {
|
|
74916
|
+
/** The ARN of the managed memory resource. Read-only, populated by the service. */
|
|
74917
|
+
Arn?: string;
|
|
74918
|
+
/** Customer-managed KMS key ARN. Defaults to AWS-owned key. Not updatable after creation. */
|
|
74919
|
+
EncryptionKeyArn?: string;
|
|
74920
|
+
/** Event retention in days. Defaults to 30. */
|
|
74921
|
+
EventExpiryDuration?: number;
|
|
74922
|
+
/** Strategy types to enable. Defaults to [SEMANTIC, SUMMARIZATION]. */
|
|
74923
|
+
Strategies?: "EPISODIC" | "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE"[];
|
|
74924
|
+
});
|
|
74925
|
+
}
|
|
74926
|
+
|
|
74100
74927
|
export declare class Harness_HarnessMemoryConfiguration {
|
|
74101
74928
|
constructor(props: {
|
|
74102
74929
|
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
74930
|
+
Disabled?: Record<string, unknown>;
|
|
74931
|
+
ManagedMemoryConfiguration?: Harness_HarnessManagedMemoryConfiguration;
|
|
74103
74932
|
});
|
|
74104
74933
|
}
|
|
74105
74934
|
|
|
@@ -74134,6 +74963,7 @@ export declare class Harness_HarnessRemoteMcpConfig {
|
|
|
74134
74963
|
|
|
74135
74964
|
export declare class Harness_HarnessSkill {
|
|
74136
74965
|
constructor(props: {
|
|
74966
|
+
AwsSkills?: Harness_HarnessSkillAwsSkillsSource;
|
|
74137
74967
|
Git?: Harness_HarnessSkillGitSource;
|
|
74138
74968
|
/** The filesystem path to the skill definition. */
|
|
74139
74969
|
Path?: string;
|
|
@@ -74141,6 +74971,13 @@ export declare class Harness_HarnessSkill {
|
|
|
74141
74971
|
});
|
|
74142
74972
|
}
|
|
74143
74973
|
|
|
74974
|
+
export declare class Harness_HarnessSkillAwsSkillsSource {
|
|
74975
|
+
constructor(props: {
|
|
74976
|
+
/** Optionally filter allowed skills with glob syntax, e.g., ['core-skills/*']. */
|
|
74977
|
+
Paths?: string[];
|
|
74978
|
+
});
|
|
74979
|
+
}
|
|
74980
|
+
|
|
74144
74981
|
export declare class Harness_HarnessSkillGitAuth {
|
|
74145
74982
|
constructor(props: {
|
|
74146
74983
|
/** The ARN of the credential in AgentCore Identity containing the password or personal access token. */
|
|
@@ -74353,9 +75190,24 @@ export declare class HarnessLiteLlmModelConfig {
|
|
|
74353
75190
|
});
|
|
74354
75191
|
}
|
|
74355
75192
|
|
|
75193
|
+
export declare class HarnessManagedMemoryConfiguration {
|
|
75194
|
+
constructor(props: {
|
|
75195
|
+
/** The ARN of the managed memory resource. Read-only, populated by the service. */
|
|
75196
|
+
Arn?: string;
|
|
75197
|
+
/** Customer-managed KMS key ARN. Defaults to AWS-owned key. Not updatable after creation. */
|
|
75198
|
+
EncryptionKeyArn?: string;
|
|
75199
|
+
/** Event retention in days. Defaults to 30. */
|
|
75200
|
+
EventExpiryDuration?: number;
|
|
75201
|
+
/** Strategy types to enable. Defaults to [SEMANTIC, SUMMARIZATION]. */
|
|
75202
|
+
Strategies?: "EPISODIC" | "SEMANTIC" | "SUMMARIZATION" | "USER_PREFERENCE"[];
|
|
75203
|
+
});
|
|
75204
|
+
}
|
|
75205
|
+
|
|
74356
75206
|
export declare class HarnessMemoryConfiguration {
|
|
74357
75207
|
constructor(props: {
|
|
74358
75208
|
AgentCoreMemoryConfiguration?: Harness_HarnessAgentCoreMemoryConfiguration;
|
|
75209
|
+
Disabled?: Record<string, unknown>;
|
|
75210
|
+
ManagedMemoryConfiguration?: Harness_HarnessManagedMemoryConfiguration;
|
|
74359
75211
|
});
|
|
74360
75212
|
}
|
|
74361
75213
|
|
|
@@ -74390,6 +75242,7 @@ export declare class HarnessRemoteMcpConfig {
|
|
|
74390
75242
|
|
|
74391
75243
|
export declare class HarnessSkill {
|
|
74392
75244
|
constructor(props: {
|
|
75245
|
+
AwsSkills?: Harness_HarnessSkillAwsSkillsSource;
|
|
74393
75246
|
Git?: Harness_HarnessSkillGitSource;
|
|
74394
75247
|
/** The filesystem path to the skill definition. */
|
|
74395
75248
|
Path?: string;
|
|
@@ -74397,6 +75250,13 @@ export declare class HarnessSkill {
|
|
|
74397
75250
|
});
|
|
74398
75251
|
}
|
|
74399
75252
|
|
|
75253
|
+
export declare class HarnessSkillAwsSkillsSource {
|
|
75254
|
+
constructor(props: {
|
|
75255
|
+
/** Optionally filter allowed skills with glob syntax, e.g., ['core-skills/*']. */
|
|
75256
|
+
Paths?: string[];
|
|
75257
|
+
});
|
|
75258
|
+
}
|
|
75259
|
+
|
|
74400
75260
|
export declare class HarnessSkillGitAuth {
|
|
74401
75261
|
constructor(props: {
|
|
74402
75262
|
/** The ARN of the credential in AgentCore Identity containing the password or personal access token. */
|
|
@@ -74625,6 +75485,14 @@ export declare class HomeDirectoryMapEntry {
|
|
|
74625
75485
|
});
|
|
74626
75486
|
}
|
|
74627
75487
|
|
|
75488
|
+
export declare class Hooks {
|
|
75489
|
+
constructor(props: {
|
|
75490
|
+
MicrovmHooks?: MicrovmImage_MicrovmHooks;
|
|
75491
|
+
MicrovmImageHooks?: MicrovmImage_MicrovmImageHooks;
|
|
75492
|
+
Port?: number;
|
|
75493
|
+
});
|
|
75494
|
+
}
|
|
75495
|
+
|
|
74628
75496
|
export declare class HookTimeoutConfig {
|
|
74629
75497
|
constructor(props: {
|
|
74630
75498
|
Action?: "CONTINUE" | "ROLLBACK";
|
|
@@ -75162,6 +76030,25 @@ export declare class HudiTarget {
|
|
|
75162
76030
|
});
|
|
75163
76031
|
}
|
|
75164
76032
|
|
|
76033
|
+
export declare class HyperParameterSpecification {
|
|
76034
|
+
constructor(props: {
|
|
76035
|
+
Name: string;
|
|
76036
|
+
Type: "Categorical" | "Continuous" | "FreeText" | "Integer";
|
|
76037
|
+
DefaultValue?: string;
|
|
76038
|
+
Description?: string;
|
|
76039
|
+
IsRequired?: boolean;
|
|
76040
|
+
IsTunable?: boolean;
|
|
76041
|
+
Range?: Algorithm_ParameterRange;
|
|
76042
|
+
});
|
|
76043
|
+
}
|
|
76044
|
+
|
|
76045
|
+
export declare class HyperParameterTuningJobObjective {
|
|
76046
|
+
constructor(props: {
|
|
76047
|
+
MetricName: string;
|
|
76048
|
+
Type: "Maximize" | "Minimize";
|
|
76049
|
+
});
|
|
76050
|
+
}
|
|
76051
|
+
|
|
75165
76052
|
export declare class Hypervisor_Tag {
|
|
75166
76053
|
constructor(props: {
|
|
75167
76054
|
Key: string;
|
|
@@ -76355,6 +77242,15 @@ export declare class ImageStandardOutputConfiguration {
|
|
|
76355
77242
|
});
|
|
76356
77243
|
}
|
|
76357
77244
|
|
|
77245
|
+
export declare class ImplementationDetails {
|
|
77246
|
+
constructor(props: {
|
|
77247
|
+
/** A string that describes a control's implementation type. */
|
|
77248
|
+
Type: string;
|
|
77249
|
+
/** A service-specific identifier for the control. */
|
|
77250
|
+
Identifier?: string;
|
|
77251
|
+
});
|
|
77252
|
+
}
|
|
77253
|
+
|
|
76358
77254
|
export declare class ImportDataRule {
|
|
76359
77255
|
constructor(props: {
|
|
76360
77256
|
Prefix: string;
|
|
@@ -80412,6 +81308,13 @@ export declare class KafkaClusterClientVpcConfig {
|
|
|
80412
81308
|
});
|
|
80413
81309
|
}
|
|
80414
81310
|
|
|
81311
|
+
export declare class KafkaClusterMtlsAuthentication {
|
|
81312
|
+
constructor(props: {
|
|
81313
|
+
/** The Amazon Resource Name (ARN) of the Secrets Manager secret. */
|
|
81314
|
+
SecretArn: string;
|
|
81315
|
+
});
|
|
81316
|
+
}
|
|
81317
|
+
|
|
80415
81318
|
export declare class KafkaClusterSaslScramAuthentication {
|
|
80416
81319
|
constructor(props: {
|
|
80417
81320
|
/** The SASL/SCRAM authentication mechanism. */
|
|
@@ -81742,6 +82645,7 @@ export declare class KnowledgeBaseConfiguration {
|
|
|
81742
82645
|
constructor(props: {
|
|
81743
82646
|
Type: BedrockKnowledgeBase_KnowledgeBaseType;
|
|
81744
82647
|
KendraKnowledgeBaseConfiguration?: BedrockKnowledgeBase_KendraKnowledgeBaseConfiguration;
|
|
82648
|
+
ManagedKnowledgeBaseConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration;
|
|
81745
82649
|
SqlKnowledgeBaseConfiguration?: BedrockKnowledgeBase_SqlKnowledgeBaseConfiguration;
|
|
81746
82650
|
VectorKnowledgeBaseConfiguration?: BedrockKnowledgeBase_VectorKnowledgeBaseConfiguration;
|
|
81747
82651
|
});
|
|
@@ -85786,6 +86690,13 @@ export declare class ManagedBlockchainMember_VotingPolicy {
|
|
|
85786
86690
|
});
|
|
85787
86691
|
}
|
|
85788
86692
|
|
|
86693
|
+
export declare class ManagedBlockchainNode_NodeConfiguration {
|
|
86694
|
+
constructor(props: {
|
|
86695
|
+
AvailabilityZone: string;
|
|
86696
|
+
InstanceType: string;
|
|
86697
|
+
});
|
|
86698
|
+
}
|
|
86699
|
+
|
|
85789
86700
|
export declare class ManagedCertificateRequest {
|
|
85790
86701
|
constructor(props: {
|
|
85791
86702
|
/** You can opt out of certificate transparency logging by specifying the ``disabled`` option. Opt in by specifying ``enabled``. For more information, see [Certificate Transparency Logging](https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency) in the *User Guide*. */
|
|
@@ -85837,6 +86748,32 @@ export declare class ManagedInstancesStorageConfiguration {
|
|
|
85837
86748
|
});
|
|
85838
86749
|
}
|
|
85839
86750
|
|
|
86751
|
+
export declare class ManagedKnowledgeBaseConfiguration {
|
|
86752
|
+
constructor(props: {
|
|
86753
|
+
/** The ARN of the model used to create vector embeddings for the knowledge base. */
|
|
86754
|
+
EmbeddingModelArn: string;
|
|
86755
|
+
EmbeddingModelConfiguration?: BedrockKnowledgeBase_EmbeddingModelConfiguration;
|
|
86756
|
+
EmbeddingModelType?: BedrockKnowledgeBase_EmbeddingModelType;
|
|
86757
|
+
ServerSideEncryptionConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseServerSideEncryptionConfiguration;
|
|
86758
|
+
});
|
|
86759
|
+
}
|
|
86760
|
+
|
|
86761
|
+
export declare class ManagedKnowledgeBaseConnectorConfiguration {
|
|
86762
|
+
constructor(props: {
|
|
86763
|
+
/** Connector-specific parameters. */
|
|
86764
|
+
ConnectorParameters?: Record<string, unknown>;
|
|
86765
|
+
DeletionProtectionConfiguration?: BedrockDataSource_DeletionProtectionConfiguration;
|
|
86766
|
+
MediaExtractionConfiguration?: BedrockDataSource_MediaExtractionConfiguration;
|
|
86767
|
+
});
|
|
86768
|
+
}
|
|
86769
|
+
|
|
86770
|
+
export declare class ManagedKnowledgeBaseServerSideEncryptionConfiguration {
|
|
86771
|
+
constructor(props: {
|
|
86772
|
+
/** The ARN of the AWS KMS key used to encrypt the managed knowledge base. */
|
|
86773
|
+
KmsKeyArn?: string;
|
|
86774
|
+
});
|
|
86775
|
+
}
|
|
86776
|
+
|
|
85840
86777
|
export declare class ManagedLoggingConfiguration {
|
|
85841
86778
|
constructor(props: {
|
|
85842
86779
|
/** Enables managed log persistence. */
|
|
@@ -86688,14 +87625,6 @@ export declare class MediaConvertJobTemplate_HopDestination {
|
|
|
86688
87625
|
});
|
|
86689
87626
|
}
|
|
86690
87627
|
|
|
86691
|
-
export declare class MediaExtractionConfiguration {
|
|
86692
|
-
constructor(props: {
|
|
86693
|
-
AudioExtractionConfiguration?: QBusinessDataSource_AudioExtractionConfiguration;
|
|
86694
|
-
ImageExtractionConfiguration?: QBusinessDataSource_ImageExtractionConfiguration;
|
|
86695
|
-
VideoExtractionConfiguration?: QBusinessDataSource_VideoExtractionConfiguration;
|
|
86696
|
-
});
|
|
86697
|
-
}
|
|
86698
|
-
|
|
86699
87628
|
export declare class MediaItem {
|
|
86700
87629
|
constructor(props: {
|
|
86701
87630
|
Type: ConnectWorkspace_MediaType;
|
|
@@ -87345,6 +88274,37 @@ export declare class MediaLiveInput_SrtSettingsRequest {
|
|
|
87345
88274
|
});
|
|
87346
88275
|
}
|
|
87347
88276
|
|
|
88277
|
+
export declare class MediaLiveNode_NodeInterfaceMapping {
|
|
88278
|
+
constructor(props: {
|
|
88279
|
+
/** The logical name for this interface. */
|
|
88280
|
+
LogicalInterfaceName?: string;
|
|
88281
|
+
/** The network interface mode. */
|
|
88282
|
+
NetworkInterfaceMode?: "BRIDGE" | "NAT";
|
|
88283
|
+
/** The physical interface name. */
|
|
88284
|
+
PhysicalInterfaceName?: string;
|
|
88285
|
+
});
|
|
88286
|
+
}
|
|
88287
|
+
|
|
88288
|
+
export declare class MediaLiveNode_SdiSourceMapping {
|
|
88289
|
+
constructor(props: {
|
|
88290
|
+
/** The card number. */
|
|
88291
|
+
CardNumber?: number;
|
|
88292
|
+
/** The channel number. */
|
|
88293
|
+
ChannelNumber?: number;
|
|
88294
|
+
/** The SDI source. */
|
|
88295
|
+
SdiSource?: string;
|
|
88296
|
+
});
|
|
88297
|
+
}
|
|
88298
|
+
|
|
88299
|
+
export declare class MediaLiveNode_Tag {
|
|
88300
|
+
constructor(props: {
|
|
88301
|
+
/** The key name of the tag. */
|
|
88302
|
+
Key: string;
|
|
88303
|
+
/** The value for the tag. */
|
|
88304
|
+
Value: string;
|
|
88305
|
+
});
|
|
88306
|
+
}
|
|
88307
|
+
|
|
87348
88308
|
export declare class MediaPackageAsset_EgressEndpoint {
|
|
87349
88309
|
constructor(props: {
|
|
87350
88310
|
/** The ID of the PackagingConfiguration being applied to the Asset. */
|
|
@@ -89108,6 +90068,106 @@ export declare class MicrosoftTeamsChannelConfiguration_Tag {
|
|
|
89108
90068
|
});
|
|
89109
90069
|
}
|
|
89110
90070
|
|
|
90071
|
+
export declare class MicrovmHooks {
|
|
90072
|
+
constructor(props: {
|
|
90073
|
+
Resume?: MicrovmImage_HookState;
|
|
90074
|
+
ResumeTimeoutInSeconds?: number;
|
|
90075
|
+
Run?: MicrovmImage_HookState;
|
|
90076
|
+
RunTimeoutInSeconds?: number;
|
|
90077
|
+
Suspend?: MicrovmImage_HookState;
|
|
90078
|
+
SuspendTimeoutInSeconds?: number;
|
|
90079
|
+
Terminate?: MicrovmImage_HookState;
|
|
90080
|
+
TerminateTimeoutInSeconds?: number;
|
|
90081
|
+
});
|
|
90082
|
+
}
|
|
90083
|
+
|
|
90084
|
+
export declare class MicrovmImage_CloudWatchLogging {
|
|
90085
|
+
constructor(props: {
|
|
90086
|
+
LogGroup?: string;
|
|
90087
|
+
LogStream?: string;
|
|
90088
|
+
});
|
|
90089
|
+
}
|
|
90090
|
+
|
|
90091
|
+
export declare class MicrovmImage_CodeArtifact {
|
|
90092
|
+
constructor(props: {
|
|
90093
|
+
Uri: string;
|
|
90094
|
+
});
|
|
90095
|
+
}
|
|
90096
|
+
|
|
90097
|
+
export declare class MicrovmImage_CpuConfiguration {
|
|
90098
|
+
constructor(props: {
|
|
90099
|
+
Architecture: "ARM_64";
|
|
90100
|
+
});
|
|
90101
|
+
}
|
|
90102
|
+
|
|
90103
|
+
export declare class MicrovmImage_EnvironmentVariable {
|
|
90104
|
+
constructor(props: {
|
|
90105
|
+
Key: string;
|
|
90106
|
+
Value: string;
|
|
90107
|
+
});
|
|
90108
|
+
}
|
|
90109
|
+
|
|
90110
|
+
export declare class MicrovmImage_Hooks {
|
|
90111
|
+
constructor(props: {
|
|
90112
|
+
MicrovmHooks?: MicrovmImage_MicrovmHooks;
|
|
90113
|
+
MicrovmImageHooks?: MicrovmImage_MicrovmImageHooks;
|
|
90114
|
+
Port?: number;
|
|
90115
|
+
});
|
|
90116
|
+
}
|
|
90117
|
+
|
|
90118
|
+
export declare class MicrovmImage_Logging {
|
|
90119
|
+
constructor(props: {
|
|
90120
|
+
CloudWatch?: MicrovmImage_CloudWatchLogging;
|
|
90121
|
+
Disabled?: boolean;
|
|
90122
|
+
});
|
|
90123
|
+
}
|
|
90124
|
+
|
|
90125
|
+
export declare class MicrovmImage_MicrovmHooks {
|
|
90126
|
+
constructor(props: {
|
|
90127
|
+
Resume?: MicrovmImage_HookState;
|
|
90128
|
+
ResumeTimeoutInSeconds?: number;
|
|
90129
|
+
Run?: MicrovmImage_HookState;
|
|
90130
|
+
RunTimeoutInSeconds?: number;
|
|
90131
|
+
Suspend?: MicrovmImage_HookState;
|
|
90132
|
+
SuspendTimeoutInSeconds?: number;
|
|
90133
|
+
Terminate?: MicrovmImage_HookState;
|
|
90134
|
+
TerminateTimeoutInSeconds?: number;
|
|
90135
|
+
});
|
|
90136
|
+
}
|
|
90137
|
+
|
|
90138
|
+
export declare class MicrovmImage_MicrovmImageHooks {
|
|
90139
|
+
constructor(props: {
|
|
90140
|
+
Ready?: MicrovmImage_HookState;
|
|
90141
|
+
ReadyTimeoutInSeconds?: number;
|
|
90142
|
+
Validate?: MicrovmImage_HookState;
|
|
90143
|
+
ValidateTimeoutInSeconds?: number;
|
|
90144
|
+
});
|
|
90145
|
+
}
|
|
90146
|
+
|
|
90147
|
+
export declare class MicrovmImage_Resources {
|
|
90148
|
+
constructor(props: {
|
|
90149
|
+
MinimumMemoryInMiB: number;
|
|
90150
|
+
});
|
|
90151
|
+
}
|
|
90152
|
+
|
|
90153
|
+
export declare class MicrovmImage_Tag {
|
|
90154
|
+
constructor(props: {
|
|
90155
|
+
/** The key name of the tag. */
|
|
90156
|
+
Key: string;
|
|
90157
|
+
/** The value for the tag. */
|
|
90158
|
+
Value?: string;
|
|
90159
|
+
});
|
|
90160
|
+
}
|
|
90161
|
+
|
|
90162
|
+
export declare class MicrovmImageHooks {
|
|
90163
|
+
constructor(props: {
|
|
90164
|
+
Ready?: MicrovmImage_HookState;
|
|
90165
|
+
ReadyTimeoutInSeconds?: number;
|
|
90166
|
+
Validate?: MicrovmImage_HookState;
|
|
90167
|
+
ValidateTimeoutInSeconds?: number;
|
|
90168
|
+
});
|
|
90169
|
+
}
|
|
90170
|
+
|
|
89111
90171
|
export declare class MigrationProject_DataProviderDescriptor {
|
|
89112
90172
|
constructor(props: {
|
|
89113
90173
|
DataProviderArn?: string;
|
|
@@ -89707,6 +90767,34 @@ export declare class ModelCard_UserContext {
|
|
|
89707
90767
|
});
|
|
89708
90768
|
}
|
|
89709
90769
|
|
|
90770
|
+
export declare class ModelCardExportArtifacts {
|
|
90771
|
+
constructor(props: {
|
|
90772
|
+
/** The Amazon S3 URI of the exported model artifacts. */
|
|
90773
|
+
S3ExportArtifacts: string;
|
|
90774
|
+
});
|
|
90775
|
+
}
|
|
90776
|
+
|
|
90777
|
+
export declare class ModelCardExportJob_ModelCardExportArtifacts {
|
|
90778
|
+
constructor(props: {
|
|
90779
|
+
/** The Amazon S3 URI of the exported model artifacts. */
|
|
90780
|
+
S3ExportArtifacts: string;
|
|
90781
|
+
});
|
|
90782
|
+
}
|
|
90783
|
+
|
|
90784
|
+
export declare class ModelCardExportJob_ModelCardExportOutputConfig {
|
|
90785
|
+
constructor(props: {
|
|
90786
|
+
/** The Amazon S3 output path to export your model card PDF. */
|
|
90787
|
+
S3OutputPath: string;
|
|
90788
|
+
});
|
|
90789
|
+
}
|
|
90790
|
+
|
|
90791
|
+
export declare class ModelCardExportOutputConfig {
|
|
90792
|
+
constructor(props: {
|
|
90793
|
+
/** The Amazon S3 output path to export your model card PDF. */
|
|
90794
|
+
S3OutputPath: string;
|
|
90795
|
+
});
|
|
90796
|
+
}
|
|
90797
|
+
|
|
89710
90798
|
export declare class ModelDataQuality {
|
|
89711
90799
|
constructor(props: {
|
|
89712
90800
|
Constraints?: ModelPackage_MetricsSource;
|
|
@@ -89920,6 +91008,12 @@ export declare class ModelInfrastructureConfig {
|
|
|
89920
91008
|
});
|
|
89921
91009
|
}
|
|
89922
91010
|
|
|
91011
|
+
export declare class ModelInput {
|
|
91012
|
+
constructor(props: {
|
|
91013
|
+
DataInputConfig: string;
|
|
91014
|
+
});
|
|
91015
|
+
}
|
|
91016
|
+
|
|
89923
91017
|
export declare class ModelManifest_Tag {
|
|
89924
91018
|
constructor(props: {
|
|
89925
91019
|
Key: string;
|
|
@@ -90203,28 +91297,6 @@ export declare class ModelPackage_ValidationSpecification {
|
|
|
90203
91297
|
});
|
|
90204
91298
|
}
|
|
90205
91299
|
|
|
90206
|
-
export declare class ModelPackageContainerDefinition {
|
|
90207
|
-
constructor(props: {
|
|
90208
|
-
/** The Amazon EC2 Container Registry (Amazon ECR) path where inference code is stored. */
|
|
90209
|
-
Image: string;
|
|
90210
|
-
/** The DNS host name for the Docker container. */
|
|
90211
|
-
ContainerHostname?: string;
|
|
90212
|
-
Environment?: Record<string, unknown>;
|
|
90213
|
-
/** The machine learning framework of the model package container image. */
|
|
90214
|
-
Framework?: string;
|
|
90215
|
-
/** The framework version of the Model Package Container Image. */
|
|
90216
|
-
FrameworkVersion?: string;
|
|
90217
|
-
/** An MD5 hash of the training algorithm that identifies the Docker image used for training. */
|
|
90218
|
-
ImageDigest?: string;
|
|
90219
|
-
ModelDataSource?: ModelPackage_ModelDataSource;
|
|
90220
|
-
/** A structure with Model Input details. */
|
|
90221
|
-
ModelDataUrl?: string;
|
|
90222
|
-
ModelInput?: Record<string, unknown>;
|
|
90223
|
-
/** The name of a pre-trained machine learning benchmarked by Amazon SageMaker Inference Recommender model that matches your model. */
|
|
90224
|
-
NearestModelName?: string;
|
|
90225
|
-
});
|
|
90226
|
-
}
|
|
90227
|
-
|
|
90228
91300
|
export declare class ModelPackageCreator {
|
|
90229
91301
|
constructor(props: {
|
|
90230
91302
|
/** The name of the user's profile in Studio */
|
|
@@ -91836,6 +92908,34 @@ export declare class NetworkBandwidthGbps {
|
|
|
91836
92908
|
});
|
|
91837
92909
|
}
|
|
91838
92910
|
|
|
92911
|
+
export declare class NetworkConnector_Config {
|
|
92912
|
+
constructor(props: {
|
|
92913
|
+
VpcEgressConfiguration: NetworkConnector_VpcEgressConfiguration;
|
|
92914
|
+
});
|
|
92915
|
+
}
|
|
92916
|
+
|
|
92917
|
+
export declare class NetworkConnector_Tag {
|
|
92918
|
+
constructor(props: {
|
|
92919
|
+
/** The key name of the tag. */
|
|
92920
|
+
Key: string;
|
|
92921
|
+
/** The value for the tag. */
|
|
92922
|
+
Value?: string;
|
|
92923
|
+
});
|
|
92924
|
+
}
|
|
92925
|
+
|
|
92926
|
+
export declare class NetworkConnector_VpcEgressConfiguration {
|
|
92927
|
+
constructor(props: {
|
|
92928
|
+
/** The types of Lambda compute resources that can use this connector. Currently, only MicroVm is supported. */
|
|
92929
|
+
AssociatedComputeResourceTypes: "MicroVm"[];
|
|
92930
|
+
/** The IDs of the VPC subnets where Lambda provisions elastic network interfaces (ENIs). Specify 1 to 16 subnets. All subnets must be in the same VPC. */
|
|
92931
|
+
SubnetIds: string[];
|
|
92932
|
+
/** The network protocol for the connector. Specify IPv4 for IPv4-only networking, or DualStack for both IPv4 and IPv6. */
|
|
92933
|
+
NetworkProtocol?: "DualStack" | "IPv4";
|
|
92934
|
+
/** The IDs of the VPC security groups to attach to the ENIs. Specify 0 to 5 security groups. All security groups must be in the same VPC as the subnets. */
|
|
92935
|
+
SecurityGroupIds?: string[];
|
|
92936
|
+
});
|
|
92937
|
+
}
|
|
92938
|
+
|
|
91839
92939
|
export declare class NetworkFabricConfiguration {
|
|
91840
92940
|
constructor(props: {
|
|
91841
92941
|
Edition: string;
|
|
@@ -92366,6 +93466,26 @@ export declare class NetworkManagerLink_Tag {
|
|
|
92366
93466
|
});
|
|
92367
93467
|
}
|
|
92368
93468
|
|
|
93469
|
+
export declare class NetworkManagerSite_Location {
|
|
93470
|
+
constructor(props: {
|
|
93471
|
+
/** The physical address. */
|
|
93472
|
+
Address?: string;
|
|
93473
|
+
/** The latitude. */
|
|
93474
|
+
Latitude?: string;
|
|
93475
|
+
/** The longitude. */
|
|
93476
|
+
Longitude?: string;
|
|
93477
|
+
});
|
|
93478
|
+
}
|
|
93479
|
+
|
|
93480
|
+
export declare class NetworkManagerSite_Tag {
|
|
93481
|
+
constructor(props: {
|
|
93482
|
+
/** 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 -. */
|
|
93483
|
+
Key: string;
|
|
93484
|
+
/** 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 -. */
|
|
93485
|
+
Value: string;
|
|
93486
|
+
});
|
|
93487
|
+
}
|
|
93488
|
+
|
|
92369
93489
|
export declare class NetworkPerformanceOptions {
|
|
92370
93490
|
constructor(props: {
|
|
92371
93491
|
/** Specify the bandwidth weighting option to boost the associated type of baseline bandwidth, as follows:
|
|
@@ -92415,13 +93535,6 @@ export declare class NielsenConfiguration {
|
|
|
92415
93535
|
});
|
|
92416
93536
|
}
|
|
92417
93537
|
|
|
92418
|
-
export declare class Node_NodeConfiguration {
|
|
92419
|
-
constructor(props: {
|
|
92420
|
-
AvailabilityZone: string;
|
|
92421
|
-
InstanceType: string;
|
|
92422
|
-
});
|
|
92423
|
-
}
|
|
92424
|
-
|
|
92425
93538
|
export declare class NodeConfig {
|
|
92426
93539
|
constructor(props: {
|
|
92427
93540
|
Count?: number;
|
|
@@ -92555,6 +93668,17 @@ export declare class NodeGroupConfiguration {
|
|
|
92555
93668
|
});
|
|
92556
93669
|
}
|
|
92557
93670
|
|
|
93671
|
+
export declare class NodeInterfaceMapping {
|
|
93672
|
+
constructor(props: {
|
|
93673
|
+
/** The logical name for this interface. */
|
|
93674
|
+
LogicalInterfaceName?: string;
|
|
93675
|
+
/** The network interface mode. */
|
|
93676
|
+
NetworkInterfaceMode?: "BRIDGE" | "NAT";
|
|
93677
|
+
/** The physical interface name. */
|
|
93678
|
+
PhysicalInterfaceName?: string;
|
|
93679
|
+
});
|
|
93680
|
+
}
|
|
93681
|
+
|
|
92558
93682
|
export declare class NodeOption {
|
|
92559
93683
|
constructor(props: {
|
|
92560
93684
|
NodeConfig?: OpenSearchServiceDomain_NodeConfig;
|
|
@@ -95035,6 +96159,43 @@ export declare class OutpostResolver_Tag {
|
|
|
95035
96159
|
});
|
|
95036
96160
|
}
|
|
95037
96161
|
|
|
96162
|
+
export declare class OutpostsSite_Address {
|
|
96163
|
+
constructor(props: {
|
|
96164
|
+
AddressLine1: string;
|
|
96165
|
+
City: string;
|
|
96166
|
+
ContactName: string;
|
|
96167
|
+
ContactPhoneNumber: string;
|
|
96168
|
+
CountryCode: string;
|
|
96169
|
+
PostalCode: string;
|
|
96170
|
+
StateOrRegion: string;
|
|
96171
|
+
AddressLine2?: string;
|
|
96172
|
+
AddressLine3?: string;
|
|
96173
|
+
DistrictOrCounty?: string;
|
|
96174
|
+
Municipality?: string;
|
|
96175
|
+
});
|
|
96176
|
+
}
|
|
96177
|
+
|
|
96178
|
+
export declare class OutpostsSite_RackPhysicalProperties {
|
|
96179
|
+
constructor(props: {
|
|
96180
|
+
FiberOpticCableType?: "MULTI_MODE" | "SINGLE_MODE";
|
|
96181
|
+
MaximumSupportedWeightLbs?: "MAX_1400_LBS" | "MAX_1600_LBS" | "MAX_1800_LBS" | "MAX_2000_LBS" | "NO_LIMIT";
|
|
96182
|
+
OpticalStandard?: "OPTIC_1000BASE_LX" | "OPTIC_1000BASE_SX" | "OPTIC_100GBASE_CWDM4" | "OPTIC_100GBASE_LR4" | "OPTIC_100GBASE_SR4" | "OPTIC_100G_PSM4_MSA" | "OPTIC_10GBASE_IR" | "OPTIC_10GBASE_LR" | "OPTIC_10GBASE_SR" | "OPTIC_40GBASE_ESR" | "OPTIC_40GBASE_IR4_LR4L" | "OPTIC_40GBASE_LR4" | "OPTIC_40GBASE_SR";
|
|
96183
|
+
PowerConnector?: "AH530P7W" | "AH532P6W" | "CS8365C" | "IEC309" | "L6_30P";
|
|
96184
|
+
PowerDrawKva?: "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA" | "POWER_5_KVA";
|
|
96185
|
+
PowerFeedDrop?: "ABOVE_RACK" | "BELOW_RACK";
|
|
96186
|
+
PowerPhase?: "SINGLE_PHASE" | "THREE_PHASE";
|
|
96187
|
+
UplinkCount?: "UPLINK_COUNT_1" | "UPLINK_COUNT_12" | "UPLINK_COUNT_16" | "UPLINK_COUNT_2" | "UPLINK_COUNT_3" | "UPLINK_COUNT_4" | "UPLINK_COUNT_5" | "UPLINK_COUNT_6" | "UPLINK_COUNT_7" | "UPLINK_COUNT_8";
|
|
96188
|
+
UplinkGbps?: "UPLINK_100G" | "UPLINK_10G" | "UPLINK_1G" | "UPLINK_40G";
|
|
96189
|
+
});
|
|
96190
|
+
}
|
|
96191
|
+
|
|
96192
|
+
export declare class OutpostsSite_Tag {
|
|
96193
|
+
constructor(props: {
|
|
96194
|
+
Key: string;
|
|
96195
|
+
Value: string;
|
|
96196
|
+
});
|
|
96197
|
+
}
|
|
96198
|
+
|
|
95038
96199
|
export declare class OutputArtifact {
|
|
95039
96200
|
constructor(props: {
|
|
95040
96201
|
/** The name of the output of an artifact, such as "My App". */
|
|
@@ -95502,6 +96663,14 @@ export declare class ParameterObject {
|
|
|
95502
96663
|
});
|
|
95503
96664
|
}
|
|
95504
96665
|
|
|
96666
|
+
export declare class ParameterRange {
|
|
96667
|
+
constructor(props: {
|
|
96668
|
+
CategoricalParameterRangeSpecification?: Record<string, unknown>;
|
|
96669
|
+
ContinuousParameterRangeSpecification?: Record<string, unknown>;
|
|
96670
|
+
IntegerParameterRangeSpecification?: Record<string, unknown>;
|
|
96671
|
+
});
|
|
96672
|
+
}
|
|
96673
|
+
|
|
95505
96674
|
export declare class ParametersInCacheKeyAndForwardedToOrigin {
|
|
95506
96675
|
constructor(props: {
|
|
95507
96676
|
/** An object that determines whether any cookies in viewer requests (and if so, which cookies) are included in the cache key and in requests that CloudFront sends to the origin. */
|
|
@@ -101516,6 +102685,20 @@ export declare class QuotaShareResourceSharingConfiguration {
|
|
|
101516
102685
|
});
|
|
101517
102686
|
}
|
|
101518
102687
|
|
|
102688
|
+
export declare class RackPhysicalProperties {
|
|
102689
|
+
constructor(props: {
|
|
102690
|
+
FiberOpticCableType?: "MULTI_MODE" | "SINGLE_MODE";
|
|
102691
|
+
MaximumSupportedWeightLbs?: "MAX_1400_LBS" | "MAX_1600_LBS" | "MAX_1800_LBS" | "MAX_2000_LBS" | "NO_LIMIT";
|
|
102692
|
+
OpticalStandard?: "OPTIC_1000BASE_LX" | "OPTIC_1000BASE_SX" | "OPTIC_100GBASE_CWDM4" | "OPTIC_100GBASE_LR4" | "OPTIC_100GBASE_SR4" | "OPTIC_100G_PSM4_MSA" | "OPTIC_10GBASE_IR" | "OPTIC_10GBASE_LR" | "OPTIC_10GBASE_SR" | "OPTIC_40GBASE_ESR" | "OPTIC_40GBASE_IR4_LR4L" | "OPTIC_40GBASE_LR4" | "OPTIC_40GBASE_SR";
|
|
102693
|
+
PowerConnector?: "AH530P7W" | "AH532P6W" | "CS8365C" | "IEC309" | "L6_30P";
|
|
102694
|
+
PowerDrawKva?: "POWER_10_KVA" | "POWER_15_KVA" | "POWER_30_KVA" | "POWER_5_KVA";
|
|
102695
|
+
PowerFeedDrop?: "ABOVE_RACK" | "BELOW_RACK";
|
|
102696
|
+
PowerPhase?: "SINGLE_PHASE" | "THREE_PHASE";
|
|
102697
|
+
UplinkCount?: "UPLINK_COUNT_1" | "UPLINK_COUNT_12" | "UPLINK_COUNT_16" | "UPLINK_COUNT_2" | "UPLINK_COUNT_3" | "UPLINK_COUNT_4" | "UPLINK_COUNT_5" | "UPLINK_COUNT_6" | "UPLINK_COUNT_7" | "UPLINK_COUNT_8";
|
|
102698
|
+
UplinkGbps?: "UPLINK_100G" | "UPLINK_10G" | "UPLINK_1G" | "UPLINK_40G";
|
|
102699
|
+
});
|
|
102700
|
+
}
|
|
102701
|
+
|
|
101519
102702
|
export declare class RAMPermission_Tag {
|
|
101520
102703
|
constructor(props: {
|
|
101521
102704
|
/** 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 -. */
|
|
@@ -102299,6 +103482,15 @@ export declare class RecurrenceSettings {
|
|
|
102299
103482
|
});
|
|
102300
103483
|
}
|
|
102301
103484
|
|
|
103485
|
+
export declare class RecurringCharge {
|
|
103486
|
+
constructor(props: {
|
|
103487
|
+
/** The amount of the recurring charge. */
|
|
103488
|
+
RecurringChargeAmount?: number;
|
|
103489
|
+
/** The frequency of the recurring charge. */
|
|
103490
|
+
RecurringChargeFrequency?: string;
|
|
103491
|
+
});
|
|
103492
|
+
}
|
|
103493
|
+
|
|
102302
103494
|
export declare class RedactionPlaceHolder {
|
|
102303
103495
|
constructor(props: {
|
|
102304
103496
|
RedactionPlaceHolderType: DataProtectionSettings_RedactionPlaceHolderType;
|
|
@@ -102794,6 +103986,15 @@ export declare class RegionalParameter {
|
|
|
102794
103986
|
});
|
|
102795
103987
|
}
|
|
102796
103988
|
|
|
103989
|
+
export declare class RegionConfiguration {
|
|
103990
|
+
constructor(props: {
|
|
103991
|
+
/** The scope of the control. */
|
|
103992
|
+
Scope: "GLOBAL" | "REGIONAL";
|
|
103993
|
+
/** Regions in which the control is available to be deployed. */
|
|
103994
|
+
DeployableRegions?: string[];
|
|
103995
|
+
});
|
|
103996
|
+
}
|
|
103997
|
+
|
|
102797
103998
|
export declare class RegistrationConfig {
|
|
102798
103999
|
constructor(props: {
|
|
102799
104000
|
RoleArn?: string;
|
|
@@ -103280,8 +104481,10 @@ export declare class Replicator_KafkaCluster {
|
|
|
103280
104481
|
|
|
103281
104482
|
export declare class Replicator_KafkaClusterClientAuthentication {
|
|
103282
104483
|
constructor(props: {
|
|
104484
|
+
/** Details for mTLS client authentication. */
|
|
104485
|
+
MTLS?: Replicator_KafkaClusterMtlsAuthentication;
|
|
103283
104486
|
/** Details for SASL/SCRAM client authentication. */
|
|
103284
|
-
SaslScram
|
|
104487
|
+
SaslScram?: Replicator_KafkaClusterSaslScramAuthentication;
|
|
103285
104488
|
});
|
|
103286
104489
|
}
|
|
103287
104490
|
|
|
@@ -103303,6 +104506,13 @@ export declare class Replicator_KafkaClusterEncryptionInTransit {
|
|
|
103303
104506
|
});
|
|
103304
104507
|
}
|
|
103305
104508
|
|
|
104509
|
+
export declare class Replicator_KafkaClusterMtlsAuthentication {
|
|
104510
|
+
constructor(props: {
|
|
104511
|
+
/** The Amazon Resource Name (ARN) of the Secrets Manager secret. */
|
|
104512
|
+
SecretArn: string;
|
|
104513
|
+
});
|
|
104514
|
+
}
|
|
104515
|
+
|
|
103306
104516
|
export declare class Replicator_KafkaClusterSaslScramAuthentication {
|
|
103307
104517
|
constructor(props: {
|
|
103308
104518
|
/** The SASL/SCRAM authentication mechanism. */
|
|
@@ -103615,6 +104825,24 @@ export declare class ReservedCapacityOptionsRequest {
|
|
|
103615
104825
|
});
|
|
103616
104826
|
}
|
|
103617
104827
|
|
|
104828
|
+
export declare class ReservedDBInstance_RecurringCharge {
|
|
104829
|
+
constructor(props: {
|
|
104830
|
+
/** The amount of the recurring charge. */
|
|
104831
|
+
RecurringChargeAmount?: number;
|
|
104832
|
+
/** The frequency of the recurring charge. */
|
|
104833
|
+
RecurringChargeFrequency?: string;
|
|
104834
|
+
});
|
|
104835
|
+
}
|
|
104836
|
+
|
|
104837
|
+
export declare class ReservedDBInstance_Tag {
|
|
104838
|
+
constructor(props: {
|
|
104839
|
+
/** The key of the tag. */
|
|
104840
|
+
Key: string;
|
|
104841
|
+
/** The value of the tag. */
|
|
104842
|
+
Value: string;
|
|
104843
|
+
});
|
|
104844
|
+
}
|
|
104845
|
+
|
|
103618
104846
|
export declare class ReshardingConfiguration {
|
|
103619
104847
|
constructor(props: {
|
|
103620
104848
|
/** Unique identifier for the Node Group. This is either auto-generated by ElastiCache (4-digit id) or a user supplied id. */
|
|
@@ -104219,6 +105447,12 @@ export declare class ResourceRetentionPolicy {
|
|
|
104219
105447
|
});
|
|
104220
105448
|
}
|
|
104221
105449
|
|
|
105450
|
+
export declare class Resources {
|
|
105451
|
+
constructor(props: {
|
|
105452
|
+
MinimumMemoryInMiB: number;
|
|
105453
|
+
});
|
|
105454
|
+
}
|
|
105455
|
+
|
|
104222
105456
|
export declare class ResourceServerScopeType {
|
|
104223
105457
|
constructor(props: {
|
|
104224
105458
|
ScopeDescription: string;
|
|
@@ -107203,6 +108437,13 @@ export declare class SageMakerEndpoint_VariantProperty {
|
|
|
107203
108437
|
});
|
|
107204
108438
|
}
|
|
107205
108439
|
|
|
108440
|
+
export declare class SageMakerHub_Tag {
|
|
108441
|
+
constructor(props: {
|
|
108442
|
+
Key: string;
|
|
108443
|
+
Value: string;
|
|
108444
|
+
});
|
|
108445
|
+
}
|
|
108446
|
+
|
|
107206
108447
|
export declare class SageMakerImage_Tag {
|
|
107207
108448
|
constructor(props: {
|
|
107208
108449
|
/** 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 -. */
|
|
@@ -108765,6 +110006,17 @@ export declare class SdiSource_Tags {
|
|
|
108765
110006
|
});
|
|
108766
110007
|
}
|
|
108767
110008
|
|
|
110009
|
+
export declare class SdiSourceMapping {
|
|
110010
|
+
constructor(props: {
|
|
110011
|
+
/** The card number. */
|
|
110012
|
+
CardNumber?: number;
|
|
110013
|
+
/** The channel number. */
|
|
110014
|
+
ChannelNumber?: number;
|
|
110015
|
+
/** The SDI source. */
|
|
110016
|
+
SdiSource?: string;
|
|
110017
|
+
});
|
|
110018
|
+
}
|
|
110019
|
+
|
|
108768
110020
|
export declare class SearchFilter {
|
|
108769
110021
|
constructor(props: {
|
|
108770
110022
|
FilterString: string;
|
|
@@ -111116,26 +112368,6 @@ export declare class SingularSourceProperties {
|
|
|
111116
112368
|
});
|
|
111117
112369
|
}
|
|
111118
112370
|
|
|
111119
|
-
export declare class Site_Location {
|
|
111120
|
-
constructor(props: {
|
|
111121
|
-
/** The physical address. */
|
|
111122
|
-
Address?: string;
|
|
111123
|
-
/** The latitude. */
|
|
111124
|
-
Latitude?: string;
|
|
111125
|
-
/** The longitude. */
|
|
111126
|
-
Longitude?: string;
|
|
111127
|
-
});
|
|
111128
|
-
}
|
|
111129
|
-
|
|
111130
|
-
export declare class Site_Tag {
|
|
111131
|
-
constructor(props: {
|
|
111132
|
-
/** 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 -. */
|
|
111133
|
-
Key: string;
|
|
111134
|
-
/** 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 -. */
|
|
111135
|
-
Value: string;
|
|
111136
|
-
});
|
|
111137
|
-
}
|
|
111138
|
-
|
|
111139
112371
|
export declare class SiteToSiteVpnAttachment_ProposedNetworkFunctionGroupChange {
|
|
111140
112372
|
constructor(props: {
|
|
111141
112373
|
/** The rule number in the policy document that applies to this change. */
|
|
@@ -117371,6 +118603,19 @@ export declare class TrainingMetrics {
|
|
|
117371
118603
|
});
|
|
117372
118604
|
}
|
|
117373
118605
|
|
|
118606
|
+
export declare class TrainingSpecification {
|
|
118607
|
+
constructor(props: {
|
|
118608
|
+
SupportedTrainingInstanceTypes: string[];
|
|
118609
|
+
TrainingChannels: Algorithm_ChannelSpecification[];
|
|
118610
|
+
TrainingImage: string;
|
|
118611
|
+
MetricDefinitions?: Algorithm_MetricDefinition[];
|
|
118612
|
+
SupportedHyperParameters?: Algorithm_HyperParameterSpecification[];
|
|
118613
|
+
SupportedTuningJobObjectiveMetrics?: Algorithm_HyperParameterTuningJobObjective[];
|
|
118614
|
+
SupportsDistributedTraining?: boolean;
|
|
118615
|
+
TrainingImageDigest?: string;
|
|
118616
|
+
});
|
|
118617
|
+
}
|
|
118618
|
+
|
|
117374
118619
|
export declare class TransferCertificate_Tag {
|
|
117375
118620
|
constructor(props: {
|
|
117376
118621
|
/** 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 -. */
|
|
@@ -120131,6 +121376,19 @@ export declare class VpcDestinationProperties {
|
|
|
120131
121376
|
});
|
|
120132
121377
|
}
|
|
120133
121378
|
|
|
121379
|
+
export declare class VpcEgressConfiguration {
|
|
121380
|
+
constructor(props: {
|
|
121381
|
+
/** The types of Lambda compute resources that can use this connector. Currently, only MicroVm is supported. */
|
|
121382
|
+
AssociatedComputeResourceTypes: "MicroVm"[];
|
|
121383
|
+
/** The IDs of the VPC subnets where Lambda provisions elastic network interfaces (ENIs). Specify 1 to 16 subnets. All subnets must be in the same VPC. */
|
|
121384
|
+
SubnetIds: string[];
|
|
121385
|
+
/** The network protocol for the connector. Specify IPv4 for IPv4-only networking, or DualStack for both IPv4 and IPv6. */
|
|
121386
|
+
NetworkProtocol?: "DualStack" | "IPv4";
|
|
121387
|
+
/** The IDs of the VPC security groups to attach to the ENIs. Specify 0 to 5 security groups. All security groups must be in the same VPC as the subnets. */
|
|
121388
|
+
SecurityGroupIds?: string[];
|
|
121389
|
+
});
|
|
121390
|
+
}
|
|
121391
|
+
|
|
120134
121392
|
export declare class VPCEncryptionControl_ResourceExclusions {
|
|
120135
121393
|
constructor(props: {
|
|
120136
121394
|
EgressOnlyInternetGateway?: VPCEncryptionControl_VpcEncryptionControlExclusion;
|
|
@@ -124849,24 +126107,34 @@ export type BedrockDataSource_ContextEnrichmentType = "BEDROCK_FOUNDATION_MODEL"
|
|
|
124849
126107
|
|
|
124850
126108
|
export type BedrockDataSource_DataDeletionPolicy = "DELETE" | "RETAIN";
|
|
124851
126109
|
|
|
124852
|
-
export type BedrockDataSource_DataSourceStatus =
|
|
126110
|
+
export type BedrockDataSource_DataSourceStatus =
|
|
126111
|
+
| "AVAILABLE"
|
|
126112
|
+
| "CREATING"
|
|
126113
|
+
| "DELETE_UNSUCCESSFUL"
|
|
126114
|
+
| "DELETING"
|
|
126115
|
+
| "FAILED"
|
|
126116
|
+
| "UPDATING";
|
|
124853
126117
|
|
|
124854
126118
|
export type BedrockDataSource_DataSourceType =
|
|
124855
126119
|
| "CONFLUENCE"
|
|
124856
126120
|
| "CUSTOM"
|
|
126121
|
+
| "MANAGED_KNOWLEDGE_BASE_CONNECTOR"
|
|
124857
126122
|
| "REDSHIFT_METADATA"
|
|
124858
126123
|
| "S3"
|
|
124859
126124
|
| "SALESFORCE"
|
|
124860
126125
|
| "SHAREPOINT"
|
|
124861
126126
|
| "WEB";
|
|
124862
126127
|
|
|
126128
|
+
export type BedrockDataSource_EnabledOrDisabledState = "DISABLED" | "ENABLED";
|
|
126129
|
+
|
|
124863
126130
|
export type BedrockDataSource_EnrichmentStrategyMethod = "CHUNK_ENTITY_EXTRACTION";
|
|
124864
126131
|
|
|
124865
126132
|
export type BedrockDataSource_ParsingModality = "MULTIMODAL";
|
|
124866
126133
|
|
|
124867
126134
|
export type BedrockDataSource_ParsingStrategy =
|
|
124868
126135
|
| "BEDROCK_DATA_AUTOMATION"
|
|
124869
|
-
| "BEDROCK_FOUNDATION_MODEL"
|
|
126136
|
+
| "BEDROCK_FOUNDATION_MODEL"
|
|
126137
|
+
| "SMART_PARSING";
|
|
124870
126138
|
|
|
124871
126139
|
export type BedrockDataSource_WebScopeType = "HOST_ONLY" | "SUBDOMAINS";
|
|
124872
126140
|
|
|
@@ -124909,6 +126177,8 @@ export type BedrockFlow_SupportedLanguages = "Python_3";
|
|
|
124909
126177
|
|
|
124910
126178
|
export type BedrockFlow_VectorSearchRerankingConfigurationType = "BEDROCK_RERANKING_MODEL";
|
|
124911
126179
|
|
|
126180
|
+
export type BedrockKnowledgeBase_EmbeddingModelType = "CUSTOM" | "MANAGED";
|
|
126181
|
+
|
|
124912
126182
|
export type BedrockKnowledgeBase_InclusionType = "EXCLUDE" | "INCLUDE";
|
|
124913
126183
|
|
|
124914
126184
|
export type BedrockKnowledgeBase_KnowledgeBaseStatus =
|
|
@@ -124917,6 +126187,7 @@ export type BedrockKnowledgeBase_KnowledgeBaseStatus =
|
|
|
124917
126187
|
| "DELETE_UNSUCCESSFUL"
|
|
124918
126188
|
| "DELETING"
|
|
124919
126189
|
| "FAILED"
|
|
126190
|
+
| "UPDATE_UNSUCCESSFUL"
|
|
124920
126191
|
| "UPDATING";
|
|
124921
126192
|
|
|
124922
126193
|
export type BedrockKnowledgeBase_KnowledgeBaseStorageType =
|
|
@@ -124928,7 +126199,7 @@ export type BedrockKnowledgeBase_KnowledgeBaseStorageType =
|
|
|
124928
126199
|
| "RDS"
|
|
124929
126200
|
| "S3_VECTORS";
|
|
124930
126201
|
|
|
124931
|
-
export type BedrockKnowledgeBase_KnowledgeBaseType = "KENDRA" | "SQL" | "VECTOR";
|
|
126202
|
+
export type BedrockKnowledgeBase_KnowledgeBaseType = "KENDRA" | "MANAGED" | "SQL" | "VECTOR";
|
|
124932
126203
|
|
|
124933
126204
|
export type BedrockKnowledgeBase_QueryEngineType = "REDSHIFT";
|
|
124934
126205
|
|
|
@@ -127131,6 +128402,24 @@ export type MediaLiveCluster_ClusterType =
|
|
|
127131
128402
|
| "OUTPOSTS_RACK"
|
|
127132
128403
|
| "OUTPOSTS_SERVER";
|
|
127133
128404
|
|
|
128405
|
+
export type MediaLiveNode_NodeConnectionState = "CONNECTED" | "DISCONNECTED";
|
|
128406
|
+
|
|
128407
|
+
export type MediaLiveNode_NodeRole = "ACTIVE" | "BACKUP";
|
|
128408
|
+
|
|
128409
|
+
export type MediaLiveNode_NodeState =
|
|
128410
|
+
| "ACTIVATION_FAILED"
|
|
128411
|
+
| "ACTIVE"
|
|
128412
|
+
| "CREATED"
|
|
128413
|
+
| "DEREGISTERED"
|
|
128414
|
+
| "DEREGISTERING"
|
|
128415
|
+
| "DEREGISTRATION_FAILED"
|
|
128416
|
+
| "DRAINING"
|
|
128417
|
+
| "IN_USE"
|
|
128418
|
+
| "READY"
|
|
128419
|
+
| "READY_TO_ACTIVATE"
|
|
128420
|
+
| "REGISTERING"
|
|
128421
|
+
| "REGISTRATION_FAILED";
|
|
128422
|
+
|
|
127134
128423
|
export type MediaPackageOriginEndpoint_AdsOnDeliveryRestrictions =
|
|
127135
128424
|
| "BOTH"
|
|
127136
128425
|
| "NONE"
|
|
@@ -127274,6 +128563,19 @@ export type MemoryDBCluster_SupportedNetworkTypes = "dual_stack" | "ipv4" | "ipv
|
|
|
127274
128563
|
|
|
127275
128564
|
export type MessageTemplate_ChannelSubtype = "EMAIL" | "SMS";
|
|
127276
128565
|
|
|
128566
|
+
export type MicrovmImage_HookState = "DISABLED" | "ENABLED";
|
|
128567
|
+
|
|
128568
|
+
export type MicrovmImage_MicrovmImageState =
|
|
128569
|
+
| "CREATED"
|
|
128570
|
+
| "CREATE_FAILED"
|
|
128571
|
+
| "CREATING"
|
|
128572
|
+
| "DELETED"
|
|
128573
|
+
| "DELETE_FAILED"
|
|
128574
|
+
| "DELETING"
|
|
128575
|
+
| "UPDATED"
|
|
128576
|
+
| "UPDATE_FAILED"
|
|
128577
|
+
| "UPDATING";
|
|
128578
|
+
|
|
127277
128579
|
export type ModelCard_RiskRating = "High" | "Low" | "Medium" | "Unknown";
|
|
127278
128580
|
|
|
127279
128581
|
export type ModelManifest_ManifestStatus = "ACTIVE" | "DRAFT";
|
|
@@ -127348,6 +128650,14 @@ export type NetworkAnalyzerConfiguration_LogLevel = "DISABLED" | "ERROR" | "INFO
|
|
|
127348
128650
|
|
|
127349
128651
|
export type NetworkAnalyzerConfiguration_WirelessDeviceFrameInfo = "DISABLED" | "ENABLED";
|
|
127350
128652
|
|
|
128653
|
+
export type NetworkConnector_State =
|
|
128654
|
+
| "ACTIVE"
|
|
128655
|
+
| "DELETE_FAILED"
|
|
128656
|
+
| "DELETING"
|
|
128657
|
+
| "FAILED"
|
|
128658
|
+
| "INACTIVE"
|
|
128659
|
+
| "PENDING";
|
|
128660
|
+
|
|
127351
128661
|
export type NetworkFirewallRuleGroup_GeneratedRulesType =
|
|
127352
128662
|
| "ALERTLIST"
|
|
127353
128663
|
| "ALLOWLIST"
|