@intentius/chant-lexicon-aws 0.13.0 → 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 +81 -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 +1145 -124
- package/dist/types/index.d.ts +1142 -156
- package/package.json +2 -2
- package/src/generated/index.d.ts +1142 -156
- package/src/generated/index.ts +81 -11
- package/src/generated/lexicon-aws.json +1145 -124
package/dist/types/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. */
|
|
@@ -4064,27 +4154,44 @@ export declare class BudgetsAction {
|
|
|
4064
4154
|
readonly ActionId: string;
|
|
4065
4155
|
}
|
|
4066
4156
|
|
|
4067
|
-
export declare class
|
|
4157
|
+
export declare class BuildBatch {
|
|
4068
4158
|
constructor(props: {
|
|
4069
|
-
/** The Amazon Resource Name (ARN)
|
|
4070
|
-
|
|
4071
|
-
/**
|
|
4072
|
-
|
|
4073
|
-
/**
|
|
4074
|
-
|
|
4075
|
-
/**
|
|
4076
|
-
|
|
4077
|
-
/**
|
|
4078
|
-
|
|
4079
|
-
/**
|
|
4080
|
-
|
|
4081
|
-
/**
|
|
4082
|
-
|
|
4083
|
-
/**
|
|
4084
|
-
|
|
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;
|
|
4085
4183
|
}, attributes?: CFResourceAttributes);
|
|
4086
|
-
readonly
|
|
4087
|
-
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;
|
|
4088
4195
|
}
|
|
4089
4196
|
|
|
4090
4197
|
export declare class CACertificate {
|
|
@@ -5451,6 +5558,52 @@ export declare class CodeArtifactRepository {
|
|
|
5451
5558
|
readonly Name: string;
|
|
5452
5559
|
}
|
|
5453
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
|
+
|
|
5454
5607
|
export declare class CodeBuildFleet {
|
|
5455
5608
|
constructor(props: {
|
|
5456
5609
|
Arn?: string;
|
|
@@ -5818,6 +5971,35 @@ export declare class Command {
|
|
|
5818
5971
|
readonly CommandArn: string;
|
|
5819
5972
|
}
|
|
5820
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
|
+
|
|
5821
6003
|
export declare class ComponentType {
|
|
5822
6004
|
constructor(props: {
|
|
5823
6005
|
/** The ID of the component type. */
|
|
@@ -7214,6 +7396,42 @@ export declare class ContinuousDeploymentPolicy {
|
|
|
7214
7396
|
readonly LastModifiedTime: string;
|
|
7215
7397
|
}
|
|
7216
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
|
+
|
|
7217
7435
|
export declare class ControlPanel {
|
|
7218
7436
|
constructor(props: {
|
|
7219
7437
|
/** The name of the control panel. You can use any non-white space character in the name. */
|
|
@@ -8070,6 +8288,30 @@ export declare class DataCellsFilter {
|
|
|
8070
8288
|
}, attributes?: CFResourceAttributes);
|
|
8071
8289
|
}
|
|
8072
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
|
+
|
|
8073
8315
|
export declare class DataflowEndpointGroup {
|
|
8074
8316
|
constructor(props: {
|
|
8075
8317
|
EndpointDetails: DataflowEndpointGroup_EndpointDetails[];
|
|
@@ -11424,6 +11666,30 @@ export declare class DSQLCluster {
|
|
|
11424
11666
|
readonly VpcEndpointServiceName: string;
|
|
11425
11667
|
}
|
|
11426
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
|
+
|
|
11427
11693
|
export declare class EC2CapacityReservation {
|
|
11428
11694
|
constructor(props: {
|
|
11429
11695
|
InstanceCount: number;
|
|
@@ -14017,6 +14283,24 @@ export declare class Firewall {
|
|
|
14017
14283
|
readonly TransitGatewayAttachmentId: string;
|
|
14018
14284
|
}
|
|
14019
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
|
+
|
|
14020
14304
|
export declare class FirewallPolicy {
|
|
14021
14305
|
constructor(props: {
|
|
14022
14306
|
FirewallPolicy: FirewallPolicy_FirewallPolicy;
|
|
@@ -14942,6 +15226,29 @@ export declare class GameLiftAlias {
|
|
|
14942
15226
|
readonly AliasId: string;
|
|
14943
15227
|
}
|
|
14944
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
|
+
|
|
14945
15252
|
export declare class GameLiftFleet {
|
|
14946
15253
|
constructor(props: {
|
|
14947
15254
|
/** A descriptive label that is associated with a fleet. Fleet names do not need to be unique. */
|
|
@@ -16212,24 +16519,6 @@ export declare class HttpNamespace {
|
|
|
16212
16519
|
readonly Id: string;
|
|
16213
16520
|
}
|
|
16214
16521
|
|
|
16215
|
-
export declare class Hub {
|
|
16216
|
-
constructor(props: {
|
|
16217
|
-
/** An ARN is automatically created for the customer. */
|
|
16218
|
-
ARN?: string;
|
|
16219
|
-
/** Whether to automatically enable new controls when they are added to standards that are enabled */
|
|
16220
|
-
AutoEnableControls?: boolean;
|
|
16221
|
-
/** 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. */
|
|
16222
|
-
ControlFindingGenerator?: string;
|
|
16223
|
-
/** Whether to enable the security standards that Security Hub has designated as automatically enabled. */
|
|
16224
|
-
EnableDefaultStandards?: boolean;
|
|
16225
|
-
/** The date and time when Security Hub was enabled in the account. */
|
|
16226
|
-
SubscribedAt?: string;
|
|
16227
|
-
Tags?: Record<string, unknown>;
|
|
16228
|
-
}, attributes?: CFResourceAttributes);
|
|
16229
|
-
readonly ARN: string;
|
|
16230
|
-
readonly SubscribedAt: string;
|
|
16231
|
-
}
|
|
16232
|
-
|
|
16233
16522
|
export declare class HubV2 {
|
|
16234
16523
|
constructor(props: {
|
|
16235
16524
|
/** The Amazon Resource Name of the Security Hub V2 resource. */
|
|
@@ -17830,6 +18119,22 @@ export declare class IoTFleetWiseFleet {
|
|
|
17830
18119
|
readonly LastModificationTime: string;
|
|
17831
18120
|
}
|
|
17832
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
|
+
|
|
17833
18138
|
export declare class IoTJobTemplate {
|
|
17834
18139
|
constructor(props: {
|
|
17835
18140
|
/** A description of the Job Template. */
|
|
@@ -21059,6 +21364,18 @@ export declare class ManagedBlockchainMember {
|
|
|
21059
21364
|
readonly MemberId: string;
|
|
21060
21365
|
}
|
|
21061
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
|
+
|
|
21062
21379
|
export declare class ManagedLoginBranding {
|
|
21063
21380
|
constructor(props: {
|
|
21064
21381
|
UserPoolId: string;
|
|
@@ -21429,6 +21746,38 @@ export declare class MediaLiveInput {
|
|
|
21429
21746
|
readonly Id: string;
|
|
21430
21747
|
}
|
|
21431
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
|
+
|
|
21432
21781
|
export declare class MediaPackageAsset {
|
|
21433
21782
|
constructor(props: {
|
|
21434
21783
|
/** The unique identifier for the Asset. */
|
|
@@ -22325,6 +22674,34 @@ export declare class ModelCard {
|
|
|
22325
22674
|
readonly ModelCardVersion: number;
|
|
22326
22675
|
}
|
|
22327
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
|
+
|
|
22328
22705
|
export declare class ModelExplainabilityJobDefinition {
|
|
22329
22706
|
constructor(props: {
|
|
22330
22707
|
JobResources: ModelExplainabilityJobDefinition_MonitoringResources;
|
|
@@ -23560,6 +23937,31 @@ export declare class NetworkManagerLink {
|
|
|
23560
23937
|
readonly State: string;
|
|
23561
23938
|
}
|
|
23562
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
|
+
|
|
23563
23965
|
export declare class NetworkPerformanceMetricSubscription {
|
|
23564
23966
|
constructor(props: {
|
|
23565
23967
|
/** The target Region or Availability Zone for the metric to subscribe to. */
|
|
@@ -23586,18 +23988,6 @@ export declare class NetworkSettings {
|
|
|
23586
23988
|
readonly NetworkSettingsArn: string;
|
|
23587
23989
|
}
|
|
23588
23990
|
|
|
23589
|
-
export declare class Node {
|
|
23590
|
-
constructor(props: {
|
|
23591
|
-
NetworkId: string;
|
|
23592
|
-
NodeConfiguration: Node_NodeConfiguration;
|
|
23593
|
-
Arn?: string;
|
|
23594
|
-
MemberId?: string;
|
|
23595
|
-
NodeId?: string;
|
|
23596
|
-
}, attributes?: CFResourceAttributes);
|
|
23597
|
-
readonly Arn: string;
|
|
23598
|
-
readonly NodeId: string;
|
|
23599
|
-
}
|
|
23600
|
-
|
|
23601
23991
|
export declare class Nodegroup {
|
|
23602
23992
|
constructor(props: {
|
|
23603
23993
|
/** Name of the cluster to create the node group in. */
|
|
@@ -24773,6 +25163,22 @@ export declare class OutpostResolver {
|
|
|
24773
25163
|
readonly StatusMessage: string;
|
|
24774
25164
|
}
|
|
24775
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
|
+
|
|
24776
25182
|
export declare class Owner {
|
|
24777
25183
|
constructor(props: {
|
|
24778
25184
|
/** The ID of the domain in which you want to add the entity owner. */
|
|
@@ -28435,6 +28841,58 @@ export declare class RequestValidator {
|
|
|
28435
28841
|
readonly RequestValidatorId: string;
|
|
28436
28842
|
}
|
|
28437
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
|
+
|
|
28438
28896
|
export declare class ResilienceHubApp {
|
|
28439
28897
|
constructor(props: {
|
|
28440
28898
|
/** A string containing full ResilienceHub app template body. */
|
|
@@ -30516,6 +30974,35 @@ export declare class SageMakerEndpoint {
|
|
|
30516
30974
|
readonly EndpointName: string;
|
|
30517
30975
|
}
|
|
30518
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
|
+
|
|
30519
31006
|
export declare class SageMakerImage {
|
|
30520
31007
|
constructor(props: {
|
|
30521
31008
|
ImageName: string;
|
|
@@ -31191,6 +31678,24 @@ export declare class SecurityHubAutomationRule {
|
|
|
31191
31678
|
readonly UpdatedAt: string;
|
|
31192
31679
|
}
|
|
31193
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
|
+
|
|
31194
31699
|
export declare class SecurityKey {
|
|
31195
31700
|
constructor(props: {
|
|
31196
31701
|
InstanceId: string;
|
|
@@ -32167,31 +32672,6 @@ export declare class Sink {
|
|
|
32167
32672
|
readonly Arn: string;
|
|
32168
32673
|
}
|
|
32169
32674
|
|
|
32170
|
-
export declare class Site {
|
|
32171
|
-
constructor(props: {
|
|
32172
|
-
/** The ID of the global network. */
|
|
32173
|
-
GlobalNetworkId: string;
|
|
32174
|
-
/** The date and time that the device was created. */
|
|
32175
|
-
CreatedAt?: string;
|
|
32176
|
-
/** The description of the site. */
|
|
32177
|
-
Description?: string;
|
|
32178
|
-
/** The location of the site. */
|
|
32179
|
-
Location?: Site_Location;
|
|
32180
|
-
/** The Amazon Resource Name (ARN) of the site. */
|
|
32181
|
-
SiteArn?: string;
|
|
32182
|
-
/** The ID of the site. */
|
|
32183
|
-
SiteId?: string;
|
|
32184
|
-
/** The state of the site. */
|
|
32185
|
-
State?: string;
|
|
32186
|
-
/** The tags for the site. */
|
|
32187
|
-
Tags?: Site_Tag[];
|
|
32188
|
-
}, attributes?: CFResourceAttributes);
|
|
32189
|
-
readonly CreatedAt: string;
|
|
32190
|
-
readonly SiteArn: string;
|
|
32191
|
-
readonly SiteId: string;
|
|
32192
|
-
readonly State: string;
|
|
32193
|
-
}
|
|
32194
|
-
|
|
32195
32675
|
export declare class SiteToSiteVpnAttachment {
|
|
32196
32676
|
constructor(props: {
|
|
32197
32677
|
/** The ID of a core network where you're creating a site-to-site VPN attachment. */
|
|
@@ -38648,6 +39128,22 @@ export declare class Addon_Tag {
|
|
|
38648
39128
|
});
|
|
38649
39129
|
}
|
|
38650
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
|
+
|
|
38651
39147
|
export declare class AddThingsToThingGroupParams {
|
|
38652
39148
|
constructor(props: {
|
|
38653
39149
|
/** The list of groups to which you want to add the things that triggered the mitigation action. */
|
|
@@ -39247,6 +39743,101 @@ export declare class AlarmRule {
|
|
|
39247
39743
|
});
|
|
39248
39744
|
}
|
|
39249
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
|
+
|
|
39250
39841
|
export declare class Alias {
|
|
39251
39842
|
constructor(props: {
|
|
39252
39843
|
/** The value of the Object Lambda alias. */
|
|
@@ -41366,6 +41957,20 @@ export declare class AppInstanceBot_Tag {
|
|
|
41366
41957
|
});
|
|
41367
41958
|
}
|
|
41368
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
|
+
|
|
41369
41974
|
export declare class AppIntegrationsApplication_ApplicationConfig {
|
|
41370
41975
|
constructor(props: {
|
|
41371
41976
|
ContactHandling?: AppIntegrationsApplication_ContactHandling;
|
|
@@ -43120,6 +43725,34 @@ export declare class AssessmentTemplate_Tag {
|
|
|
43120
43725
|
});
|
|
43121
43726
|
}
|
|
43122
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
|
+
|
|
43123
43756
|
export declare class AssetHierarchy {
|
|
43124
43757
|
constructor(props: {
|
|
43125
43758
|
/** The ID of the child asset to be associated. */
|
|
@@ -45793,6 +46426,7 @@ export declare class BedrockDataSource_DataSourceConfiguration {
|
|
|
45793
46426
|
constructor(props: {
|
|
45794
46427
|
Type: BedrockDataSource_DataSourceType;
|
|
45795
46428
|
ConfluenceConfiguration?: BedrockDataSource_ConfluenceDataSourceConfiguration;
|
|
46429
|
+
ManagedKnowledgeBaseConnectorConfiguration?: BedrockDataSource_ManagedKnowledgeBaseConnectorConfiguration;
|
|
45796
46430
|
S3Configuration?: BedrockDataSource_S3DataSourceConfiguration;
|
|
45797
46431
|
SalesforceConfiguration?: BedrockDataSource_SalesforceDataSourceConfiguration;
|
|
45798
46432
|
SharePointConfiguration?: BedrockDataSource_SharePointDataSourceConfiguration;
|
|
@@ -45800,6 +46434,14 @@ export declare class BedrockDataSource_DataSourceConfiguration {
|
|
|
45800
46434
|
});
|
|
45801
46435
|
}
|
|
45802
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
|
+
|
|
45803
46445
|
export declare class BedrockDataSource_FixedSizeChunkingConfiguration {
|
|
45804
46446
|
constructor(props: {
|
|
45805
46447
|
/** The maximum number of tokens to include in a chunk. */
|
|
@@ -45824,6 +46466,23 @@ export declare class BedrockDataSource_IntermediateStorage {
|
|
|
45824
46466
|
});
|
|
45825
46467
|
}
|
|
45826
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
|
+
|
|
45827
46486
|
export declare class BedrockDataSource_ParsingConfiguration {
|
|
45828
46487
|
constructor(props: {
|
|
45829
46488
|
ParsingStrategy: BedrockDataSource_ParsingStrategy;
|
|
@@ -46054,11 +46713,29 @@ export declare class BedrockKnowledgeBase_KnowledgeBaseConfiguration {
|
|
|
46054
46713
|
constructor(props: {
|
|
46055
46714
|
Type: BedrockKnowledgeBase_KnowledgeBaseType;
|
|
46056
46715
|
KendraKnowledgeBaseConfiguration?: BedrockKnowledgeBase_KendraKnowledgeBaseConfiguration;
|
|
46716
|
+
ManagedKnowledgeBaseConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration;
|
|
46057
46717
|
SqlKnowledgeBaseConfiguration?: BedrockKnowledgeBase_SqlKnowledgeBaseConfiguration;
|
|
46058
46718
|
VectorKnowledgeBaseConfiguration?: BedrockKnowledgeBase_VectorKnowledgeBaseConfiguration;
|
|
46059
46719
|
});
|
|
46060
46720
|
}
|
|
46061
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
|
+
|
|
46062
46739
|
export declare class BedrockKnowledgeBase_MongoDbAtlasConfiguration {
|
|
46063
46740
|
constructor(props: {
|
|
46064
46741
|
/** Name of the collection within MongoDB Atlas. */
|
|
@@ -48114,28 +48791,6 @@ export declare class BufferOptions {
|
|
|
48114
48791
|
});
|
|
48115
48792
|
}
|
|
48116
48793
|
|
|
48117
|
-
export declare class Build_StorageLocation {
|
|
48118
|
-
constructor(props: {
|
|
48119
|
-
/** An Amazon S3 bucket identifier. This is the name of the S3 bucket. */
|
|
48120
|
-
Bucket: string;
|
|
48121
|
-
/** The name of the zip file that contains the build files or script files. */
|
|
48122
|
-
Key: string;
|
|
48123
|
-
/** The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket. */
|
|
48124
|
-
RoleArn: string;
|
|
48125
|
-
/** 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. */
|
|
48126
|
-
ObjectVersion?: string;
|
|
48127
|
-
});
|
|
48128
|
-
}
|
|
48129
|
-
|
|
48130
|
-
export declare class Build_Tag {
|
|
48131
|
-
constructor(props: {
|
|
48132
|
-
/** The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length. */
|
|
48133
|
-
Key: string;
|
|
48134
|
-
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length. */
|
|
48135
|
-
Value: string;
|
|
48136
|
-
});
|
|
48137
|
-
}
|
|
48138
|
-
|
|
48139
48794
|
export declare class BuildStatusConfig {
|
|
48140
48795
|
constructor(props: {
|
|
48141
48796
|
Context?: string;
|
|
@@ -50392,6 +51047,17 @@ export declare class ChannelPlacementGroup_Tags {
|
|
|
50392
51047
|
});
|
|
50393
51048
|
}
|
|
50394
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
|
+
|
|
50395
51061
|
export declare class ChannelStorage {
|
|
50396
51062
|
constructor(props: {
|
|
50397
51063
|
CustomerManagedS3?: IoTAnalyticsChannel_CustomerManagedS3;
|
|
@@ -55560,6 +56226,24 @@ export declare class ContinuousIntegrationScanConfiguration {
|
|
|
55560
56226
|
});
|
|
55561
56227
|
}
|
|
55562
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
|
+
|
|
55563
56247
|
export declare class ControlCondition {
|
|
55564
56248
|
constructor(props: {
|
|
55565
56249
|
AlarmIdentifier: string;
|
|
@@ -59018,6 +59702,13 @@ export declare class DataColorPalette {
|
|
|
59018
59702
|
});
|
|
59019
59703
|
}
|
|
59020
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
|
+
|
|
59021
59712
|
export declare class DataDeliveryObject {
|
|
59022
59713
|
constructor(props: {
|
|
59023
59714
|
LogGroup?: string;
|
|
@@ -61162,6 +61853,14 @@ export declare class DeletionProtection {
|
|
|
61162
61853
|
});
|
|
61163
61854
|
}
|
|
61164
61855
|
|
|
61856
|
+
export declare class DeletionProtectionConfiguration {
|
|
61857
|
+
constructor(props: {
|
|
61858
|
+
DeletionProtectionStatus: BedrockDataSource_EnabledOrDisabledState;
|
|
61859
|
+
/** Threshold for deletion protection. */
|
|
61860
|
+
DeletionProtectionThreshold?: number;
|
|
61861
|
+
});
|
|
61862
|
+
}
|
|
61863
|
+
|
|
61165
61864
|
export declare class DeletionSettings {
|
|
61166
61865
|
constructor(props: {
|
|
61167
61866
|
/** The execution role to use for deleting the image, as well as underlying resources. */
|
|
@@ -69323,6 +70022,13 @@ export declare class ExpirationDataRule {
|
|
|
69323
70022
|
});
|
|
69324
70023
|
}
|
|
69325
70024
|
|
|
70025
|
+
export declare class ExpirationSettings {
|
|
70026
|
+
constructor(props: {
|
|
70027
|
+
ExpirationCriterion: "CREATED_TIMESTAMP";
|
|
70028
|
+
ExpirationDays: number;
|
|
70029
|
+
});
|
|
70030
|
+
}
|
|
70031
|
+
|
|
69326
70032
|
export declare class ExpiryEventsConfiguration {
|
|
69327
70033
|
constructor(props: {
|
|
69328
70034
|
DaysBeforeExpiry?: number;
|
|
@@ -72062,6 +72768,28 @@ export declare class GameLiftAlias_Tag {
|
|
|
72062
72768
|
});
|
|
72063
72769
|
}
|
|
72064
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
|
+
|
|
72065
72793
|
export declare class GameLiftFleet_AnywhereConfiguration {
|
|
72066
72794
|
constructor(props: {
|
|
72067
72795
|
/** Cost of compute can be specified on Anywhere Fleets to prioritize placement across Queue destinations based on Cost. */
|
|
@@ -75302,6 +76030,25 @@ export declare class HudiTarget {
|
|
|
75302
76030
|
});
|
|
75303
76031
|
}
|
|
75304
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
|
+
|
|
75305
76052
|
export declare class Hypervisor_Tag {
|
|
75306
76053
|
constructor(props: {
|
|
75307
76054
|
Key: string;
|
|
@@ -76495,6 +77242,15 @@ export declare class ImageStandardOutputConfiguration {
|
|
|
76495
77242
|
});
|
|
76496
77243
|
}
|
|
76497
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
|
+
|
|
76498
77254
|
export declare class ImportDataRule {
|
|
76499
77255
|
constructor(props: {
|
|
76500
77256
|
Prefix: string;
|
|
@@ -81889,6 +82645,7 @@ export declare class KnowledgeBaseConfiguration {
|
|
|
81889
82645
|
constructor(props: {
|
|
81890
82646
|
Type: BedrockKnowledgeBase_KnowledgeBaseType;
|
|
81891
82647
|
KendraKnowledgeBaseConfiguration?: BedrockKnowledgeBase_KendraKnowledgeBaseConfiguration;
|
|
82648
|
+
ManagedKnowledgeBaseConfiguration?: BedrockKnowledgeBase_ManagedKnowledgeBaseConfiguration;
|
|
81892
82649
|
SqlKnowledgeBaseConfiguration?: BedrockKnowledgeBase_SqlKnowledgeBaseConfiguration;
|
|
81893
82650
|
VectorKnowledgeBaseConfiguration?: BedrockKnowledgeBase_VectorKnowledgeBaseConfiguration;
|
|
81894
82651
|
});
|
|
@@ -85933,6 +86690,13 @@ export declare class ManagedBlockchainMember_VotingPolicy {
|
|
|
85933
86690
|
});
|
|
85934
86691
|
}
|
|
85935
86692
|
|
|
86693
|
+
export declare class ManagedBlockchainNode_NodeConfiguration {
|
|
86694
|
+
constructor(props: {
|
|
86695
|
+
AvailabilityZone: string;
|
|
86696
|
+
InstanceType: string;
|
|
86697
|
+
});
|
|
86698
|
+
}
|
|
86699
|
+
|
|
85936
86700
|
export declare class ManagedCertificateRequest {
|
|
85937
86701
|
constructor(props: {
|
|
85938
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*. */
|
|
@@ -85984,6 +86748,32 @@ export declare class ManagedInstancesStorageConfiguration {
|
|
|
85984
86748
|
});
|
|
85985
86749
|
}
|
|
85986
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
|
+
|
|
85987
86777
|
export declare class ManagedLoggingConfiguration {
|
|
85988
86778
|
constructor(props: {
|
|
85989
86779
|
/** Enables managed log persistence. */
|
|
@@ -86835,14 +87625,6 @@ export declare class MediaConvertJobTemplate_HopDestination {
|
|
|
86835
87625
|
});
|
|
86836
87626
|
}
|
|
86837
87627
|
|
|
86838
|
-
export declare class MediaExtractionConfiguration {
|
|
86839
|
-
constructor(props: {
|
|
86840
|
-
AudioExtractionConfiguration?: QBusinessDataSource_AudioExtractionConfiguration;
|
|
86841
|
-
ImageExtractionConfiguration?: QBusinessDataSource_ImageExtractionConfiguration;
|
|
86842
|
-
VideoExtractionConfiguration?: QBusinessDataSource_VideoExtractionConfiguration;
|
|
86843
|
-
});
|
|
86844
|
-
}
|
|
86845
|
-
|
|
86846
87628
|
export declare class MediaItem {
|
|
86847
87629
|
constructor(props: {
|
|
86848
87630
|
Type: ConnectWorkspace_MediaType;
|
|
@@ -87492,6 +88274,37 @@ export declare class MediaLiveInput_SrtSettingsRequest {
|
|
|
87492
88274
|
});
|
|
87493
88275
|
}
|
|
87494
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
|
+
|
|
87495
88308
|
export declare class MediaPackageAsset_EgressEndpoint {
|
|
87496
88309
|
constructor(props: {
|
|
87497
88310
|
/** The ID of the PackagingConfiguration being applied to the Asset. */
|
|
@@ -89954,6 +90767,34 @@ export declare class ModelCard_UserContext {
|
|
|
89954
90767
|
});
|
|
89955
90768
|
}
|
|
89956
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
|
+
|
|
89957
90798
|
export declare class ModelDataQuality {
|
|
89958
90799
|
constructor(props: {
|
|
89959
90800
|
Constraints?: ModelPackage_MetricsSource;
|
|
@@ -90167,6 +91008,12 @@ export declare class ModelInfrastructureConfig {
|
|
|
90167
91008
|
});
|
|
90168
91009
|
}
|
|
90169
91010
|
|
|
91011
|
+
export declare class ModelInput {
|
|
91012
|
+
constructor(props: {
|
|
91013
|
+
DataInputConfig: string;
|
|
91014
|
+
});
|
|
91015
|
+
}
|
|
91016
|
+
|
|
90170
91017
|
export declare class ModelManifest_Tag {
|
|
90171
91018
|
constructor(props: {
|
|
90172
91019
|
Key: string;
|
|
@@ -90450,28 +91297,6 @@ export declare class ModelPackage_ValidationSpecification {
|
|
|
90450
91297
|
});
|
|
90451
91298
|
}
|
|
90452
91299
|
|
|
90453
|
-
export declare class ModelPackageContainerDefinition {
|
|
90454
|
-
constructor(props: {
|
|
90455
|
-
/** The Amazon EC2 Container Registry (Amazon ECR) path where inference code is stored. */
|
|
90456
|
-
Image: string;
|
|
90457
|
-
/** The DNS host name for the Docker container. */
|
|
90458
|
-
ContainerHostname?: string;
|
|
90459
|
-
Environment?: Record<string, unknown>;
|
|
90460
|
-
/** The machine learning framework of the model package container image. */
|
|
90461
|
-
Framework?: string;
|
|
90462
|
-
/** The framework version of the Model Package Container Image. */
|
|
90463
|
-
FrameworkVersion?: string;
|
|
90464
|
-
/** An MD5 hash of the training algorithm that identifies the Docker image used for training. */
|
|
90465
|
-
ImageDigest?: string;
|
|
90466
|
-
ModelDataSource?: ModelPackage_ModelDataSource;
|
|
90467
|
-
/** A structure with Model Input details. */
|
|
90468
|
-
ModelDataUrl?: string;
|
|
90469
|
-
ModelInput?: Record<string, unknown>;
|
|
90470
|
-
/** The name of a pre-trained machine learning benchmarked by Amazon SageMaker Inference Recommender model that matches your model. */
|
|
90471
|
-
NearestModelName?: string;
|
|
90472
|
-
});
|
|
90473
|
-
}
|
|
90474
|
-
|
|
90475
91300
|
export declare class ModelPackageCreator {
|
|
90476
91301
|
constructor(props: {
|
|
90477
91302
|
/** The name of the user's profile in Studio */
|
|
@@ -92641,6 +93466,26 @@ export declare class NetworkManagerLink_Tag {
|
|
|
92641
93466
|
});
|
|
92642
93467
|
}
|
|
92643
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
|
+
|
|
92644
93489
|
export declare class NetworkPerformanceOptions {
|
|
92645
93490
|
constructor(props: {
|
|
92646
93491
|
/** Specify the bandwidth weighting option to boost the associated type of baseline bandwidth, as follows:
|
|
@@ -92690,13 +93535,6 @@ export declare class NielsenConfiguration {
|
|
|
92690
93535
|
});
|
|
92691
93536
|
}
|
|
92692
93537
|
|
|
92693
|
-
export declare class Node_NodeConfiguration {
|
|
92694
|
-
constructor(props: {
|
|
92695
|
-
AvailabilityZone: string;
|
|
92696
|
-
InstanceType: string;
|
|
92697
|
-
});
|
|
92698
|
-
}
|
|
92699
|
-
|
|
92700
93538
|
export declare class NodeConfig {
|
|
92701
93539
|
constructor(props: {
|
|
92702
93540
|
Count?: number;
|
|
@@ -92830,6 +93668,17 @@ export declare class NodeGroupConfiguration {
|
|
|
92830
93668
|
});
|
|
92831
93669
|
}
|
|
92832
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
|
+
|
|
92833
93682
|
export declare class NodeOption {
|
|
92834
93683
|
constructor(props: {
|
|
92835
93684
|
NodeConfig?: OpenSearchServiceDomain_NodeConfig;
|
|
@@ -95310,6 +96159,43 @@ export declare class OutpostResolver_Tag {
|
|
|
95310
96159
|
});
|
|
95311
96160
|
}
|
|
95312
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
|
+
|
|
95313
96199
|
export declare class OutputArtifact {
|
|
95314
96200
|
constructor(props: {
|
|
95315
96201
|
/** The name of the output of an artifact, such as "My App". */
|
|
@@ -95777,6 +96663,14 @@ export declare class ParameterObject {
|
|
|
95777
96663
|
});
|
|
95778
96664
|
}
|
|
95779
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
|
+
|
|
95780
96674
|
export declare class ParametersInCacheKeyAndForwardedToOrigin {
|
|
95781
96675
|
constructor(props: {
|
|
95782
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. */
|
|
@@ -101791,6 +102685,20 @@ export declare class QuotaShareResourceSharingConfiguration {
|
|
|
101791
102685
|
});
|
|
101792
102686
|
}
|
|
101793
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
|
+
|
|
101794
102702
|
export declare class RAMPermission_Tag {
|
|
101795
102703
|
constructor(props: {
|
|
101796
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 -. */
|
|
@@ -102574,6 +103482,15 @@ export declare class RecurrenceSettings {
|
|
|
102574
103482
|
});
|
|
102575
103483
|
}
|
|
102576
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
|
+
|
|
102577
103494
|
export declare class RedactionPlaceHolder {
|
|
102578
103495
|
constructor(props: {
|
|
102579
103496
|
RedactionPlaceHolderType: DataProtectionSettings_RedactionPlaceHolderType;
|
|
@@ -103069,6 +103986,15 @@ export declare class RegionalParameter {
|
|
|
103069
103986
|
});
|
|
103070
103987
|
}
|
|
103071
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
|
+
|
|
103072
103998
|
export declare class RegistrationConfig {
|
|
103073
103999
|
constructor(props: {
|
|
103074
104000
|
RoleArn?: string;
|
|
@@ -103899,6 +104825,24 @@ export declare class ReservedCapacityOptionsRequest {
|
|
|
103899
104825
|
});
|
|
103900
104826
|
}
|
|
103901
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
|
+
|
|
103902
104846
|
export declare class ReshardingConfiguration {
|
|
103903
104847
|
constructor(props: {
|
|
103904
104848
|
/** Unique identifier for the Node Group. This is either auto-generated by ElastiCache (4-digit id) or a user supplied id. */
|
|
@@ -107493,6 +108437,13 @@ export declare class SageMakerEndpoint_VariantProperty {
|
|
|
107493
108437
|
});
|
|
107494
108438
|
}
|
|
107495
108439
|
|
|
108440
|
+
export declare class SageMakerHub_Tag {
|
|
108441
|
+
constructor(props: {
|
|
108442
|
+
Key: string;
|
|
108443
|
+
Value: string;
|
|
108444
|
+
});
|
|
108445
|
+
}
|
|
108446
|
+
|
|
107496
108447
|
export declare class SageMakerImage_Tag {
|
|
107497
108448
|
constructor(props: {
|
|
107498
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 -. */
|
|
@@ -109055,6 +110006,17 @@ export declare class SdiSource_Tags {
|
|
|
109055
110006
|
});
|
|
109056
110007
|
}
|
|
109057
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
|
+
|
|
109058
110020
|
export declare class SearchFilter {
|
|
109059
110021
|
constructor(props: {
|
|
109060
110022
|
FilterString: string;
|
|
@@ -111406,26 +112368,6 @@ export declare class SingularSourceProperties {
|
|
|
111406
112368
|
});
|
|
111407
112369
|
}
|
|
111408
112370
|
|
|
111409
|
-
export declare class Site_Location {
|
|
111410
|
-
constructor(props: {
|
|
111411
|
-
/** The physical address. */
|
|
111412
|
-
Address?: string;
|
|
111413
|
-
/** The latitude. */
|
|
111414
|
-
Latitude?: string;
|
|
111415
|
-
/** The longitude. */
|
|
111416
|
-
Longitude?: string;
|
|
111417
|
-
});
|
|
111418
|
-
}
|
|
111419
|
-
|
|
111420
|
-
export declare class Site_Tag {
|
|
111421
|
-
constructor(props: {
|
|
111422
|
-
/** 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 -. */
|
|
111423
|
-
Key: string;
|
|
111424
|
-
/** 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 -. */
|
|
111425
|
-
Value: string;
|
|
111426
|
-
});
|
|
111427
|
-
}
|
|
111428
|
-
|
|
111429
112371
|
export declare class SiteToSiteVpnAttachment_ProposedNetworkFunctionGroupChange {
|
|
111430
112372
|
constructor(props: {
|
|
111431
112373
|
/** The rule number in the policy document that applies to this change. */
|
|
@@ -117661,6 +118603,19 @@ export declare class TrainingMetrics {
|
|
|
117661
118603
|
});
|
|
117662
118604
|
}
|
|
117663
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
|
+
|
|
117664
118619
|
export declare class TransferCertificate_Tag {
|
|
117665
118620
|
constructor(props: {
|
|
117666
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 -. */
|
|
@@ -125152,24 +126107,34 @@ export type BedrockDataSource_ContextEnrichmentType = "BEDROCK_FOUNDATION_MODEL"
|
|
|
125152
126107
|
|
|
125153
126108
|
export type BedrockDataSource_DataDeletionPolicy = "DELETE" | "RETAIN";
|
|
125154
126109
|
|
|
125155
|
-
export type BedrockDataSource_DataSourceStatus =
|
|
126110
|
+
export type BedrockDataSource_DataSourceStatus =
|
|
126111
|
+
| "AVAILABLE"
|
|
126112
|
+
| "CREATING"
|
|
126113
|
+
| "DELETE_UNSUCCESSFUL"
|
|
126114
|
+
| "DELETING"
|
|
126115
|
+
| "FAILED"
|
|
126116
|
+
| "UPDATING";
|
|
125156
126117
|
|
|
125157
126118
|
export type BedrockDataSource_DataSourceType =
|
|
125158
126119
|
| "CONFLUENCE"
|
|
125159
126120
|
| "CUSTOM"
|
|
126121
|
+
| "MANAGED_KNOWLEDGE_BASE_CONNECTOR"
|
|
125160
126122
|
| "REDSHIFT_METADATA"
|
|
125161
126123
|
| "S3"
|
|
125162
126124
|
| "SALESFORCE"
|
|
125163
126125
|
| "SHAREPOINT"
|
|
125164
126126
|
| "WEB";
|
|
125165
126127
|
|
|
126128
|
+
export type BedrockDataSource_EnabledOrDisabledState = "DISABLED" | "ENABLED";
|
|
126129
|
+
|
|
125166
126130
|
export type BedrockDataSource_EnrichmentStrategyMethod = "CHUNK_ENTITY_EXTRACTION";
|
|
125167
126131
|
|
|
125168
126132
|
export type BedrockDataSource_ParsingModality = "MULTIMODAL";
|
|
125169
126133
|
|
|
125170
126134
|
export type BedrockDataSource_ParsingStrategy =
|
|
125171
126135
|
| "BEDROCK_DATA_AUTOMATION"
|
|
125172
|
-
| "BEDROCK_FOUNDATION_MODEL"
|
|
126136
|
+
| "BEDROCK_FOUNDATION_MODEL"
|
|
126137
|
+
| "SMART_PARSING";
|
|
125173
126138
|
|
|
125174
126139
|
export type BedrockDataSource_WebScopeType = "HOST_ONLY" | "SUBDOMAINS";
|
|
125175
126140
|
|
|
@@ -125212,6 +126177,8 @@ export type BedrockFlow_SupportedLanguages = "Python_3";
|
|
|
125212
126177
|
|
|
125213
126178
|
export type BedrockFlow_VectorSearchRerankingConfigurationType = "BEDROCK_RERANKING_MODEL";
|
|
125214
126179
|
|
|
126180
|
+
export type BedrockKnowledgeBase_EmbeddingModelType = "CUSTOM" | "MANAGED";
|
|
126181
|
+
|
|
125215
126182
|
export type BedrockKnowledgeBase_InclusionType = "EXCLUDE" | "INCLUDE";
|
|
125216
126183
|
|
|
125217
126184
|
export type BedrockKnowledgeBase_KnowledgeBaseStatus =
|
|
@@ -125220,6 +126187,7 @@ export type BedrockKnowledgeBase_KnowledgeBaseStatus =
|
|
|
125220
126187
|
| "DELETE_UNSUCCESSFUL"
|
|
125221
126188
|
| "DELETING"
|
|
125222
126189
|
| "FAILED"
|
|
126190
|
+
| "UPDATE_UNSUCCESSFUL"
|
|
125223
126191
|
| "UPDATING";
|
|
125224
126192
|
|
|
125225
126193
|
export type BedrockKnowledgeBase_KnowledgeBaseStorageType =
|
|
@@ -125231,7 +126199,7 @@ export type BedrockKnowledgeBase_KnowledgeBaseStorageType =
|
|
|
125231
126199
|
| "RDS"
|
|
125232
126200
|
| "S3_VECTORS";
|
|
125233
126201
|
|
|
125234
|
-
export type BedrockKnowledgeBase_KnowledgeBaseType = "KENDRA" | "SQL" | "VECTOR";
|
|
126202
|
+
export type BedrockKnowledgeBase_KnowledgeBaseType = "KENDRA" | "MANAGED" | "SQL" | "VECTOR";
|
|
125235
126203
|
|
|
125236
126204
|
export type BedrockKnowledgeBase_QueryEngineType = "REDSHIFT";
|
|
125237
126205
|
|
|
@@ -127434,6 +128402,24 @@ export type MediaLiveCluster_ClusterType =
|
|
|
127434
128402
|
| "OUTPOSTS_RACK"
|
|
127435
128403
|
| "OUTPOSTS_SERVER";
|
|
127436
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
|
+
|
|
127437
128423
|
export type MediaPackageOriginEndpoint_AdsOnDeliveryRestrictions =
|
|
127438
128424
|
| "BOTH"
|
|
127439
128425
|
| "NONE"
|