@intentius/chant-lexicon-aws 0.19.1 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/codegen/docs.d.ts.map +1 -1
- package/dist/codegen/package.d.ts.map +1 -1
- package/dist/generated/index.d.ts +150 -19
- 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 +3221 -253
- package/dist/types/index.d.ts +2640 -223
- package/package.json +2 -2
- package/src/codegen/docs.ts +20 -6
- package/src/codegen/package.ts +5 -1
- package/src/generated/index.d.ts +2640 -223
- package/src/generated/index.ts +152 -21
- package/src/generated/lexicon-aws.json +3221 -253
- package/src/plugin.ts +9 -9
package/dist/types/index.d.ts
CHANGED
|
@@ -907,6 +907,85 @@ export declare class Algorithm {
|
|
|
907
907
|
readonly CreationTime: string;
|
|
908
908
|
}
|
|
909
909
|
|
|
910
|
+
export declare class AllGroupMemberships {
|
|
911
|
+
constructor(props: {
|
|
912
|
+
/** The Amazon Resource Name (ARN) of the group membership. */
|
|
913
|
+
Arn?: string;
|
|
914
|
+
/** The date and time the group membership was created. */
|
|
915
|
+
CreatedAt?: string;
|
|
916
|
+
/** The identifier of the user or system that created the group membership. */
|
|
917
|
+
CreatedBy?: string;
|
|
918
|
+
/** The identifier for a group in the identity store. */
|
|
919
|
+
GroupId?: string;
|
|
920
|
+
/** The globally unique identifier for the identity store. */
|
|
921
|
+
IdentityStoreId?: string;
|
|
922
|
+
/** An object containing the identifier of a group member. */
|
|
923
|
+
MemberId?: Record<string, unknown>;
|
|
924
|
+
/** The identifier for a GroupMembership in an identity store. */
|
|
925
|
+
MembershipId?: string;
|
|
926
|
+
/** The date and time the group membership was last updated. */
|
|
927
|
+
UpdatedAt?: string;
|
|
928
|
+
/** The identifier of the user or system that last updated the group membership. */
|
|
929
|
+
UpdatedBy?: string;
|
|
930
|
+
}, attributes?: CFResourceAttributes);
|
|
931
|
+
readonly Arn: string;
|
|
932
|
+
readonly CreatedAt: string;
|
|
933
|
+
readonly CreatedBy: string;
|
|
934
|
+
readonly MembershipId: string;
|
|
935
|
+
readonly UpdatedAt: string;
|
|
936
|
+
readonly UpdatedBy: string;
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
export declare class AllImageBuildVersions {
|
|
940
|
+
constructor(props: {
|
|
941
|
+
/** The Amazon Resource Name (ARN) of the image build version. */
|
|
942
|
+
Arn?: string;
|
|
943
|
+
/** The build number of the image build version. */
|
|
944
|
+
BuildNumber?: string;
|
|
945
|
+
/** Indicates the type of build that created this image. */
|
|
946
|
+
BuildType?: "IMPORT" | "IMPORT_ISO" | "SCHEDULED" | "USER_INITIATED";
|
|
947
|
+
/** The date on which Image Builder created this image. */
|
|
948
|
+
DateCreated?: string;
|
|
949
|
+
/** Indicates whether enhanced image metadata collection is enabled. */
|
|
950
|
+
EnhancedImageMetadataEnabled?: boolean;
|
|
951
|
+
/** The execution role for the image. */
|
|
952
|
+
ExecutionRole?: string;
|
|
953
|
+
/** The image tests configuration. */
|
|
954
|
+
ImageTestsConfiguration?: Record<string, unknown>;
|
|
955
|
+
/** The image version ARN whose build versions you want to list. */
|
|
956
|
+
ImageVersionArn?: string;
|
|
957
|
+
/** The name of the image. */
|
|
958
|
+
Name?: string;
|
|
959
|
+
/** The operating system version of the instances that launch from this image. */
|
|
960
|
+
OsVersion?: string;
|
|
961
|
+
/** The operating system platform of the image. */
|
|
962
|
+
Platform?: "Linux" | "Windows" | "macOS";
|
|
963
|
+
/** Image status and the reason for that status. */
|
|
964
|
+
State?: Record<string, unknown>;
|
|
965
|
+
/** The tags associated with the image. */
|
|
966
|
+
Tags?: Record<string, unknown>[];
|
|
967
|
+
/** Specifies whether this image produces an AMI or a container image. */
|
|
968
|
+
Type?: "AMI" | "DOCKER";
|
|
969
|
+
/** The semantic version of the image (major.minor.patch). */
|
|
970
|
+
Version?: string;
|
|
971
|
+
}, attributes?: CFResourceAttributes);
|
|
972
|
+
readonly Arn: string;
|
|
973
|
+
readonly BuildNumber: string;
|
|
974
|
+
readonly BuildType: "IMPORT" | "IMPORT_ISO" | "SCHEDULED" | "USER_INITIATED";
|
|
975
|
+
readonly DateCreated: string;
|
|
976
|
+
readonly EnhancedImageMetadataEnabled: boolean;
|
|
977
|
+
readonly ExecutionRole: string;
|
|
978
|
+
readonly ImageTestsConfiguration: Record<string, unknown>;
|
|
979
|
+
readonly ImageVersionArn: string;
|
|
980
|
+
readonly Name: string;
|
|
981
|
+
readonly OsVersion: string;
|
|
982
|
+
readonly Platform: "Linux" | "Windows" | "macOS";
|
|
983
|
+
readonly State: Record<string, unknown>;
|
|
984
|
+
readonly Tags: Record<string, unknown>[];
|
|
985
|
+
readonly Type: "AMI" | "DOCKER";
|
|
986
|
+
readonly Version: string;
|
|
987
|
+
}
|
|
988
|
+
|
|
910
989
|
export declare class AllowList {
|
|
911
990
|
constructor(props: {
|
|
912
991
|
/** AllowList criteria. */
|
|
@@ -929,6 +1008,50 @@ export declare class AllowList {
|
|
|
929
1008
|
readonly Status: AllowList_Status;
|
|
930
1009
|
}
|
|
931
1010
|
|
|
1011
|
+
export declare class AllWorkflowBuildVersions {
|
|
1012
|
+
constructor(props: {
|
|
1013
|
+
/** The Amazon Resource Name (ARN) of the workflow build version. */
|
|
1014
|
+
Arn?: string;
|
|
1015
|
+
/** The build number of the workflow build version. */
|
|
1016
|
+
BuildNumber?: string;
|
|
1017
|
+
/** Describes what change has been made in this version of the workflow. */
|
|
1018
|
+
ChangeDescription?: string;
|
|
1019
|
+
/** Contains the YAML document content for the workflow. */
|
|
1020
|
+
Data?: string;
|
|
1021
|
+
/** The timestamp when Image Builder created the workflow resource. */
|
|
1022
|
+
DateCreated?: string;
|
|
1023
|
+
/** Describes the workflow. */
|
|
1024
|
+
Description?: string;
|
|
1025
|
+
/** The name of the workflow. */
|
|
1026
|
+
Name?: string;
|
|
1027
|
+
/** The owner of the workflow resource. */
|
|
1028
|
+
Owner?: string;
|
|
1029
|
+
/** An array of input parameters that the workflow uses to control actions or configure settings. */
|
|
1030
|
+
Parameters?: Record<string, unknown>[];
|
|
1031
|
+
/** The tags associated with the workflow build version. */
|
|
1032
|
+
Tags?: Record<string, unknown>[];
|
|
1033
|
+
/** The semantic version of the workflow (major.minor.patch). */
|
|
1034
|
+
Version?: string;
|
|
1035
|
+
/** The image creation stage that this workflow applies to. */
|
|
1036
|
+
WorkflowType?: "build" | "distribution" | "test";
|
|
1037
|
+
/** The workflow version ARN whose build versions you want to list. */
|
|
1038
|
+
WorkflowVersionArn?: string;
|
|
1039
|
+
}, attributes?: CFResourceAttributes);
|
|
1040
|
+
readonly Arn: string;
|
|
1041
|
+
readonly BuildNumber: string;
|
|
1042
|
+
readonly ChangeDescription: string;
|
|
1043
|
+
readonly Data: string;
|
|
1044
|
+
readonly DateCreated: string;
|
|
1045
|
+
readonly Description: string;
|
|
1046
|
+
readonly Name: string;
|
|
1047
|
+
readonly Owner: string;
|
|
1048
|
+
readonly Parameters: Record<string, unknown>[];
|
|
1049
|
+
readonly Tags: Record<string, unknown>[];
|
|
1050
|
+
readonly Version: string;
|
|
1051
|
+
readonly WorkflowType: "build" | "distribution" | "test";
|
|
1052
|
+
readonly WorkflowVersionArn: string;
|
|
1053
|
+
}
|
|
1054
|
+
|
|
932
1055
|
export declare class AmazonMQConfiguration {
|
|
933
1056
|
constructor(props: {
|
|
934
1057
|
/** The type of broker engine. Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations. */
|
|
@@ -2206,6 +2329,21 @@ export declare class ApplicationInstance {
|
|
|
2206
2329
|
readonly StatusDescription: string;
|
|
2207
2330
|
}
|
|
2208
2331
|
|
|
2332
|
+
export declare class ApplicationProvider {
|
|
2333
|
+
constructor(props: {
|
|
2334
|
+
/** The ARN of the application provider. */
|
|
2335
|
+
ApplicationProviderArn?: string;
|
|
2336
|
+
DisplayData?: ApplicationProvider_DisplayData;
|
|
2337
|
+
/** The protocol used to federate to the application provider. */
|
|
2338
|
+
FederationProtocol?: "OAUTH" | "SAML";
|
|
2339
|
+
ResourceServerConfig?: ApplicationProvider_ResourceServerConfig;
|
|
2340
|
+
}, attributes?: CFResourceAttributes);
|
|
2341
|
+
readonly ApplicationProviderArn: string;
|
|
2342
|
+
readonly DisplayData: ApplicationProvider_DisplayData;
|
|
2343
|
+
readonly FederationProtocol: "OAUTH" | "SAML";
|
|
2344
|
+
readonly ResourceServerConfig: ApplicationProvider_ResourceServerConfig;
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2209
2347
|
export declare class ApplicationSettings {
|
|
2210
2348
|
constructor(props: {
|
|
2211
2349
|
ApplicationId: string;
|
|
@@ -2909,6 +3047,28 @@ export declare class AthenaCapacityReservation {
|
|
|
2909
3047
|
readonly Status: AthenaCapacityReservation_CapacityReservationStatus;
|
|
2910
3048
|
}
|
|
2911
3049
|
|
|
3050
|
+
export declare class AthenaSession {
|
|
3051
|
+
constructor(props: {
|
|
3052
|
+
/** Contains engine data processing unit (DPU) configuration settings. */
|
|
3053
|
+
EngineConfiguration: AthenaSession_EngineConfiguration;
|
|
3054
|
+
/** The workgroup to which the session belongs. */
|
|
3055
|
+
WorkGroup: string;
|
|
3056
|
+
/** The ARN of the session. */
|
|
3057
|
+
Arn?: string;
|
|
3058
|
+
/** The engine version used by the session. */
|
|
3059
|
+
EngineVersion?: string;
|
|
3060
|
+
/** The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. */
|
|
3061
|
+
ExecutionRole?: string;
|
|
3062
|
+
/** The session ID. */
|
|
3063
|
+
SessionId?: string;
|
|
3064
|
+
}, attributes?: CFResourceAttributes);
|
|
3065
|
+
readonly Arn: string;
|
|
3066
|
+
readonly EngineConfiguration_AdditionalConfigs: string;
|
|
3067
|
+
readonly EngineConfiguration_SparkProperties: string;
|
|
3068
|
+
readonly EngineVersion: string;
|
|
3069
|
+
readonly SessionId: string;
|
|
3070
|
+
}
|
|
3071
|
+
|
|
2912
3072
|
export declare class AttributeGroup {
|
|
2913
3073
|
constructor(props: {
|
|
2914
3074
|
Attributes: Record<string, unknown>;
|
|
@@ -3410,6 +3570,32 @@ export declare class BCMDashboard {
|
|
|
3410
3570
|
readonly UpdatedAt: string;
|
|
3411
3571
|
}
|
|
3412
3572
|
|
|
3573
|
+
export declare class BCMDataExportsExport {
|
|
3574
|
+
constructor(props: {
|
|
3575
|
+
Export: BCMDataExportsExport_Export;
|
|
3576
|
+
ExportArn?: string;
|
|
3577
|
+
Tags?: BCMDataExportsExport_ResourceTag[];
|
|
3578
|
+
}, attributes?: CFResourceAttributes);
|
|
3579
|
+
readonly Export_ExportArn: string;
|
|
3580
|
+
readonly ExportArn: string;
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
export declare class BCMDataExportsTable {
|
|
3584
|
+
constructor(props: {
|
|
3585
|
+
/** The name of the table. */
|
|
3586
|
+
TableName: string;
|
|
3587
|
+
/** The Amazon Resource Name (ARN) of the table. */
|
|
3588
|
+
Arn?: string;
|
|
3589
|
+
/** The table description. */
|
|
3590
|
+
Description?: string;
|
|
3591
|
+
/** The schema of the table. */
|
|
3592
|
+
Schema?: BCMDataExportsTable_Column[];
|
|
3593
|
+
}, attributes?: CFResourceAttributes);
|
|
3594
|
+
readonly Arn: string;
|
|
3595
|
+
readonly Description: string;
|
|
3596
|
+
readonly Schema: BCMDataExportsTable_Column[];
|
|
3597
|
+
}
|
|
3598
|
+
|
|
3413
3599
|
export declare class BedrockAgent {
|
|
3414
3600
|
constructor(props: {
|
|
3415
3601
|
/** Name for a resource. */
|
|
@@ -3580,6 +3766,35 @@ export declare class BedrockAgentCoreResourcePolicy {
|
|
|
3580
3766
|
}, attributes?: CFResourceAttributes);
|
|
3581
3767
|
}
|
|
3582
3768
|
|
|
3769
|
+
export declare class BedrockBlueprint {
|
|
3770
|
+
constructor(props: {
|
|
3771
|
+
/** Name of the Blueprint */
|
|
3772
|
+
BlueprintName: string;
|
|
3773
|
+
/** Schema of the blueprint */
|
|
3774
|
+
Schema: Record<string, unknown>;
|
|
3775
|
+
/** Modality Type */
|
|
3776
|
+
Type: "AUDIO" | "DOCUMENT" | "IMAGE" | "VIDEO";
|
|
3777
|
+
/** ARN of a Blueprint */
|
|
3778
|
+
BlueprintArn?: string;
|
|
3779
|
+
/** Stage of the Blueprint */
|
|
3780
|
+
BlueprintStage?: "DEVELOPMENT" | "LIVE";
|
|
3781
|
+
/** Creation timestamp */
|
|
3782
|
+
CreationTime?: string;
|
|
3783
|
+
/** KMS encryption context */
|
|
3784
|
+
KmsEncryptionContext?: Record<string, unknown>;
|
|
3785
|
+
/** KMS key identifier */
|
|
3786
|
+
KmsKeyId?: string;
|
|
3787
|
+
/** Last modified timestamp */
|
|
3788
|
+
LastModifiedTime?: string;
|
|
3789
|
+
/** List of Tags */
|
|
3790
|
+
Tags?: BedrockBlueprint_Tag[];
|
|
3791
|
+
}, attributes?: CFResourceAttributes);
|
|
3792
|
+
readonly BlueprintArn: string;
|
|
3793
|
+
readonly BlueprintStage: "DEVELOPMENT" | "LIVE";
|
|
3794
|
+
readonly CreationTime: string;
|
|
3795
|
+
readonly LastModifiedTime: string;
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3583
3798
|
export declare class BedrockDataSource {
|
|
3584
3799
|
constructor(props: {
|
|
3585
3800
|
DataSourceConfiguration: BedrockDataSource_DataSourceConfiguration;
|
|
@@ -3823,35 +4038,6 @@ export declare class BillScenario {
|
|
|
3823
4038
|
readonly Status: BillScenario_BillScenarioStatus;
|
|
3824
4039
|
}
|
|
3825
4040
|
|
|
3826
|
-
export declare class Blueprint {
|
|
3827
|
-
constructor(props: {
|
|
3828
|
-
/** Name of the Blueprint */
|
|
3829
|
-
BlueprintName: string;
|
|
3830
|
-
/** Schema of the blueprint */
|
|
3831
|
-
Schema: Record<string, unknown>;
|
|
3832
|
-
/** Modality Type */
|
|
3833
|
-
Type: "AUDIO" | "DOCUMENT" | "IMAGE" | "VIDEO";
|
|
3834
|
-
/** ARN of a Blueprint */
|
|
3835
|
-
BlueprintArn?: string;
|
|
3836
|
-
/** Stage of the Blueprint */
|
|
3837
|
-
BlueprintStage?: "DEVELOPMENT" | "LIVE";
|
|
3838
|
-
/** Creation timestamp */
|
|
3839
|
-
CreationTime?: string;
|
|
3840
|
-
/** KMS encryption context */
|
|
3841
|
-
KmsEncryptionContext?: Record<string, unknown>;
|
|
3842
|
-
/** KMS key identifier */
|
|
3843
|
-
KmsKeyId?: string;
|
|
3844
|
-
/** Last modified timestamp */
|
|
3845
|
-
LastModifiedTime?: string;
|
|
3846
|
-
/** List of Tags */
|
|
3847
|
-
Tags?: Blueprint_Tag[];
|
|
3848
|
-
}, attributes?: CFResourceAttributes);
|
|
3849
|
-
readonly BlueprintArn: string;
|
|
3850
|
-
readonly BlueprintStage: "DEVELOPMENT" | "LIVE";
|
|
3851
|
-
readonly CreationTime: string;
|
|
3852
|
-
readonly LastModifiedTime: string;
|
|
3853
|
-
}
|
|
3854
|
-
|
|
3855
4041
|
export declare class Bot {
|
|
3856
4042
|
constructor(props: {
|
|
3857
4043
|
DataPrivacy: Record<string, unknown>;
|
|
@@ -5623,6 +5809,27 @@ export declare class CodeArtifactDomain {
|
|
|
5623
5809
|
readonly Owner: string;
|
|
5624
5810
|
}
|
|
5625
5811
|
|
|
5812
|
+
export declare class CodeArtifactPackage {
|
|
5813
|
+
constructor(props: {
|
|
5814
|
+
/** The name of the domain that contains the repository that contains the package. */
|
|
5815
|
+
DomainName: string;
|
|
5816
|
+
/** The format of the package. */
|
|
5817
|
+
Format: "cargo" | "generic" | "maven" | "npm" | "nuget" | "pypi" | "ruby" | "swift";
|
|
5818
|
+
/** The name of the package. */
|
|
5819
|
+
Name: string;
|
|
5820
|
+
/** The name of the repository that contains the package. */
|
|
5821
|
+
Repository: string;
|
|
5822
|
+
/** The ARN of the package. */
|
|
5823
|
+
Arn?: string;
|
|
5824
|
+
/** The namespace of the package. */
|
|
5825
|
+
Namespace?: string;
|
|
5826
|
+
/** The package origin configuration for the package. */
|
|
5827
|
+
OriginConfiguration?: Record<string, unknown>;
|
|
5828
|
+
}, attributes?: CFResourceAttributes);
|
|
5829
|
+
readonly Arn: string;
|
|
5830
|
+
readonly OriginConfiguration: Record<string, unknown>;
|
|
5831
|
+
}
|
|
5832
|
+
|
|
5626
5833
|
export declare class CodeArtifactRepository {
|
|
5627
5834
|
constructor(props: {
|
|
5628
5835
|
/** The name of the domain that contains the repository. */
|
|
@@ -5941,6 +6148,35 @@ export declare class CodeStarConnectionsConnection {
|
|
|
5941
6148
|
readonly OwnerAccountId: string;
|
|
5942
6149
|
}
|
|
5943
6150
|
|
|
6151
|
+
export declare class CognitoSyncDataset {
|
|
6152
|
+
constructor(props: {
|
|
6153
|
+
/** The Amazon Resource Name (ARN) of the dataset. */
|
|
6154
|
+
Arn?: string;
|
|
6155
|
+
/** Date on which the dataset was created. */
|
|
6156
|
+
CreationDate?: string;
|
|
6157
|
+
/** A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, underscore, dash, and dot. */
|
|
6158
|
+
DatasetName?: string;
|
|
6159
|
+
/** Total size in bytes of the records in this dataset. */
|
|
6160
|
+
DataStorage?: number;
|
|
6161
|
+
/** A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. */
|
|
6162
|
+
IdentityId?: string;
|
|
6163
|
+
/** A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. */
|
|
6164
|
+
IdentityPoolId?: string;
|
|
6165
|
+
/** The device that made the last change to this dataset. */
|
|
6166
|
+
LastModifiedBy?: string;
|
|
6167
|
+
/** Date when the dataset was last modified. */
|
|
6168
|
+
LastModifiedDate?: string;
|
|
6169
|
+
/** Number of records in this dataset. */
|
|
6170
|
+
NumRecords?: number;
|
|
6171
|
+
}, attributes?: CFResourceAttributes);
|
|
6172
|
+
readonly Arn: string;
|
|
6173
|
+
readonly CreationDate: string;
|
|
6174
|
+
readonly DataStorage: number;
|
|
6175
|
+
readonly LastModifiedBy: string;
|
|
6176
|
+
readonly LastModifiedDate: string;
|
|
6177
|
+
readonly NumRecords: number;
|
|
6178
|
+
}
|
|
6179
|
+
|
|
5944
6180
|
export declare class Collaboration {
|
|
5945
6181
|
constructor(props: {
|
|
5946
6182
|
CreatorDisplayName: string;
|
|
@@ -7566,6 +7802,37 @@ export declare class CoreDefinitionVersion {
|
|
|
7566
7802
|
readonly Id: string;
|
|
7567
7803
|
}
|
|
7568
7804
|
|
|
7805
|
+
export declare class CoreDevice {
|
|
7806
|
+
constructor(props: {
|
|
7807
|
+
/** The computer architecture of the core device. */
|
|
7808
|
+
Architecture?: string;
|
|
7809
|
+
/** The ARN of the core device. */
|
|
7810
|
+
Arn?: string;
|
|
7811
|
+
/** The name of the core device. This is also the name of the IoT thing. */
|
|
7812
|
+
CoreDeviceThingName?: string;
|
|
7813
|
+
/** The version of the IoT Greengrass Core software that the core device runs. */
|
|
7814
|
+
CoreVersion?: string;
|
|
7815
|
+
/** The time at which the core device's status last updated, expressed in ISO 8601 format. */
|
|
7816
|
+
LastStatusUpdateTimestamp?: string;
|
|
7817
|
+
/** The operating system platform that the core device runs. */
|
|
7818
|
+
Platform?: string;
|
|
7819
|
+
/** The runtime for the core device. The runtime can be aws_nucleus_classic or aws_nucleus_lite. */
|
|
7820
|
+
Runtime?: string;
|
|
7821
|
+
/** The status of the core device. */
|
|
7822
|
+
Status?: "HEALTHY" | "UNHEALTHY";
|
|
7823
|
+
/** Tags associated with the core device. */
|
|
7824
|
+
Tags?: Record<string, unknown>[];
|
|
7825
|
+
}, attributes?: CFResourceAttributes);
|
|
7826
|
+
readonly Architecture: string;
|
|
7827
|
+
readonly Arn: string;
|
|
7828
|
+
readonly CoreVersion: string;
|
|
7829
|
+
readonly LastStatusUpdateTimestamp: string;
|
|
7830
|
+
readonly Platform: string;
|
|
7831
|
+
readonly Runtime: string;
|
|
7832
|
+
readonly Status: "HEALTHY" | "UNHEALTHY";
|
|
7833
|
+
readonly Tags: Record<string, unknown>[];
|
|
7834
|
+
}
|
|
7835
|
+
|
|
7569
7836
|
export declare class CoreNetwork {
|
|
7570
7837
|
constructor(props: {
|
|
7571
7838
|
/** The ID of the global network that your core network is a part of. */
|
|
@@ -7754,7 +8021,10 @@ export declare class CustomDBEngineVersion {
|
|
|
7754
8021
|
/** The database engine to use for your custom engine version (CEV).
|
|
7755
8022
|
Valid values:
|
|
7756
8023
|
+ ``custom-oracle-ee``
|
|
7757
|
-
+ ``custom-oracle-ee-cdb``
|
|
8024
|
+
+ ``custom-oracle-ee-cdb``
|
|
8025
|
+
+ ``sqlserver-dev-ee``
|
|
8026
|
+
+ ``sqlserver-ee``
|
|
8027
|
+
+ ``sqlserver-se`` */
|
|
7758
8028
|
Engine: string;
|
|
7759
8029
|
/** The name of your CEV. The name format is ``major version.customized_string``. For example, a valid CEV name is ``19.my_cev1``. This setting is required for RDS Custom for Oracle, but optional for Amazon RDS. The combination of ``Engine`` and ``EngineVersion`` is unique per customer per Region.
|
|
7760
8030
|
*Constraints:* Minimum length is 1. Maximum length is 60.
|
|
@@ -8316,6 +8586,17 @@ export declare class DataBrewProject {
|
|
|
8316
8586
|
}, attributes?: CFResourceAttributes);
|
|
8317
8587
|
}
|
|
8318
8588
|
|
|
8589
|
+
export declare class DataBrewRecipe {
|
|
8590
|
+
constructor(props: {
|
|
8591
|
+
/** Recipe name */
|
|
8592
|
+
Name: string;
|
|
8593
|
+
Steps: DataBrewRecipe_RecipeStep[];
|
|
8594
|
+
/** Description of the recipe */
|
|
8595
|
+
Description?: string;
|
|
8596
|
+
Tags?: DataBrewRecipe_Tag[];
|
|
8597
|
+
}, attributes?: CFResourceAttributes);
|
|
8598
|
+
}
|
|
8599
|
+
|
|
8319
8600
|
export declare class DataBrewSchedule {
|
|
8320
8601
|
constructor(props: {
|
|
8321
8602
|
/** Schedule cron */
|
|
@@ -11547,15 +11828,19 @@ export declare class DocDBElasticCluster {
|
|
|
11547
11828
|
|
|
11548
11829
|
export declare class DocDBEventSubscription {
|
|
11549
11830
|
constructor(props: {
|
|
11831
|
+
/** The Amazon Resource Name (ARN) of the SNS topic created for event notification. Amazon SNS creates the ARN when you create a topic and subscribe to it. */
|
|
11550
11832
|
SnsTopicArn: string;
|
|
11833
|
+
/** A Boolean value; set to true to activate the subscription, set to false to create the subscription but not active it. */
|
|
11551
11834
|
Enabled?: boolean;
|
|
11835
|
+
/** A list of event categories for a SourceType that you want to subscribe to. */
|
|
11552
11836
|
EventCategories?: string[];
|
|
11553
|
-
|
|
11837
|
+
/** The list of identifiers of the event sources for which events are returned */
|
|
11554
11838
|
SourceIds?: string[];
|
|
11555
|
-
|
|
11839
|
+
/** The type of source that is generating the events. */
|
|
11840
|
+
SourceType?: "db-cluster" | "db-cluster-snapshot" | "db-instance" | "db-parameter-group" | "db-security-group";
|
|
11841
|
+
/** The name of the subscription. */
|
|
11556
11842
|
SubscriptionName?: string;
|
|
11557
11843
|
}, attributes?: CFResourceAttributes);
|
|
11558
|
-
readonly Id: string;
|
|
11559
11844
|
}
|
|
11560
11845
|
|
|
11561
11846
|
export declare class DocDBGlobalCluster {
|
|
@@ -11828,6 +12113,58 @@ export declare class DSQLCluster {
|
|
|
11828
12113
|
readonly VpcEndpointServiceName: string;
|
|
11829
12114
|
}
|
|
11830
12115
|
|
|
12116
|
+
export declare class DynamoDBExport {
|
|
12117
|
+
constructor(props: {
|
|
12118
|
+
/** The name of the Amazon S3 bucket containing the export. */
|
|
12119
|
+
S3Bucket: string;
|
|
12120
|
+
/** The Amazon Resource Name (ARN) of the table that was exported. */
|
|
12121
|
+
TableArn: string;
|
|
12122
|
+
/** The billable size of the table export. */
|
|
12123
|
+
BilledSizeBytes?: number;
|
|
12124
|
+
/** The time at which the export task completed, in ISO 8601 format. */
|
|
12125
|
+
EndTime?: string;
|
|
12126
|
+
/** The Amazon Resource Name (ARN) of the export. */
|
|
12127
|
+
ExportArn?: string;
|
|
12128
|
+
/** The format of the exported data. */
|
|
12129
|
+
ExportFormat?: "DYNAMODB_JSON" | "ION";
|
|
12130
|
+
/** The unique identifier of the export. */
|
|
12131
|
+
ExportId?: string;
|
|
12132
|
+
/** The name of the manifest file for the export task. */
|
|
12133
|
+
ExportManifest?: string;
|
|
12134
|
+
/** Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED. */
|
|
12135
|
+
ExportStatus?: "COMPLETED" | "FAILED" | "IN_PROGRESS";
|
|
12136
|
+
/** Point in time from which table data was exported, in ISO 8601 format. */
|
|
12137
|
+
ExportTime?: string;
|
|
12138
|
+
/** The type of export that was performed. */
|
|
12139
|
+
ExportType?: "FULL_EXPORT" | "INCREMENTAL_EXPORT";
|
|
12140
|
+
/** The number of items exported. */
|
|
12141
|
+
ItemCount?: number;
|
|
12142
|
+
/** The ID of the Amazon Web Services account that owns the bucket containing the export. */
|
|
12143
|
+
S3BucketOwner?: string;
|
|
12144
|
+
/** The Amazon S3 bucket prefix used as the file name and path of the exported snapshot. */
|
|
12145
|
+
S3Prefix?: string;
|
|
12146
|
+
/** Type of encryption used on the bucket where export data is stored. */
|
|
12147
|
+
S3SseAlgorithm?: "AES256" | "KMS";
|
|
12148
|
+
/** The time at which the export task began, in ISO 8601 format. */
|
|
12149
|
+
StartTime?: string;
|
|
12150
|
+
/** Unique ID of the table that was exported. */
|
|
12151
|
+
TableId?: string;
|
|
12152
|
+
/** The name of the table that was exported. */
|
|
12153
|
+
TableName?: string;
|
|
12154
|
+
}, attributes?: CFResourceAttributes);
|
|
12155
|
+
readonly BilledSizeBytes: number;
|
|
12156
|
+
readonly EndTime: string;
|
|
12157
|
+
readonly ExportArn: string;
|
|
12158
|
+
readonly ExportId: string;
|
|
12159
|
+
readonly ExportManifest: string;
|
|
12160
|
+
readonly ExportStatus: "COMPLETED" | "FAILED" | "IN_PROGRESS";
|
|
12161
|
+
readonly ExportTime: string;
|
|
12162
|
+
readonly ItemCount: number;
|
|
12163
|
+
readonly StartTime: string;
|
|
12164
|
+
readonly TableId: string;
|
|
12165
|
+
readonly TableName: string;
|
|
12166
|
+
}
|
|
12167
|
+
|
|
11831
12168
|
export declare class EC2CapacityReservation {
|
|
11832
12169
|
constructor(props: {
|
|
11833
12170
|
InstanceCount: number;
|
|
@@ -14013,6 +14350,35 @@ export declare class EVSEnvironment {
|
|
|
14013
14350
|
readonly StateDetails: string;
|
|
14014
14351
|
}
|
|
14015
14352
|
|
|
14353
|
+
export declare class Execution {
|
|
14354
|
+
constructor(props: {
|
|
14355
|
+
/** The Amazon Resource Name (ARN) of the state machine that was executed. */
|
|
14356
|
+
StateMachineArn: string;
|
|
14357
|
+
/** The Amazon Resource Name (ARN) that identifies the execution. */
|
|
14358
|
+
ExecutionArn?: string;
|
|
14359
|
+
/** The string that contains the JSON input data for the execution. */
|
|
14360
|
+
Input?: string;
|
|
14361
|
+
/** The name of the execution. */
|
|
14362
|
+
Name?: string;
|
|
14363
|
+
/** The number of times the execution has been redriven. */
|
|
14364
|
+
RedriveCount?: number;
|
|
14365
|
+
/** Indicates whether or not an execution can be redriven. */
|
|
14366
|
+
RedriveStatus?: "NOT_REDRIVABLE" | "REDRIVABLE" | "REDRIVABLE_BY_MAP_RUN";
|
|
14367
|
+
/** The date the execution started. */
|
|
14368
|
+
StartDate?: string;
|
|
14369
|
+
/** The name of the state machine, extracted from the execution ARN. */
|
|
14370
|
+
StateMachineName?: string;
|
|
14371
|
+
/** The current status of the execution. */
|
|
14372
|
+
Status?: "ABORTED" | "FAILED" | "PENDING_REDRIVE" | "RUNNING" | "SUCCEEDED" | "TIMED_OUT";
|
|
14373
|
+
}, attributes?: CFResourceAttributes);
|
|
14374
|
+
readonly ExecutionArn: string;
|
|
14375
|
+
readonly RedriveCount: number;
|
|
14376
|
+
readonly RedriveStatus: "NOT_REDRIVABLE" | "REDRIVABLE" | "REDRIVABLE_BY_MAP_RUN";
|
|
14377
|
+
readonly StartDate: string;
|
|
14378
|
+
readonly StateMachineName: string;
|
|
14379
|
+
readonly Status: "ABORTED" | "FAILED" | "PENDING_REDRIVE" | "RUNNING" | "SUCCEEDED" | "TIMED_OUT";
|
|
14380
|
+
}
|
|
14381
|
+
|
|
14016
14382
|
export declare class ExecutionPlan {
|
|
14017
14383
|
constructor(props: {
|
|
14018
14384
|
Name: string;
|
|
@@ -14076,16 +14442,6 @@ export declare class ExperimentTrialComponent {
|
|
|
14076
14442
|
readonly LineageGroupArn: string;
|
|
14077
14443
|
}
|
|
14078
14444
|
|
|
14079
|
-
export declare class Export {
|
|
14080
|
-
constructor(props: {
|
|
14081
|
-
Export: Export_Export;
|
|
14082
|
-
ExportArn?: string;
|
|
14083
|
-
Tags?: Export_ResourceTag[];
|
|
14084
|
-
}, attributes?: CFResourceAttributes);
|
|
14085
|
-
readonly Export_ExportArn: string;
|
|
14086
|
-
readonly ExportArn: string;
|
|
14087
|
-
}
|
|
14088
|
-
|
|
14089
14445
|
export declare class ExpressGatewayService {
|
|
14090
14446
|
constructor(props: {
|
|
14091
14447
|
InfrastructureRoleArn: string;
|
|
@@ -15600,6 +15956,31 @@ export declare class GCMChannel {
|
|
|
15600
15956
|
readonly Id: string;
|
|
15601
15957
|
}
|
|
15602
15958
|
|
|
15959
|
+
export declare class GeneratedTemplate {
|
|
15960
|
+
constructor(props: {
|
|
15961
|
+
/** The name assigned to the generated template. */
|
|
15962
|
+
GeneratedTemplateName: string;
|
|
15963
|
+
/** The time the generated template was created. */
|
|
15964
|
+
CreationTime?: string;
|
|
15965
|
+
/** The Amazon Resource Name (ARN) of the generated template. */
|
|
15966
|
+
GeneratedTemplateId?: string;
|
|
15967
|
+
/** The time the generated template was last updated. */
|
|
15968
|
+
LastUpdatedTime?: string;
|
|
15969
|
+
Progress?: GeneratedTemplate_TemplateProgress;
|
|
15970
|
+
/** The status of the template generation. */
|
|
15971
|
+
Status?: "COMPLETE" | "CREATE_IN_PROGRESS" | "CREATE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_PENDING" | "FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_PENDING";
|
|
15972
|
+
TemplateConfiguration?: GeneratedTemplate_TemplateConfiguration;
|
|
15973
|
+
/** The number of warnings generated for this template. */
|
|
15974
|
+
TotalWarnings?: number;
|
|
15975
|
+
}, attributes?: CFResourceAttributes);
|
|
15976
|
+
readonly CreationTime: string;
|
|
15977
|
+
readonly GeneratedTemplateId: string;
|
|
15978
|
+
readonly LastUpdatedTime: string;
|
|
15979
|
+
readonly Progress: GeneratedTemplate_TemplateProgress;
|
|
15980
|
+
readonly Status: "COMPLETE" | "CREATE_IN_PROGRESS" | "CREATE_PENDING" | "DELETE_IN_PROGRESS" | "DELETE_PENDING" | "FAILED" | "UPDATE_IN_PROGRESS" | "UPDATE_PENDING";
|
|
15981
|
+
readonly TotalWarnings: number;
|
|
15982
|
+
}
|
|
15983
|
+
|
|
15603
15984
|
export declare class GeofenceCollection {
|
|
15604
15985
|
constructor(props: {
|
|
15605
15986
|
CollectionName: string;
|
|
@@ -15768,6 +16149,34 @@ export declare class GlobalTable {
|
|
|
15768
16149
|
readonly TableId: string;
|
|
15769
16150
|
}
|
|
15770
16151
|
|
|
16152
|
+
export declare class GlueBlueprint {
|
|
16153
|
+
constructor(props: {
|
|
16154
|
+
/** Specifies a path in Amazon S3 where the blueprint is published. */
|
|
16155
|
+
BlueprintLocation: string;
|
|
16156
|
+
/** The name of the blueprint. */
|
|
16157
|
+
Name: string;
|
|
16158
|
+
/** The Amazon Resource Name (ARN) of the blueprint. */
|
|
16159
|
+
Arn?: string;
|
|
16160
|
+
/** The date and time the blueprint was registered. */
|
|
16161
|
+
CreatedOn?: string;
|
|
16162
|
+
/** A description of the blueprint. */
|
|
16163
|
+
Description?: string;
|
|
16164
|
+
/** The date and time the blueprint was last modified. */
|
|
16165
|
+
LastModifiedOn?: string;
|
|
16166
|
+
/** A JSON string that indicates the list of parameter specifications for the blueprint. */
|
|
16167
|
+
ParameterSpec?: string;
|
|
16168
|
+
/** The status of the blueprint registration. */
|
|
16169
|
+
Status?: "ACTIVE" | "CREATING" | "FAILED" | "UPDATING";
|
|
16170
|
+
/** The tags to be applied to this blueprint. */
|
|
16171
|
+
Tags?: GlueBlueprint_Tag[];
|
|
16172
|
+
}, attributes?: CFResourceAttributes);
|
|
16173
|
+
readonly Arn: string;
|
|
16174
|
+
readonly CreatedOn: string;
|
|
16175
|
+
readonly LastModifiedOn: string;
|
|
16176
|
+
readonly ParameterSpec: string;
|
|
16177
|
+
readonly Status: "ACTIVE" | "CREATING" | "FAILED" | "UPDATING";
|
|
16178
|
+
}
|
|
16179
|
+
|
|
15771
16180
|
export declare class GlueConnection {
|
|
15772
16181
|
constructor(props: {
|
|
15773
16182
|
CatalogId: string;
|
|
@@ -16067,6 +16476,18 @@ export declare class GreengrassGroup {
|
|
|
16067
16476
|
readonly RoleAttachedAt: string;
|
|
16068
16477
|
}
|
|
16069
16478
|
|
|
16479
|
+
export declare class GreengrassV2Component {
|
|
16480
|
+
constructor(props: {
|
|
16481
|
+
/** The ARN of the component. */
|
|
16482
|
+
Arn?: string;
|
|
16483
|
+
/** The name of the component. */
|
|
16484
|
+
ComponentName?: string;
|
|
16485
|
+
/** Tags associated with the component. */
|
|
16486
|
+
Tags?: Record<string, unknown>[];
|
|
16487
|
+
}, attributes?: CFResourceAttributes);
|
|
16488
|
+
readonly Arn: string;
|
|
16489
|
+
}
|
|
16490
|
+
|
|
16070
16491
|
export declare class GreengrassV2Deployment {
|
|
16071
16492
|
constructor(props: {
|
|
16072
16493
|
TargetArn: string;
|
|
@@ -16364,6 +16785,32 @@ export declare class Harness {
|
|
|
16364
16785
|
readonly Version: string;
|
|
16365
16786
|
}
|
|
16366
16787
|
|
|
16788
|
+
export declare class HarvestJob {
|
|
16789
|
+
constructor(props: {
|
|
16790
|
+
/** The end of the time-window which will be harvested. */
|
|
16791
|
+
EndTime: string;
|
|
16792
|
+
/** The ID of the HarvestJob. The ID must be unique within the region and it cannot be changed after the HarvestJob is submitted. */
|
|
16793
|
+
Id: string;
|
|
16794
|
+
/** The ID of the OriginEndpoint that the HarvestJob will harvest from. */
|
|
16795
|
+
OriginEndpointId: string;
|
|
16796
|
+
S3Destination: HarvestJob_S3Destination;
|
|
16797
|
+
/** The start of the time-window which will be harvested. */
|
|
16798
|
+
StartTime: string;
|
|
16799
|
+
/** The Amazon Resource Name (ARN) assigned to the HarvestJob. */
|
|
16800
|
+
Arn?: string;
|
|
16801
|
+
/** The ID of the Channel that the HarvestJob will harvest from. */
|
|
16802
|
+
ChannelId?: string;
|
|
16803
|
+
/** The date and time the HarvestJob was submitted. */
|
|
16804
|
+
CreatedAt?: string;
|
|
16805
|
+
/** The current status of the HarvestJob. */
|
|
16806
|
+
Status?: "FAILED" | "IN_PROGRESS" | "SUCCEEDED";
|
|
16807
|
+
}, attributes?: CFResourceAttributes);
|
|
16808
|
+
readonly Arn: string;
|
|
16809
|
+
readonly ChannelId: string;
|
|
16810
|
+
readonly CreatedAt: string;
|
|
16811
|
+
readonly Status: "FAILED" | "IN_PROGRESS" | "SUCCEEDED";
|
|
16812
|
+
}
|
|
16813
|
+
|
|
16367
16814
|
export declare class HealthCheck {
|
|
16368
16815
|
constructor(props: {
|
|
16369
16816
|
/** A complex type that contains information about the health check. */
|
|
@@ -19827,6 +20274,57 @@ export declare class Ledger {
|
|
|
19827
20274
|
readonly Id: string;
|
|
19828
20275
|
}
|
|
19829
20276
|
|
|
20277
|
+
export declare class LegalHold {
|
|
20278
|
+
constructor(props: {
|
|
20279
|
+
/** The description of the legal hold. */
|
|
20280
|
+
Description: string;
|
|
20281
|
+
/** The criteria to assign a set of resources, such as resource types or backup vaults. */
|
|
20282
|
+
RecoveryPointSelection: Record<string, unknown>;
|
|
20283
|
+
/** The title of the legal hold. */
|
|
20284
|
+
Title: string;
|
|
20285
|
+
/** The Amazon Resource Name (ARN) of the legal hold. */
|
|
20286
|
+
Arn?: string;
|
|
20287
|
+
/** The time when the legal hold was created. */
|
|
20288
|
+
CreationDate?: string;
|
|
20289
|
+
/** The ID of the legal hold. */
|
|
20290
|
+
LegalHoldId?: string;
|
|
20291
|
+
/** The status of the legal hold. */
|
|
20292
|
+
Status?: "ACTIVE" | "CANCELED" | "CANCELING" | "CREATING";
|
|
20293
|
+
/** Optional tags to include. */
|
|
20294
|
+
Tags?: Record<string, unknown>[];
|
|
20295
|
+
}, attributes?: CFResourceAttributes);
|
|
20296
|
+
readonly Arn: string;
|
|
20297
|
+
readonly CreationDate: string;
|
|
20298
|
+
readonly LegalHoldId: string;
|
|
20299
|
+
readonly Status: "ACTIVE" | "CANCELED" | "CANCELING" | "CREATING";
|
|
20300
|
+
}
|
|
20301
|
+
|
|
20302
|
+
export declare class Lens {
|
|
20303
|
+
constructor(props: {
|
|
20304
|
+
/** The description of the lens. */
|
|
20305
|
+
Description?: string;
|
|
20306
|
+
/** The JSON representation of a lens. */
|
|
20307
|
+
JSONString?: string;
|
|
20308
|
+
/** The ARN of the lens. */
|
|
20309
|
+
LensArn?: string;
|
|
20310
|
+
/** The unique identifier of the lens. */
|
|
20311
|
+
LensId?: string;
|
|
20312
|
+
/** The version of the lens. */
|
|
20313
|
+
LensVersion?: string;
|
|
20314
|
+
/** The full name of the lens. */
|
|
20315
|
+
Name?: string;
|
|
20316
|
+
/** The Amazon Web Services account ID that owns the lens. */
|
|
20317
|
+
Owner?: string;
|
|
20318
|
+
/** The tags assigned to the lens. */
|
|
20319
|
+
Tags?: Record<string, unknown>[];
|
|
20320
|
+
}, attributes?: CFResourceAttributes);
|
|
20321
|
+
readonly Description: string;
|
|
20322
|
+
readonly LensArn: string;
|
|
20323
|
+
readonly LensId: string;
|
|
20324
|
+
readonly Name: string;
|
|
20325
|
+
readonly Owner: string;
|
|
20326
|
+
}
|
|
20327
|
+
|
|
19830
20328
|
export declare class LexResourcePolicy {
|
|
19831
20329
|
constructor(props: {
|
|
19832
20330
|
Policy: Record<string, unknown>;
|
|
@@ -21246,6 +21744,24 @@ export declare class M2Environment {
|
|
|
21246
21744
|
readonly EnvironmentId: string;
|
|
21247
21745
|
}
|
|
21248
21746
|
|
|
21747
|
+
export declare class MacieSession {
|
|
21748
|
+
constructor(props: {
|
|
21749
|
+
/** The status of automated sensitive data discovery for the Macie session. */
|
|
21750
|
+
AutomatedDiscoveryStatus?: "DISABLED" | "ENABLED";
|
|
21751
|
+
/** AWS account ID of customer */
|
|
21752
|
+
AwsAccountId?: string;
|
|
21753
|
+
/** A enumeration value that specifies how frequently finding updates are published. */
|
|
21754
|
+
FindingPublishingFrequency?: "FIFTEEN_MINUTES" | "ONE_HOUR" | "SIX_HOURS";
|
|
21755
|
+
/** Service role used by Macie */
|
|
21756
|
+
ServiceRole?: string;
|
|
21757
|
+
/** A enumeration value that specifies the status of the Macie Session. */
|
|
21758
|
+
Status?: "ENABLED" | "PAUSED";
|
|
21759
|
+
}, attributes?: CFResourceAttributes);
|
|
21760
|
+
readonly AutomatedDiscoveryStatus: "DISABLED" | "ENABLED";
|
|
21761
|
+
readonly AwsAccountId: string;
|
|
21762
|
+
readonly ServiceRole: string;
|
|
21763
|
+
}
|
|
21764
|
+
|
|
21249
21765
|
export declare class Macro {
|
|
21250
21766
|
constructor(props: {
|
|
21251
21767
|
FunctionName: string;
|
|
@@ -21538,6 +22054,24 @@ Example: arn:aws:notifications::381491923782:managed-notification-configuration/
|
|
|
21538
22054
|
}, attributes?: CFResourceAttributes);
|
|
21539
22055
|
}
|
|
21540
22056
|
|
|
22057
|
+
export declare class ManagedNotificationConfiguration {
|
|
22058
|
+
constructor(props: {
|
|
22059
|
+
/** The ARN of the ManagedNotificationConfiguration. */
|
|
22060
|
+
Arn?: string;
|
|
22061
|
+
/** The category of the ManagedNotificationConfiguration. */
|
|
22062
|
+
Category?: string;
|
|
22063
|
+
/** The description of the ManagedNotificationConfiguration. */
|
|
22064
|
+
Description?: string;
|
|
22065
|
+
/** The name of the ManagedNotificationConfiguration. */
|
|
22066
|
+
Name?: string;
|
|
22067
|
+
/** The subCategory of the ManagedNotificationConfiguration. */
|
|
22068
|
+
SubCategory?: string;
|
|
22069
|
+
}, attributes?: CFResourceAttributes);
|
|
22070
|
+
readonly Arn: string;
|
|
22071
|
+
readonly Description: string;
|
|
22072
|
+
readonly Name: string;
|
|
22073
|
+
}
|
|
22074
|
+
|
|
21541
22075
|
export declare class ManagedPolicy {
|
|
21542
22076
|
constructor(props: {
|
|
21543
22077
|
/** The JSON policy document that you want to use as the content for the new policy.
|
|
@@ -21612,6 +22146,38 @@ export declare class Map {
|
|
|
21612
22146
|
readonly UpdateTime: string;
|
|
21613
22147
|
}
|
|
21614
22148
|
|
|
22149
|
+
export declare class MapRun {
|
|
22150
|
+
constructor(props: {
|
|
22151
|
+
/** The Amazon Resource Name (ARN) that identifies the execution in which the Map Run was started. */
|
|
22152
|
+
ExecutionArn?: string;
|
|
22153
|
+
ExecutionCounts?: MapRun_MapRunExecutionCounts;
|
|
22154
|
+
ItemCounts?: MapRun_MapRunItemCounts;
|
|
22155
|
+
/** The Amazon Resource Name (ARN) that identifies the Map Run. */
|
|
22156
|
+
MapRunArn?: string;
|
|
22157
|
+
/** The maximum number of child workflow executions configured to run in parallel for the Map Run at the same time. */
|
|
22158
|
+
MaxConcurrency?: number;
|
|
22159
|
+
/** The date when the Map Run was started. */
|
|
22160
|
+
StartDate?: string;
|
|
22161
|
+
/** The current status of the Map Run. */
|
|
22162
|
+
Status?: "ABORTED" | "FAILED" | "RUNNING" | "SUCCEEDED";
|
|
22163
|
+
/** The date when the Map Run was stopped. */
|
|
22164
|
+
StopDate?: string;
|
|
22165
|
+
/** The maximum number of failed child workflow executions before the Map Run fails. */
|
|
22166
|
+
ToleratedFailureCount?: number;
|
|
22167
|
+
/** The maximum percentage of failed child workflow executions before the Map Run fails. */
|
|
22168
|
+
ToleratedFailurePercentage?: number;
|
|
22169
|
+
}, attributes?: CFResourceAttributes);
|
|
22170
|
+
readonly ExecutionCounts: MapRun_MapRunExecutionCounts;
|
|
22171
|
+
readonly ItemCounts: MapRun_MapRunItemCounts;
|
|
22172
|
+
readonly MapRunArn: string;
|
|
22173
|
+
readonly MaxConcurrency: number;
|
|
22174
|
+
readonly StartDate: string;
|
|
22175
|
+
readonly Status: "ABORTED" | "FAILED" | "RUNNING" | "SUCCEEDED";
|
|
22176
|
+
readonly StopDate: string;
|
|
22177
|
+
readonly ToleratedFailureCount: number;
|
|
22178
|
+
readonly ToleratedFailurePercentage: number;
|
|
22179
|
+
}
|
|
22180
|
+
|
|
21615
22181
|
export declare class Master {
|
|
21616
22182
|
constructor(props: {
|
|
21617
22183
|
/** Unique ID of the detector of the GuardDuty member account. */
|
|
@@ -22117,6 +22683,41 @@ export declare class MediaTailorChannelPolicy {
|
|
|
22117
22683
|
}, attributes?: CFResourceAttributes);
|
|
22118
22684
|
}
|
|
22119
22685
|
|
|
22686
|
+
export declare class MedicalTranscriptionJob {
|
|
22687
|
+
constructor(props: {
|
|
22688
|
+
/** The language code for the language spoken in the input media file. Must be en-US. */
|
|
22689
|
+
LanguageCode: string;
|
|
22690
|
+
/** Describes the Amazon S3 location of the media file */
|
|
22691
|
+
Media: MedicalTranscriptionJob_Media;
|
|
22692
|
+
/** A unique name for the medical transcription job */
|
|
22693
|
+
MedicalTranscriptionJobName: string;
|
|
22694
|
+
/** The medical specialty represented in the media */
|
|
22695
|
+
Specialty: "PRIMARYCARE";
|
|
22696
|
+
/** Whether the input media is a dictation or conversation */
|
|
22697
|
+
Type: "CONVERSATION" | "DICTATION";
|
|
22698
|
+
/** The Amazon Resource Name (ARN) of the medical transcription job */
|
|
22699
|
+
Arn?: string;
|
|
22700
|
+
/** The date and time the medical transcription job was created */
|
|
22701
|
+
CreationTime?: string;
|
|
22702
|
+
/** The format of the input media file */
|
|
22703
|
+
MediaFormat?: "amr" | "flac" | "m4a" | "mp3" | "mp4" | "ogg" | "wav" | "webm";
|
|
22704
|
+
/** The sample rate of the audio in hertz */
|
|
22705
|
+
MediaSampleRateHertz?: number;
|
|
22706
|
+
/** Settings for the medical transcription job */
|
|
22707
|
+
Settings?: MedicalTranscriptionJob_MedicalTranscriptionSetting;
|
|
22708
|
+
/** Tags associated with the medical transcription job */
|
|
22709
|
+
Tags?: MedicalTranscriptionJob_Tag[];
|
|
22710
|
+
/** Provides the Amazon S3 URI for the transcript */
|
|
22711
|
+
Transcript?: MedicalTranscriptionJob_MedicalTranscript;
|
|
22712
|
+
/** The status of the medical transcription job */
|
|
22713
|
+
TranscriptionJobStatus?: "COMPLETED" | "FAILED" | "IN_PROGRESS" | "QUEUED";
|
|
22714
|
+
}, attributes?: CFResourceAttributes);
|
|
22715
|
+
readonly Arn: string;
|
|
22716
|
+
readonly CreationTime: string;
|
|
22717
|
+
readonly Transcript: MedicalTranscriptionJob_MedicalTranscript;
|
|
22718
|
+
readonly TranscriptionJobStatus: "COMPLETED" | "FAILED" | "IN_PROGRESS" | "QUEUED";
|
|
22719
|
+
}
|
|
22720
|
+
|
|
22120
22721
|
export declare class MemberInvitation {
|
|
22121
22722
|
constructor(props: {
|
|
22122
22723
|
/** The ARN of the graph to which the member account will be invited */
|
|
@@ -23341,6 +23942,23 @@ export declare class MultiRegionEndpoint {
|
|
|
23341
23942
|
}, attributes?: CFResourceAttributes);
|
|
23342
23943
|
}
|
|
23343
23944
|
|
|
23945
|
+
export declare class MultiRegionParameterGroup {
|
|
23946
|
+
constructor(props: {
|
|
23947
|
+
/** The Amazon Resource Name (ARN) of the multi-region parameter group. */
|
|
23948
|
+
Arn?: string;
|
|
23949
|
+
/** A description of the multi-region parameter group. */
|
|
23950
|
+
Description?: string;
|
|
23951
|
+
/** The name of the parameter group family that this multi-region parameter group is compatible with. */
|
|
23952
|
+
Family?: string;
|
|
23953
|
+
/** The name of the multi-region parameter group. */
|
|
23954
|
+
MultiRegionParameterGroupName?: string;
|
|
23955
|
+
}, attributes?: CFResourceAttributes);
|
|
23956
|
+
readonly Arn: string;
|
|
23957
|
+
readonly Description: string;
|
|
23958
|
+
readonly Family: string;
|
|
23959
|
+
readonly MultiRegionParameterGroupName: string;
|
|
23960
|
+
}
|
|
23961
|
+
|
|
23344
23962
|
export declare class MWAAEnvironment {
|
|
23345
23963
|
constructor(props: {
|
|
23346
23964
|
Name: string;
|
|
@@ -23890,6 +24508,33 @@ export declare class NetworkFirewallRuleGroup {
|
|
|
23890
24508
|
readonly RuleGroupId: string;
|
|
23891
24509
|
}
|
|
23892
24510
|
|
|
24511
|
+
export declare class NetworkFlowMonitorMonitor {
|
|
24512
|
+
constructor(props: {
|
|
24513
|
+
/** The local resources to monitor. */
|
|
24514
|
+
LocalResources: NetworkFlowMonitorMonitor_MonitorLocalResource[];
|
|
24515
|
+
/** The name of the monitor. */
|
|
24516
|
+
MonitorName: string;
|
|
24517
|
+
/** The Amazon Resource Name (ARN) of the monitor. */
|
|
24518
|
+
Arn?: string;
|
|
24519
|
+
/** The date and time when the monitor was created. */
|
|
24520
|
+
CreatedAt?: string;
|
|
24521
|
+
/** The date and time when the monitor was last modified. */
|
|
24522
|
+
ModifiedAt?: string;
|
|
24523
|
+
/** The status of the monitor. */
|
|
24524
|
+
MonitorStatus?: "ACTIVE" | "DELETING" | "ERROR" | "INACTIVE" | "PENDING";
|
|
24525
|
+
/** The remote resources to monitor. */
|
|
24526
|
+
RemoteResources?: NetworkFlowMonitorMonitor_MonitorRemoteResource[];
|
|
24527
|
+
/** The Amazon Resource Name (ARN) of the scope for the monitor. */
|
|
24528
|
+
ScopeArn?: string;
|
|
24529
|
+
/** The tags for the monitor. */
|
|
24530
|
+
Tags?: NetworkFlowMonitorMonitor_Tag[];
|
|
24531
|
+
}, attributes?: CFResourceAttributes);
|
|
24532
|
+
readonly Arn: string;
|
|
24533
|
+
readonly CreatedAt: string;
|
|
24534
|
+
readonly ModifiedAt: string;
|
|
24535
|
+
readonly MonitorStatus: "ACTIVE" | "DELETING" | "ERROR" | "INACTIVE" | "PENDING";
|
|
24536
|
+
}
|
|
24537
|
+
|
|
23893
24538
|
export declare class NetworkInsightsAccessScope {
|
|
23894
24539
|
constructor(props: {
|
|
23895
24540
|
CreatedDate?: string;
|
|
@@ -24239,6 +24884,36 @@ export declare class Nodegroup {
|
|
|
24239
24884
|
readonly Id: string;
|
|
24240
24885
|
}
|
|
24241
24886
|
|
|
24887
|
+
export declare class NotebookExecution {
|
|
24888
|
+
constructor(props: {
|
|
24889
|
+
/** The Amazon Resource Name (ARN) of the notebook execution. */
|
|
24890
|
+
Arn?: string;
|
|
24891
|
+
/** The environment variables associated with the notebook execution. Keys must be prefixed with KERNEL_ (except LOG_CONTEXT). */
|
|
24892
|
+
EnvironmentVariables?: Record<string, unknown>;
|
|
24893
|
+
ExecutionEngine?: NotebookExecution_ExecutionEngineConfig;
|
|
24894
|
+
/** The unique identifier of the notebook execution. */
|
|
24895
|
+
NotebookExecutionId?: string;
|
|
24896
|
+
/** An optional name for the notebook execution. */
|
|
24897
|
+
NotebookExecutionName?: string;
|
|
24898
|
+
/** Input parameters in JSON format passed to the Amazon EMR Notebook at runtime for execution. */
|
|
24899
|
+
NotebookParams?: string;
|
|
24900
|
+
NotebookS3Location?: NotebookExecution_NotebookS3Location;
|
|
24901
|
+
/** The output format for the notebook execution. */
|
|
24902
|
+
OutputNotebookFormat?: "HTML";
|
|
24903
|
+
OutputNotebookS3Location?: NotebookExecution_OutputNotebookS3Location;
|
|
24904
|
+
/** The timestamp when notebook execution started. */
|
|
24905
|
+
StartTime?: string;
|
|
24906
|
+
/** The status of the notebook execution. */
|
|
24907
|
+
Status?: "FAILED" | "FAILING" | "FINISHED" | "FINISHING" | "RUNNING" | "STARTING" | "START_PENDING" | "STOPPED" | "STOPPING" | "STOP_PENDING";
|
|
24908
|
+
/** A list of tags associated with a notebook execution. */
|
|
24909
|
+
Tags?: NotebookExecution_Tag[];
|
|
24910
|
+
}, attributes?: CFResourceAttributes);
|
|
24911
|
+
readonly Arn: string;
|
|
24912
|
+
readonly NotebookExecutionId: string;
|
|
24913
|
+
readonly StartTime: string;
|
|
24914
|
+
readonly Status: "FAILED" | "FAILING" | "FINISHED" | "FINISHING" | "RUNNING" | "STARTING" | "START_PENDING" | "STOPPED" | "STOPPING" | "STOP_PENDING";
|
|
24915
|
+
}
|
|
24916
|
+
|
|
24242
24917
|
export declare class NotebookInstance {
|
|
24243
24918
|
constructor(props: {
|
|
24244
24919
|
InstanceType: string;
|
|
@@ -24432,6 +25107,32 @@ export declare class OAuthClientApplication {
|
|
|
24432
25107
|
readonly LastUpdatedTime: string;
|
|
24433
25108
|
}
|
|
24434
25109
|
|
|
25110
|
+
export declare class Objective {
|
|
25111
|
+
constructor(props: {
|
|
25112
|
+
/** The Amazon Resource Name (ARN) that identifies the objective. */
|
|
25113
|
+
Arn?: string;
|
|
25114
|
+
/** The time when the objective was created. */
|
|
25115
|
+
CreateTime?: string;
|
|
25116
|
+
/** The description of the objective. */
|
|
25117
|
+
Description?: string;
|
|
25118
|
+
/** The domain that the objective belongs to. */
|
|
25119
|
+
Domain?: Record<string, unknown>;
|
|
25120
|
+
/** The time when the objective was most recently updated. */
|
|
25121
|
+
LastUpdateTime?: string;
|
|
25122
|
+
/** The name of the objective. */
|
|
25123
|
+
Name?: string;
|
|
25124
|
+
/** The unique identifier of the objective. */
|
|
25125
|
+
ObjectiveId?: string;
|
|
25126
|
+
}, attributes?: CFResourceAttributes);
|
|
25127
|
+
readonly Arn: string;
|
|
25128
|
+
readonly CreateTime: string;
|
|
25129
|
+
readonly Description: string;
|
|
25130
|
+
readonly Domain: Record<string, unknown>;
|
|
25131
|
+
readonly LastUpdateTime: string;
|
|
25132
|
+
readonly Name: string;
|
|
25133
|
+
readonly ObjectiveId: string;
|
|
25134
|
+
}
|
|
25135
|
+
|
|
24435
25136
|
export declare class ObjectType {
|
|
24436
25137
|
constructor(props: {
|
|
24437
25138
|
/** Description of the profile object type. */
|
|
@@ -24583,6 +25284,43 @@ export declare class OdbPeeringConnection {
|
|
|
24583
25284
|
readonly PeerNetworkCidrs: string[];
|
|
24584
25285
|
}
|
|
24585
25286
|
|
|
25287
|
+
export declare class Offering {
|
|
25288
|
+
constructor(props: {
|
|
25289
|
+
/** Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321' */
|
|
25290
|
+
Arn?: string;
|
|
25291
|
+
/** Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD' */
|
|
25292
|
+
CurrencyCode?: string;
|
|
25293
|
+
/** Lease duration, e.g. '12' */
|
|
25294
|
+
Duration?: number;
|
|
25295
|
+
/** Units for duration, e.g. 'MONTHS' */
|
|
25296
|
+
DurationUnits?: "MONTHS";
|
|
25297
|
+
/** One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering */
|
|
25298
|
+
FixedPrice?: number;
|
|
25299
|
+
/** Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)' */
|
|
25300
|
+
OfferingDescription?: string;
|
|
25301
|
+
/** Unique offering ID, e.g. '87654321' */
|
|
25302
|
+
OfferingId?: string;
|
|
25303
|
+
/** Offering type, e.g. 'NO_UPFRONT' */
|
|
25304
|
+
OfferingType?: "NO_UPFRONT";
|
|
25305
|
+
/** AWS region, e.g. 'us-west-2' */
|
|
25306
|
+
Region?: string;
|
|
25307
|
+
ResourceSpecification?: Offering_ReservationResourceSpecification;
|
|
25308
|
+
/** Recurring usage charge for each reserved resource, e.g. '157.0' */
|
|
25309
|
+
UsagePrice?: number;
|
|
25310
|
+
}, attributes?: CFResourceAttributes);
|
|
25311
|
+
readonly Arn: string;
|
|
25312
|
+
readonly CurrencyCode: string;
|
|
25313
|
+
readonly Duration: number;
|
|
25314
|
+
readonly DurationUnits: "MONTHS";
|
|
25315
|
+
readonly FixedPrice: number;
|
|
25316
|
+
readonly OfferingDescription: string;
|
|
25317
|
+
readonly OfferingId: string;
|
|
25318
|
+
readonly OfferingType: "NO_UPFRONT";
|
|
25319
|
+
readonly Region: string;
|
|
25320
|
+
readonly ResourceSpecification: Offering_ReservationResourceSpecification;
|
|
25321
|
+
readonly UsagePrice: number;
|
|
25322
|
+
}
|
|
25323
|
+
|
|
24586
25324
|
export declare class OIDCProvider {
|
|
24587
25325
|
constructor(props: {
|
|
24588
25326
|
/** Amazon Resource Name (ARN) of the OIDC provider */
|
|
@@ -24856,6 +25594,52 @@ export declare class OpenSearchServiceDomain {
|
|
|
24856
25594
|
readonly ServiceSoftwareOptions: OpenSearchServiceDomain_ServiceSoftwareOptions;
|
|
24857
25595
|
}
|
|
24858
25596
|
|
|
25597
|
+
export declare class OpsItem {
|
|
25598
|
+
constructor(props: {
|
|
25599
|
+
/** The description of the OpsItem. */
|
|
25600
|
+
Description: string;
|
|
25601
|
+
/** The origin of the OpsItem. */
|
|
25602
|
+
Source: string;
|
|
25603
|
+
/** The title of the OpsItem. */
|
|
25604
|
+
Title: string;
|
|
25605
|
+
/** The category of the OpsItem. */
|
|
25606
|
+
Category?: string;
|
|
25607
|
+
/** The user who created the OpsItem. */
|
|
25608
|
+
CreatedBy?: string;
|
|
25609
|
+
/** The time the OpsItem was created. */
|
|
25610
|
+
CreatedTime?: string;
|
|
25611
|
+
/** The user who last modified the OpsItem. */
|
|
25612
|
+
LastModifiedBy?: string;
|
|
25613
|
+
/** The time the OpsItem was last modified. */
|
|
25614
|
+
LastModifiedTime?: string;
|
|
25615
|
+
/** The ARN of the OpsItem. */
|
|
25616
|
+
OpsItemArn?: string;
|
|
25617
|
+
/** The ID of the OpsItem. */
|
|
25618
|
+
OpsItemId?: string;
|
|
25619
|
+
/** The type of OpsItem. */
|
|
25620
|
+
OpsItemType?: string;
|
|
25621
|
+
/** The priority of the OpsItem. */
|
|
25622
|
+
Priority?: number;
|
|
25623
|
+
/** The severity of the OpsItem. */
|
|
25624
|
+
Severity?: string;
|
|
25625
|
+
/** The status of the OpsItem. */
|
|
25626
|
+
Status?: string;
|
|
25627
|
+
/** Tags for the OpsItem. */
|
|
25628
|
+
Tags?: OpsItem_Tag[];
|
|
25629
|
+
/** The version of the OpsItem. */
|
|
25630
|
+
Version?: string;
|
|
25631
|
+
}, attributes?: CFResourceAttributes);
|
|
25632
|
+
readonly CreatedBy: string;
|
|
25633
|
+
readonly CreatedTime: string;
|
|
25634
|
+
readonly LastModifiedBy: string;
|
|
25635
|
+
readonly LastModifiedTime: string;
|
|
25636
|
+
readonly OpsItemArn: string;
|
|
25637
|
+
readonly OpsItemId: string;
|
|
25638
|
+
readonly OpsItemType: string;
|
|
25639
|
+
readonly Status: string;
|
|
25640
|
+
readonly Version: string;
|
|
25641
|
+
}
|
|
25642
|
+
|
|
24859
25643
|
export declare class OptionGroup {
|
|
24860
25644
|
constructor(props: {
|
|
24861
25645
|
/** Specifies the name of the engine that this option group should be associated with.
|
|
@@ -25316,28 +26100,6 @@ export declare class Owner {
|
|
|
25316
26100
|
readonly OwnerType: "GROUP" | "USER";
|
|
25317
26101
|
}
|
|
25318
26102
|
|
|
25319
|
-
export declare class Package {
|
|
25320
|
-
constructor(props: {
|
|
25321
|
-
/** A name for the package. */
|
|
25322
|
-
PackageName: string;
|
|
25323
|
-
Arn?: string;
|
|
25324
|
-
CreatedTime?: number;
|
|
25325
|
-
PackageId?: string;
|
|
25326
|
-
/** A storage location. */
|
|
25327
|
-
StorageLocation?: Package_StorageLocation;
|
|
25328
|
-
/** Tags for the package. */
|
|
25329
|
-
Tags?: any;
|
|
25330
|
-
}, attributes?: CFResourceAttributes);
|
|
25331
|
-
readonly Arn: string;
|
|
25332
|
-
readonly CreatedTime: number;
|
|
25333
|
-
readonly PackageId: string;
|
|
25334
|
-
readonly StorageLocation_BinaryPrefixLocation: string;
|
|
25335
|
-
readonly StorageLocation_Bucket: string;
|
|
25336
|
-
readonly StorageLocation_GeneratedPrefixLocation: string;
|
|
25337
|
-
readonly StorageLocation_ManifestPrefixLocation: string;
|
|
25338
|
-
readonly StorageLocation_RepoPrefixLocation: string;
|
|
25339
|
-
}
|
|
25340
|
-
|
|
25341
26103
|
export declare class PackageGroup {
|
|
25342
26104
|
constructor(props: {
|
|
25343
26105
|
/** The name of the domain that contains the package group. */
|
|
@@ -25430,6 +26192,28 @@ export declare class PackagingGroup {
|
|
|
25430
26192
|
readonly DomainName: string;
|
|
25431
26193
|
}
|
|
25432
26194
|
|
|
26195
|
+
export declare class PanoramaPackage {
|
|
26196
|
+
constructor(props: {
|
|
26197
|
+
/** A name for the package. */
|
|
26198
|
+
PackageName: string;
|
|
26199
|
+
Arn?: string;
|
|
26200
|
+
CreatedTime?: number;
|
|
26201
|
+
PackageId?: string;
|
|
26202
|
+
/** A storage location. */
|
|
26203
|
+
StorageLocation?: PanoramaPackage_StorageLocation;
|
|
26204
|
+
/** Tags for the package. */
|
|
26205
|
+
Tags?: any;
|
|
26206
|
+
}, attributes?: CFResourceAttributes);
|
|
26207
|
+
readonly Arn: string;
|
|
26208
|
+
readonly CreatedTime: number;
|
|
26209
|
+
readonly PackageId: string;
|
|
26210
|
+
readonly StorageLocation_BinaryPrefixLocation: string;
|
|
26211
|
+
readonly StorageLocation_Bucket: string;
|
|
26212
|
+
readonly StorageLocation_GeneratedPrefixLocation: string;
|
|
26213
|
+
readonly StorageLocation_ManifestPrefixLocation: string;
|
|
26214
|
+
readonly StorageLocation_RepoPrefixLocation: string;
|
|
26215
|
+
}
|
|
26216
|
+
|
|
25433
26217
|
export declare class Partition {
|
|
25434
26218
|
constructor(props: {
|
|
25435
26219
|
CatalogId: string;
|
|
@@ -25888,6 +26672,37 @@ export declare class PersonalizeDatasetGroup {
|
|
|
25888
26672
|
readonly DatasetGroupArn: string;
|
|
25889
26673
|
}
|
|
25890
26674
|
|
|
26675
|
+
export declare class PersonalizeRecipe {
|
|
26676
|
+
constructor(props: {
|
|
26677
|
+
/** The Amazon Resource Name (ARN) of the algorithm that Amazon Personalize uses to train the model. */
|
|
26678
|
+
AlgorithmArn?: string;
|
|
26679
|
+
/** The date and time (in Unix format) that the recipe was created. */
|
|
26680
|
+
CreationDateTime?: string;
|
|
26681
|
+
/** The description of the recipe. */
|
|
26682
|
+
Description?: string;
|
|
26683
|
+
/** The ARN of the FeatureTransformation object. */
|
|
26684
|
+
FeatureTransformationArn?: string;
|
|
26685
|
+
/** The date and time (in Unix format) that the recipe was last updated. */
|
|
26686
|
+
LastUpdatedDateTime?: string;
|
|
26687
|
+
/** The name of the recipe. */
|
|
26688
|
+
Name?: string;
|
|
26689
|
+
/** The Amazon Resource Name (ARN) of the recipe. */
|
|
26690
|
+
RecipeArn?: string;
|
|
26691
|
+
/** One of the following values: PERSONALIZED_RANKING, RELATED_ITEMS, USER_PERSONALIZATION. */
|
|
26692
|
+
RecipeType?: string;
|
|
26693
|
+
/** The status of the recipe. */
|
|
26694
|
+
Status?: string;
|
|
26695
|
+
}, attributes?: CFResourceAttributes);
|
|
26696
|
+
readonly AlgorithmArn: string;
|
|
26697
|
+
readonly CreationDateTime: string;
|
|
26698
|
+
readonly Description: string;
|
|
26699
|
+
readonly FeatureTransformationArn: string;
|
|
26700
|
+
readonly LastUpdatedDateTime: string;
|
|
26701
|
+
readonly RecipeArn: string;
|
|
26702
|
+
readonly RecipeType: string;
|
|
26703
|
+
readonly Status: string;
|
|
26704
|
+
}
|
|
26705
|
+
|
|
25891
26706
|
export declare class PersonalizeSchema {
|
|
25892
26707
|
constructor(props: {
|
|
25893
26708
|
/** Name for the schema. */
|
|
@@ -26024,6 +26839,31 @@ export declare class Pipe {
|
|
|
26024
26839
|
readonly StateReason: string;
|
|
26025
26840
|
}
|
|
26026
26841
|
|
|
26842
|
+
export declare class PipelineBlueprint {
|
|
26843
|
+
constructor(props: {
|
|
26844
|
+
/** The Amazon Resource Name (ARN) of the pipeline blueprint. */
|
|
26845
|
+
Arn?: string;
|
|
26846
|
+
/** The name of the blueprint. */
|
|
26847
|
+
BlueprintName?: string;
|
|
26848
|
+
/** A description of the blueprint. */
|
|
26849
|
+
DisplayDescription?: string;
|
|
26850
|
+
/** The display name of the blueprint. */
|
|
26851
|
+
DisplayName?: string;
|
|
26852
|
+
/** The YAML configuration of the blueprint. */
|
|
26853
|
+
PipelineConfigurationBody?: string;
|
|
26854
|
+
/** The name of the service that the blueprint is associated with. */
|
|
26855
|
+
Service?: string;
|
|
26856
|
+
/** The use case that the blueprint relates to. */
|
|
26857
|
+
UseCase?: string;
|
|
26858
|
+
}, attributes?: CFResourceAttributes);
|
|
26859
|
+
readonly Arn: string;
|
|
26860
|
+
readonly DisplayDescription: string;
|
|
26861
|
+
readonly DisplayName: string;
|
|
26862
|
+
readonly PipelineConfigurationBody: string;
|
|
26863
|
+
readonly Service: string;
|
|
26864
|
+
readonly UseCase: string;
|
|
26865
|
+
}
|
|
26866
|
+
|
|
26027
26867
|
export declare class PlaceIndex {
|
|
26028
26868
|
constructor(props: {
|
|
26029
26869
|
DataSource: string;
|
|
@@ -27497,6 +28337,54 @@ export declare class QuickResponse {
|
|
|
27497
28337
|
readonly Status: QuickResponse_Status;
|
|
27498
28338
|
}
|
|
27499
28339
|
|
|
28340
|
+
export declare class QuickSightAgent {
|
|
28341
|
+
constructor(props: {
|
|
28342
|
+
/** The unique identifier for the agent. */
|
|
28343
|
+
AgentId: string;
|
|
28344
|
+
/** The ID of the Amazon Web Services account where the agent is being created. */
|
|
28345
|
+
AwsAccountId: string;
|
|
28346
|
+
/** The display name of the agent. */
|
|
28347
|
+
Name: string;
|
|
28348
|
+
/** A list of ActionConnector ARNs (max 10) attached to the agent. */
|
|
28349
|
+
ActionConnectors?: string[];
|
|
28350
|
+
/** The lifecycle stage of the agent. PREVIEW or PUBLISHED. */
|
|
28351
|
+
AgentLifecycle?: "PREVIEW" | "PUBLISHED";
|
|
28352
|
+
/** The current status of the agent. One of ACTIVE, CREATING, UPDATING, or FAILED. */
|
|
28353
|
+
AgentStatus?: "ACTIVE" | "CREATING" | "FAILED" | "UPDATING";
|
|
28354
|
+
/** The Amazon Resource Name (ARN) of the agent. */
|
|
28355
|
+
Arn?: string;
|
|
28356
|
+
/** The date and time the agent was created. */
|
|
28357
|
+
CreatedAt?: string;
|
|
28358
|
+
/** The ARN of the user who created the agent. */
|
|
28359
|
+
Creator?: string;
|
|
28360
|
+
CustomPromptInput?: QuickSightAgent_CustomPromptInput;
|
|
28361
|
+
CustomPromptInterface?: QuickSightAgent_CustomPromptInterface;
|
|
28362
|
+
/** A description of the agent. */
|
|
28363
|
+
Description?: string;
|
|
28364
|
+
/** The error message if the agent is in FAILED status. */
|
|
28365
|
+
ErrorMessage?: string;
|
|
28366
|
+
/** The icon identifier for the agent. */
|
|
28367
|
+
IconId?: string;
|
|
28368
|
+
/** A list of Space ARNs (max 10) attached to the agent. */
|
|
28369
|
+
Spaces?: string[];
|
|
28370
|
+
/** A list of up to 3 starter prompts displayed to users. */
|
|
28371
|
+
StarterPrompts?: string[];
|
|
28372
|
+
/** A list of key-value pairs to associate with the agent resource. */
|
|
28373
|
+
Tags?: QuickSightAgent_AgentTag[];
|
|
28374
|
+
/** The date and time the agent was last updated. */
|
|
28375
|
+
UpdatedAt?: string;
|
|
28376
|
+
/** The welcome message displayed when a user opens the agent. */
|
|
28377
|
+
WelcomeMessage?: string;
|
|
28378
|
+
}, attributes?: CFResourceAttributes);
|
|
28379
|
+
readonly AgentStatus: "ACTIVE" | "CREATING" | "FAILED" | "UPDATING";
|
|
28380
|
+
readonly Arn: string;
|
|
28381
|
+
readonly CreatedAt: string;
|
|
28382
|
+
readonly Creator: string;
|
|
28383
|
+
readonly CustomPromptInterface: QuickSightAgent_CustomPromptInterface;
|
|
28384
|
+
readonly ErrorMessage: string;
|
|
28385
|
+
readonly UpdatedAt: string;
|
|
28386
|
+
}
|
|
28387
|
+
|
|
27500
28388
|
export declare class QuickSightDashboard {
|
|
27501
28389
|
constructor(props: {
|
|
27502
28390
|
AwsAccountId: string;
|
|
@@ -28019,17 +28907,6 @@ export declare class ReceiptRuleSet {
|
|
|
28019
28907
|
readonly Id: string;
|
|
28020
28908
|
}
|
|
28021
28909
|
|
|
28022
|
-
export declare class Recipe {
|
|
28023
|
-
constructor(props: {
|
|
28024
|
-
/** Recipe name */
|
|
28025
|
-
Name: string;
|
|
28026
|
-
Steps: Recipe_RecipeStep[];
|
|
28027
|
-
/** Description of the recipe */
|
|
28028
|
-
Description?: string;
|
|
28029
|
-
Tags?: Recipe_Tag[];
|
|
28030
|
-
}, attributes?: CFResourceAttributes);
|
|
28031
|
-
}
|
|
28032
|
-
|
|
28033
28910
|
export declare class Recommender {
|
|
28034
28911
|
constructor(props: {
|
|
28035
28912
|
DomainName: string;
|
|
@@ -28129,6 +29006,31 @@ export declare class RecoveryGroup {
|
|
|
28129
29006
|
readonly RecoveryGroupArn: string;
|
|
28130
29007
|
}
|
|
28131
29008
|
|
|
29009
|
+
export declare class RecoveryPoint {
|
|
29010
|
+
constructor(props: {
|
|
29011
|
+
/** The Amazon Resource Name (ARN) of the recovery point. */
|
|
29012
|
+
Arn?: string;
|
|
29013
|
+
/** The Amazon Resource Name (ARN) of the namespace the recovery point is associated with. */
|
|
29014
|
+
NamespaceArn?: string;
|
|
29015
|
+
/** The name of the namespace the recovery point is associated with. */
|
|
29016
|
+
NamespaceName?: string;
|
|
29017
|
+
/** The time the recovery point was created, in ISO 8601 format. */
|
|
29018
|
+
RecoveryPointCreateTime?: string;
|
|
29019
|
+
/** The unique identifier of the recovery point. */
|
|
29020
|
+
RecoveryPointId?: string;
|
|
29021
|
+
/** The list of tags associated with the recovery point. */
|
|
29022
|
+
Tags?: RecoveryPoint_Tag[];
|
|
29023
|
+
/** The total size of the data in the recovery point in megabytes. */
|
|
29024
|
+
TotalSizeInMegaBytes?: number;
|
|
29025
|
+
}, attributes?: CFResourceAttributes);
|
|
29026
|
+
readonly Arn: string;
|
|
29027
|
+
readonly NamespaceArn: string;
|
|
29028
|
+
readonly RecoveryPointCreateTime: string;
|
|
29029
|
+
readonly RecoveryPointId: string;
|
|
29030
|
+
readonly Tags: RecoveryPoint_Tag[];
|
|
29031
|
+
readonly TotalSizeInMegaBytes: number;
|
|
29032
|
+
}
|
|
29033
|
+
|
|
28132
29034
|
export declare class RedshiftCluster {
|
|
28133
29035
|
constructor(props: {
|
|
28134
29036
|
/** The type of the cluster. When cluster type is specified as single-node, the NumberOfNodes parameter is not required and if multi-node, the NumberOfNodes parameter is required */
|
|
@@ -28137,7 +29039,7 @@ export declare class RedshiftCluster {
|
|
|
28137
29039
|
DBName: string;
|
|
28138
29040
|
/** The user name associated with the master user account for the cluster that is being created. The user name can't be PUBLIC and first character must be a letter. */
|
|
28139
29041
|
MasterUsername: string;
|
|
28140
|
-
/** The node type to be provisioned for the cluster.Valid Values: ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge | dc2.large | dc2.8xlarge | ra3.large | ra3.4xlarge | ra3.16xlarge */
|
|
29042
|
+
/** The node type to be provisioned for the cluster.Valid Values: ds2.xlarge | ds2.8xlarge | dc1.large | dc1.8xlarge | dc2.large | dc2.8xlarge | ra3.large | ra3.4xlarge | ra3.16xlarge | rg.large | rg.xlarge | rg.4xlarge | rg.12xlarge */
|
|
28141
29043
|
NodeType: string;
|
|
28142
29044
|
/** Major version upgrades can be applied during the maintenance window to the Amazon Redshift engine that is running on the cluster. Default value is True */
|
|
28143
29045
|
AllowVersionUpgrade?: boolean;
|
|
@@ -28511,6 +29413,43 @@ export declare class RefactorSpacesService {
|
|
|
28511
29413
|
readonly ServiceIdentifier: string;
|
|
28512
29414
|
}
|
|
28513
29415
|
|
|
29416
|
+
export declare class Reference {
|
|
29417
|
+
constructor(props: {
|
|
29418
|
+
/** The reference's ARN. */
|
|
29419
|
+
Arn?: string;
|
|
29420
|
+
/** The reference's creation job ID. */
|
|
29421
|
+
CreationJobId?: string;
|
|
29422
|
+
/** When the reference was created. */
|
|
29423
|
+
CreationTime?: string;
|
|
29424
|
+
/** The reference's creation type. */
|
|
29425
|
+
CreationType?: "IMPORT";
|
|
29426
|
+
/** The reference's description. */
|
|
29427
|
+
Description?: string;
|
|
29428
|
+
/** The reference's ID. */
|
|
29429
|
+
Id?: string;
|
|
29430
|
+
/** The reference's MD5 checksum. */
|
|
29431
|
+
Md5?: string;
|
|
29432
|
+
/** The reference's name. */
|
|
29433
|
+
Name?: string;
|
|
29434
|
+
/** The reference's reference store ID. */
|
|
29435
|
+
ReferenceStoreId?: string;
|
|
29436
|
+
/** The reference's status. */
|
|
29437
|
+
Status?: "ACTIVE" | "DELETED" | "DELETING";
|
|
29438
|
+
/** Tags for the reference. */
|
|
29439
|
+
Tags?: Record<string, unknown>[];
|
|
29440
|
+
/** When the reference was updated. */
|
|
29441
|
+
UpdateTime?: string;
|
|
29442
|
+
}, attributes?: CFResourceAttributes);
|
|
29443
|
+
readonly Arn: string;
|
|
29444
|
+
readonly CreationJobId: string;
|
|
29445
|
+
readonly CreationTime: string;
|
|
29446
|
+
readonly CreationType: "IMPORT";
|
|
29447
|
+
readonly Id: string;
|
|
29448
|
+
readonly Md5: string;
|
|
29449
|
+
readonly Status: "ACTIVE" | "DELETED" | "DELETING";
|
|
29450
|
+
readonly UpdateTime: string;
|
|
29451
|
+
}
|
|
29452
|
+
|
|
28514
29453
|
export declare class ReferenceStore {
|
|
28515
29454
|
constructor(props: {
|
|
28516
29455
|
/** A name for the store. */
|
|
@@ -28541,6 +29480,30 @@ export declare class RefreshSchedule {
|
|
|
28541
29480
|
readonly Arn: string;
|
|
28542
29481
|
}
|
|
28543
29482
|
|
|
29483
|
+
export declare class Registration {
|
|
29484
|
+
constructor(props: {
|
|
29485
|
+
/** The type of registration form to create. */
|
|
29486
|
+
RegistrationType: string;
|
|
29487
|
+
/** The time when the registration was created, in UNIX epoch time format. */
|
|
29488
|
+
CreatedTimestamp?: string;
|
|
29489
|
+
/** The current version number of the registration. */
|
|
29490
|
+
CurrentVersionNumber?: number;
|
|
29491
|
+
/** The Amazon Resource Name (ARN) for the registration. */
|
|
29492
|
+
RegistrationArn?: string;
|
|
29493
|
+
/** The unique identifier for the registration. */
|
|
29494
|
+
RegistrationId?: string;
|
|
29495
|
+
/** The status of the registration. */
|
|
29496
|
+
RegistrationStatus?: "AWS_REVIEWING" | "CLOSED" | "COMPLETE" | "CREATED" | "DELETED" | "PROVISIONING" | "REQUIRES_AUTHENTICATION" | "REQUIRES_UPDATES" | "REVIEWING" | "SUBMITTED";
|
|
29497
|
+
/** An array of tags (key and value pairs) to associate with the registration. */
|
|
29498
|
+
Tags?: Registration_Tag[];
|
|
29499
|
+
}, attributes?: CFResourceAttributes);
|
|
29500
|
+
readonly CreatedTimestamp: string;
|
|
29501
|
+
readonly CurrentVersionNumber: number;
|
|
29502
|
+
readonly RegistrationArn: string;
|
|
29503
|
+
readonly RegistrationId: string;
|
|
29504
|
+
readonly RegistrationStatus: "AWS_REVIEWING" | "CLOSED" | "COMPLETE" | "CREATED" | "DELETED" | "PROVISIONING" | "REQUIRES_AUTHENTICATION" | "REQUIRES_UPDATES" | "REVIEWING" | "SUBMITTED";
|
|
29505
|
+
}
|
|
29506
|
+
|
|
28544
29507
|
export declare class RegistryScanningConfiguration {
|
|
28545
29508
|
constructor(props: {
|
|
28546
29509
|
/** The scanning rules associated with the registry. */
|
|
@@ -28587,6 +29550,30 @@ export declare class RemediationConfiguration {
|
|
|
28587
29550
|
}, attributes?: CFResourceAttributes);
|
|
28588
29551
|
}
|
|
28589
29552
|
|
|
29553
|
+
export declare class Replay {
|
|
29554
|
+
constructor(props: {
|
|
29555
|
+
/** A ReplayDestination object that includes details about the destination for the replay. */
|
|
29556
|
+
Destination: Record<string, unknown>;
|
|
29557
|
+
/** A time stamp for the time to stop replaying events. */
|
|
29558
|
+
EventEndTime: string;
|
|
29559
|
+
/** The ARN of the archive to replay events from. */
|
|
29560
|
+
EventSourceArn: string;
|
|
29561
|
+
/** A time stamp for the time to start replaying events. */
|
|
29562
|
+
EventStartTime: string;
|
|
29563
|
+
/** The name of the replay. */
|
|
29564
|
+
ReplayName: string;
|
|
29565
|
+
/** The ARN of the replay. */
|
|
29566
|
+
ReplayArn?: string;
|
|
29567
|
+
/** A time stamp for the time that the replay started. */
|
|
29568
|
+
ReplayStartTime?: string;
|
|
29569
|
+
/** The current state of the replay. */
|
|
29570
|
+
State?: "CANCELLED" | "CANCELLING" | "COMPLETED" | "FAILED" | "RUNNING" | "STARTING";
|
|
29571
|
+
}, attributes?: CFResourceAttributes);
|
|
29572
|
+
readonly ReplayArn: string;
|
|
29573
|
+
readonly ReplayStartTime: string;
|
|
29574
|
+
readonly State: "CANCELLED" | "CANCELLING" | "COMPLETED" | "FAILED" | "RUNNING" | "STARTING";
|
|
29575
|
+
}
|
|
29576
|
+
|
|
28590
29577
|
export declare class ReplicaKey {
|
|
28591
29578
|
constructor(props: {
|
|
28592
29579
|
/** The key policy that authorizes use of the AWS KMS key. The key policy must observe the following rules. */
|
|
@@ -28852,6 +29839,59 @@ export declare class Replicator {
|
|
|
28852
29839
|
readonly ReplicatorArn: string;
|
|
28853
29840
|
}
|
|
28854
29841
|
|
|
29842
|
+
export declare class Report {
|
|
29843
|
+
constructor(props: {
|
|
29844
|
+
/** Acceptance type for report. */
|
|
29845
|
+
AcceptanceType?: "EXPLICIT" | "PASSTHROUGH";
|
|
29846
|
+
/** The Amazon Resource Name (ARN) of the report. */
|
|
29847
|
+
Arn?: string;
|
|
29848
|
+
/** Category for the report resource. */
|
|
29849
|
+
Category?: string;
|
|
29850
|
+
/** Associated company name for the report resource. */
|
|
29851
|
+
CompanyName?: string;
|
|
29852
|
+
/** Timestamp indicating when the report resource was created. */
|
|
29853
|
+
CreatedAt?: string;
|
|
29854
|
+
/** Description for the report resource. */
|
|
29855
|
+
Description?: string;
|
|
29856
|
+
/** Name for the report resource. */
|
|
29857
|
+
Name?: string;
|
|
29858
|
+
/** Timestamp indicating the report resource effective end. */
|
|
29859
|
+
PeriodEnd?: string;
|
|
29860
|
+
/** Timestamp indicating the report resource effective start. */
|
|
29861
|
+
PeriodStart?: string;
|
|
29862
|
+
/** Associated product name for the report resource. */
|
|
29863
|
+
ProductName?: string;
|
|
29864
|
+
/** Unique resource ID for the report resource. */
|
|
29865
|
+
ReportId?: string;
|
|
29866
|
+
/** Sequence number to enforce optimistic locking. */
|
|
29867
|
+
SequenceNumber?: number;
|
|
29868
|
+
/** Series for the report resource. */
|
|
29869
|
+
Series?: string;
|
|
29870
|
+
/** Current state of the report resource. */
|
|
29871
|
+
State?: "PUBLISHED" | "UNPUBLISHED";
|
|
29872
|
+
/** Unique resource ARN for term resource. */
|
|
29873
|
+
TermArn?: string;
|
|
29874
|
+
/** Version for the report resource. */
|
|
29875
|
+
Version?: string;
|
|
29876
|
+
}, attributes?: CFResourceAttributes);
|
|
29877
|
+
readonly AcceptanceType: "EXPLICIT" | "PASSTHROUGH";
|
|
29878
|
+
readonly Arn: string;
|
|
29879
|
+
readonly Category: string;
|
|
29880
|
+
readonly CompanyName: string;
|
|
29881
|
+
readonly CreatedAt: string;
|
|
29882
|
+
readonly Description: string;
|
|
29883
|
+
readonly Name: string;
|
|
29884
|
+
readonly PeriodEnd: string;
|
|
29885
|
+
readonly PeriodStart: string;
|
|
29886
|
+
readonly ProductName: string;
|
|
29887
|
+
readonly ReportId: string;
|
|
29888
|
+
readonly SequenceNumber: number;
|
|
29889
|
+
readonly Series: string;
|
|
29890
|
+
readonly State: "PUBLISHED" | "UNPUBLISHED";
|
|
29891
|
+
readonly TermArn: string;
|
|
29892
|
+
readonly Version: string;
|
|
29893
|
+
}
|
|
29894
|
+
|
|
28855
29895
|
export declare class ReportDefinition {
|
|
28856
29896
|
constructor(props: {
|
|
28857
29897
|
/** The compression format that AWS uses for the report. */
|
|
@@ -29024,6 +30064,94 @@ export declare class RequestValidator {
|
|
|
29024
30064
|
readonly RequestValidatorId: string;
|
|
29025
30065
|
}
|
|
29026
30066
|
|
|
30067
|
+
export declare class ReservedCacheNode {
|
|
30068
|
+
constructor(props: {
|
|
30069
|
+
/** The number of cache nodes that have been reserved. */
|
|
30070
|
+
CacheNodeCount?: number;
|
|
30071
|
+
/** The cache node type for the reserved cache nodes. */
|
|
30072
|
+
CacheNodeType?: string;
|
|
30073
|
+
/** The duration of the reservation in seconds. */
|
|
30074
|
+
Duration?: number;
|
|
30075
|
+
/** The fixed price charged for this reserved cache node. */
|
|
30076
|
+
FixedPrice?: number;
|
|
30077
|
+
/** The offering type of this reserved cache node. */
|
|
30078
|
+
OfferingType?: string;
|
|
30079
|
+
/** The description of the reserved cache node. */
|
|
30080
|
+
ProductDescription?: string;
|
|
30081
|
+
/** The recurring price charged to run this reserved cache node. */
|
|
30082
|
+
RecurringCharges?: ReservedCacheNode_RecurringCharge[];
|
|
30083
|
+
/** The Amazon Resource Name (ARN) of the reserved cache node. */
|
|
30084
|
+
ReservationARN?: string;
|
|
30085
|
+
/** The unique identifier for the reservation. */
|
|
30086
|
+
ReservedCacheNodeId?: string;
|
|
30087
|
+
/** The offering identifier. */
|
|
30088
|
+
ReservedCacheNodesOfferingId?: string;
|
|
30089
|
+
/** The time the reservation started. */
|
|
30090
|
+
StartTime?: string;
|
|
30091
|
+
/** The state of the reserved cache node. */
|
|
30092
|
+
State?: string;
|
|
30093
|
+
/** A list of tags. */
|
|
30094
|
+
Tags?: ReservedCacheNode_Tag[];
|
|
30095
|
+
/** The hourly price charged for this reserved cache node. */
|
|
30096
|
+
UsagePrice?: number;
|
|
30097
|
+
}, attributes?: CFResourceAttributes);
|
|
30098
|
+
readonly CacheNodeCount: number;
|
|
30099
|
+
readonly CacheNodeType: string;
|
|
30100
|
+
readonly Duration: number;
|
|
30101
|
+
readonly FixedPrice: number;
|
|
30102
|
+
readonly OfferingType: string;
|
|
30103
|
+
readonly ProductDescription: string;
|
|
30104
|
+
readonly RecurringCharges: ReservedCacheNode_RecurringCharge[];
|
|
30105
|
+
readonly ReservationARN: string;
|
|
30106
|
+
readonly ReservedCacheNodeId: string;
|
|
30107
|
+
readonly ReservedCacheNodesOfferingId: string;
|
|
30108
|
+
readonly StartTime: string;
|
|
30109
|
+
readonly State: string;
|
|
30110
|
+
readonly Tags: ReservedCacheNode_Tag[];
|
|
30111
|
+
readonly UsagePrice: number;
|
|
30112
|
+
}
|
|
30113
|
+
|
|
30114
|
+
export declare class ReservedNode {
|
|
30115
|
+
constructor(props: {
|
|
30116
|
+
/** The Amazon Resource Name (ARN) of the reserved node. */
|
|
30117
|
+
Arn?: string;
|
|
30118
|
+
/** The duration of the reservation in seconds. */
|
|
30119
|
+
Duration?: number;
|
|
30120
|
+
/** The fixed price charged for this reserved node. */
|
|
30121
|
+
FixedPrice?: number;
|
|
30122
|
+
/** The number of nodes that have been reserved. */
|
|
30123
|
+
NodeCount?: number;
|
|
30124
|
+
/** The node type for the reserved nodes. */
|
|
30125
|
+
NodeType?: string;
|
|
30126
|
+
/** The offering type of this reserved node. */
|
|
30127
|
+
OfferingType?: string;
|
|
30128
|
+
/** The recurring price charged to run this reserved node. */
|
|
30129
|
+
RecurringCharges?: ReservedNode_RecurringCharge[];
|
|
30130
|
+
/** A customer-specified identifier to track this reservation. */
|
|
30131
|
+
ReservationId?: string;
|
|
30132
|
+
/** The ID of the reserved node offering to purchase. */
|
|
30133
|
+
ReservedNodesOfferingId?: string;
|
|
30134
|
+
/** The time the reservation started. */
|
|
30135
|
+
StartTime?: string;
|
|
30136
|
+
/** The state of the reserved node. */
|
|
30137
|
+
State?: string;
|
|
30138
|
+
/** A list of tags to be added to this resource. */
|
|
30139
|
+
Tags?: ReservedNode_Tag[];
|
|
30140
|
+
}, attributes?: CFResourceAttributes);
|
|
30141
|
+
readonly Arn: string;
|
|
30142
|
+
readonly Duration: number;
|
|
30143
|
+
readonly FixedPrice: number;
|
|
30144
|
+
readonly NodeCount: number;
|
|
30145
|
+
readonly NodeType: string;
|
|
30146
|
+
readonly OfferingType: string;
|
|
30147
|
+
readonly RecurringCharges: ReservedNode_RecurringCharge[];
|
|
30148
|
+
readonly ReservationId: string;
|
|
30149
|
+
readonly ReservedNodesOfferingId: string;
|
|
30150
|
+
readonly StartTime: string;
|
|
30151
|
+
readonly State: string;
|
|
30152
|
+
readonly Tags: ReservedNode_Tag[];
|
|
30153
|
+
}
|
|
30154
|
+
|
|
29027
30155
|
export declare class ResilienceHubApp {
|
|
29028
30156
|
constructor(props: {
|
|
29029
30157
|
/** A string containing full ResilienceHub app template body. */
|
|
@@ -29524,6 +30652,28 @@ export declare class ResourceGroupsGroup {
|
|
|
29524
30652
|
readonly Arn: string;
|
|
29525
30653
|
}
|
|
29526
30654
|
|
|
30655
|
+
export declare class ResourceScan {
|
|
30656
|
+
constructor(props: {
|
|
30657
|
+
/** The percentage of the resource scan that has been completed. */
|
|
30658
|
+
PercentageCompleted?: number;
|
|
30659
|
+
/** The Amazon Resource Name (ARN) of the resource scan. */
|
|
30660
|
+
ResourceScanId?: string;
|
|
30661
|
+
/** The scan filters to use. */
|
|
30662
|
+
ScanFilters?: ResourceScan_ScanFilter[];
|
|
30663
|
+
/** The unique identifier portion of the resource scan ARN. */
|
|
30664
|
+
ScanId?: string;
|
|
30665
|
+
/** The time that the resource scan was started. */
|
|
30666
|
+
StartTime?: string;
|
|
30667
|
+
/** Status of the resource scan. */
|
|
30668
|
+
Status?: "COMPLETE" | "EXPIRED" | "FAILED" | "IN_PROGRESS";
|
|
30669
|
+
}, attributes?: CFResourceAttributes);
|
|
30670
|
+
readonly PercentageCompleted: number;
|
|
30671
|
+
readonly ResourceScanId: string;
|
|
30672
|
+
readonly ScanId: string;
|
|
30673
|
+
readonly StartTime: string;
|
|
30674
|
+
readonly Status: "COMPLETE" | "EXPIRED" | "FAILED" | "IN_PROGRESS";
|
|
30675
|
+
}
|
|
30676
|
+
|
|
29527
30677
|
export declare class ResourceShare {
|
|
29528
30678
|
constructor(props: {
|
|
29529
30679
|
/** Specifies the name of the resource share. */
|
|
@@ -29794,6 +30944,33 @@ export declare class Retriever {
|
|
|
29794
30944
|
readonly UpdatedAt: string;
|
|
29795
30945
|
}
|
|
29796
30946
|
|
|
30947
|
+
export declare class ReviewTemplate {
|
|
30948
|
+
constructor(props: {
|
|
30949
|
+
/** The review template description. */
|
|
30950
|
+
Description: string;
|
|
30951
|
+
/** The lenses applied to the review template. */
|
|
30952
|
+
Lenses: string[];
|
|
30953
|
+
/** The name of the review template. */
|
|
30954
|
+
TemplateName: string;
|
|
30955
|
+
/** The notes associated with the review template. */
|
|
30956
|
+
Notes?: string;
|
|
30957
|
+
/** The owner of the review template. */
|
|
30958
|
+
Owner?: string;
|
|
30959
|
+
/** The tags assigned to the review template. */
|
|
30960
|
+
Tags?: Record<string, unknown>[];
|
|
30961
|
+
/** The review template ARN. */
|
|
30962
|
+
TemplateArn?: string;
|
|
30963
|
+
/** The date and time the review template was last updated. */
|
|
30964
|
+
UpdatedAt?: string;
|
|
30965
|
+
/** The latest status of the review template. */
|
|
30966
|
+
UpdateStatus?: "CURRENT" | "LENS_NOT_CURRENT";
|
|
30967
|
+
}, attributes?: CFResourceAttributes);
|
|
30968
|
+
readonly Owner: string;
|
|
30969
|
+
readonly TemplateArn: string;
|
|
30970
|
+
readonly UpdatedAt: string;
|
|
30971
|
+
readonly UpdateStatus: "CURRENT" | "LENS_NOT_CURRENT";
|
|
30972
|
+
}
|
|
30973
|
+
|
|
29797
30974
|
export declare class RoboMakerFleet {
|
|
29798
30975
|
constructor(props: {
|
|
29799
30976
|
Arn?: string;
|
|
@@ -30943,6 +32120,22 @@ export declare class S3VectorsIndex {
|
|
|
30943
32120
|
readonly IndexArn: string;
|
|
30944
32121
|
}
|
|
30945
32122
|
|
|
32123
|
+
export declare class SafetyLever {
|
|
32124
|
+
constructor(props: {
|
|
32125
|
+
/** The Amazon Resource Name (ARN) of the safety lever. */
|
|
32126
|
+
Arn?: string;
|
|
32127
|
+
/** The ID of the safety lever. */
|
|
32128
|
+
Id?: string;
|
|
32129
|
+
/** The reason for the current state of the safety lever. */
|
|
32130
|
+
Reason?: string;
|
|
32131
|
+
/** The status of the safety lever. */
|
|
32132
|
+
Status?: "disengaged" | "engaged" | "engaging";
|
|
32133
|
+
}, attributes?: CFResourceAttributes);
|
|
32134
|
+
readonly Arn: string;
|
|
32135
|
+
readonly Reason: string;
|
|
32136
|
+
readonly Status: "disengaged" | "engaged" | "engaging";
|
|
32137
|
+
}
|
|
32138
|
+
|
|
30946
32139
|
export declare class SafetyRule {
|
|
30947
32140
|
constructor(props: {
|
|
30948
32141
|
AssertionRule?: SafetyRule_AssertionRule;
|
|
@@ -31019,6 +32212,7 @@ export declare class SageMakerCluster {
|
|
|
31019
32212
|
readonly ClusterStatus: "Creating" | "Deleting" | "Failed" | "InService" | "RollingBack" | "SystemUpdating" | "Updating";
|
|
31020
32213
|
readonly CreationTime: string;
|
|
31021
32214
|
readonly FailureMessage: string;
|
|
32215
|
+
readonly InstanceGroups_Item_AutoPatchConfig_PatchSchedule_NextPatchDate: string;
|
|
31022
32216
|
readonly InstanceGroups_Item_CurrentCount: string;
|
|
31023
32217
|
readonly RestrictedInstanceGroups_Item_CurrentCount: string;
|
|
31024
32218
|
}
|
|
@@ -31287,6 +32481,40 @@ export declare class SamplingRule {
|
|
|
31287
32481
|
readonly RuleARN: string;
|
|
31288
32482
|
}
|
|
31289
32483
|
|
|
32484
|
+
export declare class Sandbox {
|
|
32485
|
+
constructor(props: {
|
|
32486
|
+
/** The ARN of the sandbox. */
|
|
32487
|
+
Arn?: string;
|
|
32488
|
+
/** The KMS key used for encrypting the sandbox output artifacts. */
|
|
32489
|
+
EncryptionKey?: string;
|
|
32490
|
+
/** The ID of the sandbox. */
|
|
32491
|
+
Id?: string;
|
|
32492
|
+
/** The CodeBuild project name. */
|
|
32493
|
+
ProjectName?: string;
|
|
32494
|
+
/** The number of minutes a sandbox is allowed to be queued before it times out. */
|
|
32495
|
+
QueuedTimeoutInMinutes?: number;
|
|
32496
|
+
/** When the sandbox process was initially requested, expressed in ISO 8601 format. */
|
|
32497
|
+
RequestTime?: string;
|
|
32498
|
+
/** The name of a service role used for this sandbox. */
|
|
32499
|
+
ServiceRole?: string;
|
|
32500
|
+
/** When the sandbox process started, expressed in ISO 8601 format. */
|
|
32501
|
+
StartTime?: string;
|
|
32502
|
+
/** The status of the sandbox. */
|
|
32503
|
+
Status?: string;
|
|
32504
|
+
/** How long, in minutes, for CodeBuild to wait before timing out this sandbox. */
|
|
32505
|
+
TimeoutInMinutes?: number;
|
|
32506
|
+
}, attributes?: CFResourceAttributes);
|
|
32507
|
+
readonly Arn: string;
|
|
32508
|
+
readonly EncryptionKey: string;
|
|
32509
|
+
readonly Id: string;
|
|
32510
|
+
readonly QueuedTimeoutInMinutes: number;
|
|
32511
|
+
readonly RequestTime: string;
|
|
32512
|
+
readonly ServiceRole: string;
|
|
32513
|
+
readonly StartTime: string;
|
|
32514
|
+
readonly Status: string;
|
|
32515
|
+
readonly TimeoutInMinutes: number;
|
|
32516
|
+
}
|
|
32517
|
+
|
|
31290
32518
|
export declare class ScalableTarget {
|
|
31291
32519
|
constructor(props: {
|
|
31292
32520
|
/** The maximum value that you plan to scale out to. When a scaling policy is in effect, Application Auto Scaling can scale out (expand) as needed to the maximum capacity limit in response to changing demand. */
|
|
@@ -31523,6 +32751,56 @@ export declare class SchemaVersionMetadata {
|
|
|
31523
32751
|
}, attributes?: CFResourceAttributes);
|
|
31524
32752
|
}
|
|
31525
32753
|
|
|
32754
|
+
export declare class SCNDataset {
|
|
32755
|
+
constructor(props: {
|
|
32756
|
+
/** The Amazon Web Services Supply Chain instance identifier. */
|
|
32757
|
+
InstanceId: string;
|
|
32758
|
+
/** The name of the dataset. */
|
|
32759
|
+
Name: string;
|
|
32760
|
+
/** The namespace of the dataset. */
|
|
32761
|
+
Namespace: string;
|
|
32762
|
+
/** The Amazon Resource Name (ARN) of the dataset. */
|
|
32763
|
+
Arn?: string;
|
|
32764
|
+
/** The creation time of the dataset. */
|
|
32765
|
+
CreatedTime?: string;
|
|
32766
|
+
/** The description of the dataset. */
|
|
32767
|
+
Description?: string;
|
|
32768
|
+
/** The last modified time of the dataset. */
|
|
32769
|
+
LastModifiedTime?: string;
|
|
32770
|
+
/** The partition specification of the dataset. */
|
|
32771
|
+
PartitionSpec?: Record<string, unknown>;
|
|
32772
|
+
/** The schema of the dataset. */
|
|
32773
|
+
Schema?: Record<string, unknown>;
|
|
32774
|
+
/** The tags for the dataset. */
|
|
32775
|
+
Tags?: SCNDataset_Tag[];
|
|
32776
|
+
}, attributes?: CFResourceAttributes);
|
|
32777
|
+
readonly Arn: string;
|
|
32778
|
+
readonly CreatedTime: string;
|
|
32779
|
+
readonly LastModifiedTime: string;
|
|
32780
|
+
}
|
|
32781
|
+
|
|
32782
|
+
export declare class SCNNamespace {
|
|
32783
|
+
constructor(props: {
|
|
32784
|
+
/** The Amazon Web Services Supply Chain instance identifier. */
|
|
32785
|
+
InstanceId: string;
|
|
32786
|
+
/** The name of the namespace. */
|
|
32787
|
+
Name: string;
|
|
32788
|
+
/** The Amazon Resource Name (ARN) of the namespace. */
|
|
32789
|
+
Arn?: string;
|
|
32790
|
+
/** The creation time of the namespace. */
|
|
32791
|
+
CreatedTime?: string;
|
|
32792
|
+
/** The description of the namespace. */
|
|
32793
|
+
Description?: string;
|
|
32794
|
+
/** The last modified time of the namespace. */
|
|
32795
|
+
LastModifiedTime?: string;
|
|
32796
|
+
/** The tags for the namespace. */
|
|
32797
|
+
Tags?: SCNNamespace_Tag[];
|
|
32798
|
+
}, attributes?: CFResourceAttributes);
|
|
32799
|
+
readonly Arn: string;
|
|
32800
|
+
readonly CreatedTime: string;
|
|
32801
|
+
readonly LastModifiedTime: string;
|
|
32802
|
+
}
|
|
32803
|
+
|
|
31526
32804
|
export declare class Scraper {
|
|
31527
32805
|
constructor(props: {
|
|
31528
32806
|
Destination: Scraper_Destination;
|
|
@@ -31603,6 +32881,29 @@ export declare class SdiSource {
|
|
|
31603
32881
|
readonly State: SdiSource_SdiSourceState;
|
|
31604
32882
|
}
|
|
31605
32883
|
|
|
32884
|
+
export declare class SearchJob {
|
|
32885
|
+
constructor(props: {
|
|
32886
|
+
/** The search scope for the search job. */
|
|
32887
|
+
SearchScope: SearchJob_SearchScope;
|
|
32888
|
+
/** The date and time the search job was created. */
|
|
32889
|
+
CreationTime?: string;
|
|
32890
|
+
/** The name of the search job. */
|
|
32891
|
+
Name?: string;
|
|
32892
|
+
/** The Amazon Resource Name (ARN) of the search job. */
|
|
32893
|
+
SearchJobArn?: string;
|
|
32894
|
+
/** The unique identifier of the search job. */
|
|
32895
|
+
SearchJobIdentifier?: string;
|
|
32896
|
+
/** The current status of the search job. */
|
|
32897
|
+
Status?: "COMPLETED" | "FAILED" | "RUNNING" | "STOPPED" | "STOPPING";
|
|
32898
|
+
/** Tags associated with the search job. */
|
|
32899
|
+
Tags?: Record<string, unknown>[];
|
|
32900
|
+
}, attributes?: CFResourceAttributes);
|
|
32901
|
+
readonly CreationTime: string;
|
|
32902
|
+
readonly SearchJobArn: string;
|
|
32903
|
+
readonly SearchJobIdentifier: string;
|
|
32904
|
+
readonly Status: "COMPLETED" | "FAILED" | "RUNNING" | "STOPPED" | "STOPPING";
|
|
32905
|
+
}
|
|
32906
|
+
|
|
31606
32907
|
export declare class Secret {
|
|
31607
32908
|
constructor(props: {
|
|
31608
32909
|
/** The description of the secret. */
|
|
@@ -32336,16 +33637,27 @@ export declare class ServiceDiscoveryInstance {
|
|
|
32336
33637
|
|
|
32337
33638
|
export declare class ServiceDiscoveryService {
|
|
32338
33639
|
constructor(props: {
|
|
33640
|
+
/** The Amazon Resource Name (ARN) of the service. */
|
|
32339
33641
|
Arn?: string;
|
|
33642
|
+
/** A description for the service. */
|
|
32340
33643
|
Description?: string;
|
|
33644
|
+
/** DNS-related configurations for the service. */
|
|
32341
33645
|
DnsConfig?: ServiceDiscoveryService_DnsConfig;
|
|
33646
|
+
/** Settings for health checks. Used when routing is DNS-based. */
|
|
32342
33647
|
HealthCheckConfig?: ServiceDiscoveryService_HealthCheckConfig;
|
|
33648
|
+
/** Settings for custom health checks. */
|
|
32343
33649
|
HealthCheckCustomConfig?: ServiceDiscoveryService_HealthCheckCustomConfig;
|
|
33650
|
+
/** The unique identifier for the service. */
|
|
32344
33651
|
Id?: string;
|
|
33652
|
+
/** The name of the service. */
|
|
32345
33653
|
Name?: string;
|
|
33654
|
+
/** The ID of the namespace in which the service is created. */
|
|
32346
33655
|
NamespaceId?: string;
|
|
33656
|
+
/** A string map that contains attributes and values for the service. You can specify a maximum of 30 key-value pairs. */
|
|
32347
33657
|
ServiceAttributes?: Record<string, unknown>;
|
|
33658
|
+
/** An array of key-value pairs to associate with the service. */
|
|
32348
33659
|
Tags?: ServiceDiscoveryService_Tag[];
|
|
33660
|
+
/** The type of service. Supported values are HTTP or DNS. */
|
|
32349
33661
|
Type?: string;
|
|
32350
33662
|
}, attributes?: CFResourceAttributes);
|
|
32351
33663
|
readonly Arn: string;
|
|
@@ -32620,24 +33932,6 @@ export declare class SESDedicatedIpPool {
|
|
|
32620
33932
|
}, attributes?: CFResourceAttributes);
|
|
32621
33933
|
}
|
|
32622
33934
|
|
|
32623
|
-
export declare class Session {
|
|
32624
|
-
constructor(props: {
|
|
32625
|
-
/** The status of automated sensitive data discovery for the Macie session. */
|
|
32626
|
-
AutomatedDiscoveryStatus?: "DISABLED" | "ENABLED";
|
|
32627
|
-
/** AWS account ID of customer */
|
|
32628
|
-
AwsAccountId?: string;
|
|
32629
|
-
/** A enumeration value that specifies how frequently finding updates are published. */
|
|
32630
|
-
FindingPublishingFrequency?: "FIFTEEN_MINUTES" | "ONE_HOUR" | "SIX_HOURS";
|
|
32631
|
-
/** Service role used by Macie */
|
|
32632
|
-
ServiceRole?: string;
|
|
32633
|
-
/** A enumeration value that specifies the status of the Macie Session. */
|
|
32634
|
-
Status?: "ENABLED" | "PAUSED";
|
|
32635
|
-
}, attributes?: CFResourceAttributes);
|
|
32636
|
-
readonly AutomatedDiscoveryStatus: "DISABLED" | "ENABLED";
|
|
32637
|
-
readonly AwsAccountId: string;
|
|
32638
|
-
readonly ServiceRole: string;
|
|
32639
|
-
}
|
|
32640
|
-
|
|
32641
33935
|
export declare class SessionLogger {
|
|
32642
33936
|
constructor(props: {
|
|
32643
33937
|
EventFilter: any;
|
|
@@ -32762,6 +34056,55 @@ export declare class SigningConfiguration {
|
|
|
32762
34056
|
readonly RegistryId: string;
|
|
32763
34057
|
}
|
|
32764
34058
|
|
|
34059
|
+
export declare class SigningJob {
|
|
34060
|
+
constructor(props: {
|
|
34061
|
+
/** The name of the signing profile. */
|
|
34062
|
+
ProfileName: string;
|
|
34063
|
+
/** The ARN of the signing job. */
|
|
34064
|
+
Arn?: string;
|
|
34065
|
+
/** Date and time that the signing job was completed. */
|
|
34066
|
+
CompletedAt?: string;
|
|
34067
|
+
/** Date and time that the signing job was created. */
|
|
34068
|
+
CreatedAt?: string;
|
|
34069
|
+
/** The ID of the signing job. */
|
|
34070
|
+
JobId?: string;
|
|
34071
|
+
/** The IAM entity that initiated the signing job. */
|
|
34072
|
+
JobInvoker?: string;
|
|
34073
|
+
/** The AWS account ID of the job owner. */
|
|
34074
|
+
JobOwner?: string;
|
|
34075
|
+
/** A human-readable name for the signing platform associated with the signing job. */
|
|
34076
|
+
PlatformDisplayName?: string;
|
|
34077
|
+
/** The microcontroller platform to which the signed code image will be distributed. */
|
|
34078
|
+
PlatformId?: string;
|
|
34079
|
+
/** The version of the signing profile used to initiate the signing job. */
|
|
34080
|
+
ProfileVersion?: string;
|
|
34081
|
+
/** The IAM principal that requested the signing job. */
|
|
34082
|
+
RequestedBy?: string;
|
|
34083
|
+
/** The expiration timestamp for the signature generated by the signing job. */
|
|
34084
|
+
SignatureExpiresAt?: string;
|
|
34085
|
+
/** The S3 location of the signed code image. */
|
|
34086
|
+
SignedObject?: SigningJob_SignedObject;
|
|
34087
|
+
/** The S3 bucket that contains the object to sign. */
|
|
34088
|
+
Source?: SigningJob_Source;
|
|
34089
|
+
/** Status of the signing job. */
|
|
34090
|
+
Status?: "Failed" | "InProgress" | "Succeeded";
|
|
34091
|
+
}, attributes?: CFResourceAttributes);
|
|
34092
|
+
readonly Arn: string;
|
|
34093
|
+
readonly CompletedAt: string;
|
|
34094
|
+
readonly CreatedAt: string;
|
|
34095
|
+
readonly JobId: string;
|
|
34096
|
+
readonly JobInvoker: string;
|
|
34097
|
+
readonly JobOwner: string;
|
|
34098
|
+
readonly PlatformDisplayName: string;
|
|
34099
|
+
readonly PlatformId: string;
|
|
34100
|
+
readonly ProfileVersion: string;
|
|
34101
|
+
readonly RequestedBy: string;
|
|
34102
|
+
readonly SignatureExpiresAt: string;
|
|
34103
|
+
readonly SignedObject: SigningJob_SignedObject;
|
|
34104
|
+
readonly Source: SigningJob_Source;
|
|
34105
|
+
readonly Status: "Failed" | "InProgress" | "Succeeded";
|
|
34106
|
+
}
|
|
34107
|
+
|
|
32765
34108
|
export declare class SigningProfile {
|
|
32766
34109
|
constructor(props: {
|
|
32767
34110
|
/** The ID of the target signing platform. */
|
|
@@ -33106,6 +34449,31 @@ export declare class SoftwarePackageVersion {
|
|
|
33106
34449
|
readonly Status: SoftwarePackageVersion_PackageVersionStatus;
|
|
33107
34450
|
}
|
|
33108
34451
|
|
|
34452
|
+
export declare class SoftwareSet {
|
|
34453
|
+
constructor(props: {
|
|
34454
|
+
/** The Amazon Resource Name (ARN) of the software set. */
|
|
34455
|
+
Arn?: string;
|
|
34456
|
+
/** The ID of the software set. */
|
|
34457
|
+
Id?: string;
|
|
34458
|
+
/** The timestamp of when the software set was released. */
|
|
34459
|
+
ReleasedAt?: string;
|
|
34460
|
+
/** A list of the software components in the software set. */
|
|
34461
|
+
Software?: SoftwareSet_Software[];
|
|
34462
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
34463
|
+
Tags?: SoftwareSet_Tag[];
|
|
34464
|
+
/** An option to define if the software set has been validated. */
|
|
34465
|
+
ValidationStatus?: "NOT_VALIDATED" | "VALIDATED";
|
|
34466
|
+
/** The version of the software set. */
|
|
34467
|
+
Version?: string;
|
|
34468
|
+
}, attributes?: CFResourceAttributes);
|
|
34469
|
+
readonly Arn: string;
|
|
34470
|
+
readonly Id: string;
|
|
34471
|
+
readonly ReleasedAt: string;
|
|
34472
|
+
readonly Software: SoftwareSet_Software[];
|
|
34473
|
+
readonly ValidationStatus: "NOT_VALIDATED" | "VALIDATED";
|
|
34474
|
+
readonly Version: string;
|
|
34475
|
+
}
|
|
34476
|
+
|
|
33109
34477
|
export declare class Solution {
|
|
33110
34478
|
constructor(props: {
|
|
33111
34479
|
/** The ARN of the dataset group that provides the training data. */
|
|
@@ -33359,6 +34727,33 @@ export declare class SSMResourcePolicy {
|
|
|
33359
34727
|
readonly PolicyId: string;
|
|
33360
34728
|
}
|
|
33361
34729
|
|
|
34730
|
+
export declare class SSMSession {
|
|
34731
|
+
constructor(props: {
|
|
34732
|
+
/** The access type for the session. */
|
|
34733
|
+
AccessType?: "JustInTime" | "Standard";
|
|
34734
|
+
/** The Amazon Resource Name (ARN) of the session. */
|
|
34735
|
+
Arn?: string;
|
|
34736
|
+
/** The ID of the Amazon Web Services user that started the session. */
|
|
34737
|
+
Owner?: string;
|
|
34738
|
+
/** The reason for connecting to the instance. */
|
|
34739
|
+
Reason?: string;
|
|
34740
|
+
/** The ID of the session. */
|
|
34741
|
+
SessionId?: string;
|
|
34742
|
+
/** The date and time, in ISO-8601 Extended format, when the session began. */
|
|
34743
|
+
StartDate?: string;
|
|
34744
|
+
/** The status of the session. */
|
|
34745
|
+
Status?: "Connected" | "Connecting" | "Disconnected" | "Failed" | "Terminated" | "Terminating";
|
|
34746
|
+
/** The managed node to connect to for the session. */
|
|
34747
|
+
Target?: string;
|
|
34748
|
+
}, attributes?: CFResourceAttributes);
|
|
34749
|
+
readonly AccessType: "JustInTime" | "Standard";
|
|
34750
|
+
readonly Arn: string;
|
|
34751
|
+
readonly Owner: string;
|
|
34752
|
+
readonly SessionId: string;
|
|
34753
|
+
readonly StartDate: string;
|
|
34754
|
+
readonly Status: "Connected" | "Connecting" | "Disconnected" | "Failed" | "Terminated" | "Terminating";
|
|
34755
|
+
}
|
|
34756
|
+
|
|
33362
34757
|
export declare class SSOApplication {
|
|
33363
34758
|
constructor(props: {
|
|
33364
34759
|
/** The ARN of the application provider under which the operation will run */
|
|
@@ -34479,6 +35874,27 @@ export declare class TagSyncTask {
|
|
|
34479
35874
|
readonly TaskArn: string;
|
|
34480
35875
|
}
|
|
34481
35876
|
|
|
35877
|
+
export declare class TapePool {
|
|
35878
|
+
constructor(props: {
|
|
35879
|
+
/** The name of the custom tape pool. */
|
|
35880
|
+
PoolName: string;
|
|
35881
|
+
/** The storage class associated with the custom pool (S3 Glacier or S3 Glacier Deep Archive). */
|
|
35882
|
+
StorageClass: "DEEP_ARCHIVE" | "GLACIER";
|
|
35883
|
+
/** The Amazon Resource Name (ARN) of the custom tape pool. */
|
|
35884
|
+
PoolARN?: string;
|
|
35885
|
+
/** The unique identifier of the custom tape pool, extracted from the ARN. */
|
|
35886
|
+
PoolId?: string;
|
|
35887
|
+
/** Tape retention lock time in days (up to 36,500 days / 100 years). */
|
|
35888
|
+
RetentionLockTimeInDays?: number;
|
|
35889
|
+
/** Tape retention lock type. Governance mode allows authorized removal; compliance mode prevents all removal. */
|
|
35890
|
+
RetentionLockType?: "COMPLIANCE" | "GOVERNANCE" | "NONE";
|
|
35891
|
+
/** A list of up to 50 tags for the tape pool. */
|
|
35892
|
+
Tags?: TapePool_Tag[];
|
|
35893
|
+
}, attributes?: CFResourceAttributes);
|
|
35894
|
+
readonly PoolARN: string;
|
|
35895
|
+
readonly PoolId: string;
|
|
35896
|
+
}
|
|
35897
|
+
|
|
34482
35898
|
export declare class TargetAccountConfiguration {
|
|
34483
35899
|
constructor(props: {
|
|
34484
35900
|
AccountId: string;
|
|
@@ -36256,6 +37672,28 @@ export declare class UserAccessLoggingSettings {
|
|
|
36256
37672
|
readonly UserAccessLoggingSettingsArn: string;
|
|
36257
37673
|
}
|
|
36258
37674
|
|
|
37675
|
+
export declare class UserDefinedFunction {
|
|
37676
|
+
constructor(props: {
|
|
37677
|
+
/** The name of the catalog database in which the function is located. */
|
|
37678
|
+
DatabaseName: string;
|
|
37679
|
+
/** The name of the function. */
|
|
37680
|
+
FunctionName: string;
|
|
37681
|
+
/** The Amazon Resource Name (ARN) of the user-defined function. */
|
|
37682
|
+
Arn?: string;
|
|
37683
|
+
/** The Java class that contains the function code. */
|
|
37684
|
+
ClassName?: string;
|
|
37685
|
+
/** The type of the function. */
|
|
37686
|
+
FunctionType?: "AGGREGATE_FUNCTION" | "REGULAR_FUNCTION" | "STORED_PROCEDURE";
|
|
37687
|
+
/** The owner of the function. */
|
|
37688
|
+
OwnerName?: string;
|
|
37689
|
+
/** The owner type. */
|
|
37690
|
+
OwnerType?: "GROUP" | "ROLE" | "USER";
|
|
37691
|
+
/** The resource URIs for the function. */
|
|
37692
|
+
ResourceUris?: UserDefinedFunction_ResourceUri[];
|
|
37693
|
+
}, attributes?: CFResourceAttributes);
|
|
37694
|
+
readonly Arn: string;
|
|
37695
|
+
}
|
|
37696
|
+
|
|
36259
37697
|
export declare class UserGroup {
|
|
36260
37698
|
constructor(props: {
|
|
36261
37699
|
/** The target cache engine for the user group. */
|
|
@@ -36979,6 +38417,26 @@ export declare class VirtualService {
|
|
|
36979
38417
|
readonly Uid: string;
|
|
36980
38418
|
}
|
|
36981
38419
|
|
|
38420
|
+
export declare class VocabularyFilter {
|
|
38421
|
+
constructor(props: {
|
|
38422
|
+
/** The language code that represents the language of the entries in your vocabulary filter. */
|
|
38423
|
+
LanguageCode: string;
|
|
38424
|
+
/** A unique name, chosen by you, for your custom vocabulary filter. */
|
|
38425
|
+
VocabularyFilterName: string;
|
|
38426
|
+
/** The Amazon Resource Name (ARN) of the vocabulary filter. */
|
|
38427
|
+
Arn?: string;
|
|
38428
|
+
/** The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files. */
|
|
38429
|
+
DataAccessRoleArn?: string;
|
|
38430
|
+
/** Tags associated with the vocabulary filter. */
|
|
38431
|
+
Tags?: VocabularyFilter_Tag[];
|
|
38432
|
+
/** The Amazon S3 location of the text file that contains your custom vocabulary filter terms. */
|
|
38433
|
+
VocabularyFilterFileUri?: string;
|
|
38434
|
+
/** Use this parameter if you want to create your custom vocabulary filter by including all desired terms, as comma-separated values, within your request. */
|
|
38435
|
+
Words?: string[];
|
|
38436
|
+
}, attributes?: CFResourceAttributes);
|
|
38437
|
+
readonly Arn: string;
|
|
38438
|
+
}
|
|
38439
|
+
|
|
36982
38440
|
export declare class VodSource {
|
|
36983
38441
|
constructor(props: {
|
|
36984
38442
|
/** <p>A list of HTTP package configuration parameters for this VOD source.</p> */
|
|
@@ -38133,6 +39591,34 @@ export declare class Webhook {
|
|
|
38133
39591
|
readonly Url: string;
|
|
38134
39592
|
}
|
|
38135
39593
|
|
|
39594
|
+
export declare class WellArchitectedProfile {
|
|
39595
|
+
constructor(props: {
|
|
39596
|
+
/** The profile description. */
|
|
39597
|
+
ProfileDescription: string;
|
|
39598
|
+
/** The name of the profile. */
|
|
39599
|
+
ProfileName: string;
|
|
39600
|
+
/** The profile questions. */
|
|
39601
|
+
ProfileQuestions: WellArchitectedProfile_ProfileQuestionUpdate[];
|
|
39602
|
+
/** The date and time the profile was created. */
|
|
39603
|
+
CreatedAt?: string;
|
|
39604
|
+
/** The owner of the profile. */
|
|
39605
|
+
Owner?: string;
|
|
39606
|
+
/** The profile ARN. */
|
|
39607
|
+
ProfileArn?: string;
|
|
39608
|
+
/** The profile version. */
|
|
39609
|
+
ProfileVersion?: string;
|
|
39610
|
+
/** The tags assigned to the profile. */
|
|
39611
|
+
Tags?: WellArchitectedProfile_Tag[];
|
|
39612
|
+
/** The date and time the profile was last updated. */
|
|
39613
|
+
UpdatedAt?: string;
|
|
39614
|
+
}, attributes?: CFResourceAttributes);
|
|
39615
|
+
readonly CreatedAt: string;
|
|
39616
|
+
readonly Owner: string;
|
|
39617
|
+
readonly ProfileArn: string;
|
|
39618
|
+
readonly ProfileVersion: string;
|
|
39619
|
+
readonly UpdatedAt: string;
|
|
39620
|
+
}
|
|
39621
|
+
|
|
38136
39622
|
export declare class WirelessDevice {
|
|
38137
39623
|
constructor(props: {
|
|
38138
39624
|
/** Wireless device destination name */
|
|
@@ -38284,6 +39770,90 @@ export declare class WorkflowDefinition {
|
|
|
38284
39770
|
readonly Status: "ACTIVE" | "DELETING";
|
|
38285
39771
|
}
|
|
38286
39772
|
|
|
39773
|
+
export declare class WorkflowExecution {
|
|
39774
|
+
constructor(props: {
|
|
39775
|
+
/** The Amazon Resource Name (ARN) of the workflow execution. */
|
|
39776
|
+
Arn?: string;
|
|
39777
|
+
/** The timestamp when the specified runtime instance of the workflow finished. */
|
|
39778
|
+
EndTime?: string;
|
|
39779
|
+
/** The Amazon Resource Name (ARN) of the image resource build version that the specified runtime instance of the workflow created. */
|
|
39780
|
+
ImageBuildVersionArn?: string;
|
|
39781
|
+
/** The timestamp when the specified runtime instance of the workflow started. */
|
|
39782
|
+
StartTime?: string;
|
|
39783
|
+
/** The current runtime status for the specified runtime instance of the workflow. */
|
|
39784
|
+
Status?: "CANCELLED" | "COMPLETED" | "FAILED" | "PENDING" | "ROLLBACK_COMPLETED" | "ROLLBACK_IN_PROGRESS" | "RUNNING" | "SKIPPED";
|
|
39785
|
+
/** The total number of steps in the specified runtime instance of the workflow that ran. */
|
|
39786
|
+
TotalStepCount?: number;
|
|
39787
|
+
/** A runtime count for the number of steps that failed in the specified runtime instance of the workflow. */
|
|
39788
|
+
TotalStepsFailed?: number;
|
|
39789
|
+
/** A runtime count for the number of steps that were skipped in the specified runtime instance of the workflow. */
|
|
39790
|
+
TotalStepsSkipped?: number;
|
|
39791
|
+
/** A runtime count for the number of steps that ran successfully in the specified runtime instance of the workflow. */
|
|
39792
|
+
TotalStepsSucceeded?: number;
|
|
39793
|
+
/** The type of workflow that Image Builder ran for the specified runtime instance of the workflow. */
|
|
39794
|
+
Type?: "BUILD" | "DISTRIBUTION" | "TEST";
|
|
39795
|
+
/** The Amazon Resource Name (ARN) of the build version for the Image Builder workflow resource that defines the specified runtime instance of the workflow. */
|
|
39796
|
+
WorkflowBuildVersionArn?: string;
|
|
39797
|
+
/** The unique identifier that Image Builder assigned to keep track of runtime details when it ran the workflow. */
|
|
39798
|
+
WorkflowExecutionId?: string;
|
|
39799
|
+
}, attributes?: CFResourceAttributes);
|
|
39800
|
+
readonly Arn: string;
|
|
39801
|
+
readonly EndTime: string;
|
|
39802
|
+
readonly StartTime: string;
|
|
39803
|
+
readonly Status: "CANCELLED" | "COMPLETED" | "FAILED" | "PENDING" | "ROLLBACK_COMPLETED" | "ROLLBACK_IN_PROGRESS" | "RUNNING" | "SKIPPED";
|
|
39804
|
+
readonly TotalStepCount: number;
|
|
39805
|
+
readonly TotalStepsFailed: number;
|
|
39806
|
+
readonly TotalStepsSkipped: number;
|
|
39807
|
+
readonly TotalStepsSucceeded: number;
|
|
39808
|
+
readonly Type: "BUILD" | "DISTRIBUTION" | "TEST";
|
|
39809
|
+
readonly WorkflowBuildVersionArn: string;
|
|
39810
|
+
readonly WorkflowExecutionId: string;
|
|
39811
|
+
}
|
|
39812
|
+
|
|
39813
|
+
export declare class WorkflowStepExecution {
|
|
39814
|
+
constructor(props: {
|
|
39815
|
+
/** The name of the action that the specified step performs. */
|
|
39816
|
+
Action?: string;
|
|
39817
|
+
/** The timestamp when the specified runtime instance of the workflow step finished. */
|
|
39818
|
+
EndTime?: string;
|
|
39819
|
+
/** The Amazon Resource Name (ARN) of the image resource build version that the specified runtime instance of the workflow step creates. */
|
|
39820
|
+
ImageBuildVersionArn?: string;
|
|
39821
|
+
/** Input parameters that Image Builder provided for the specified runtime instance of the workflow step. */
|
|
39822
|
+
Inputs?: string;
|
|
39823
|
+
/** The name of the specified runtime instance of the workflow step. */
|
|
39824
|
+
Name?: string;
|
|
39825
|
+
/** The action to perform if the workflow step fails. */
|
|
39826
|
+
OnFailure?: string;
|
|
39827
|
+
/** The file names that the specified runtime version of the workflow step created as output. */
|
|
39828
|
+
Outputs?: string;
|
|
39829
|
+
/** The timestamp when the specified runtime version of the workflow step started. */
|
|
39830
|
+
StartTime?: string;
|
|
39831
|
+
/** The current status for the specified runtime version of the workflow step. */
|
|
39832
|
+
Status?: "CANCELLED" | "COMPLETED" | "FAILED" | "PENDING" | "RUNNING" | "SKIPPED";
|
|
39833
|
+
/** The unique identifier for the workflow step execution. */
|
|
39834
|
+
StepExecutionId?: string;
|
|
39835
|
+
/** The maximum duration in seconds for this step to complete its action. */
|
|
39836
|
+
TimeoutSeconds?: number;
|
|
39837
|
+
/** The Amazon Resource Name (ARN) of the build version for the Image Builder workflow resource that defines this workflow step. */
|
|
39838
|
+
WorkflowBuildVersionArn?: string;
|
|
39839
|
+
/** The unique identifier that Image Builder assigned to keep track of runtime details when it ran the workflow. */
|
|
39840
|
+
WorkflowExecutionId?: string;
|
|
39841
|
+
}, attributes?: CFResourceAttributes);
|
|
39842
|
+
readonly Action: string;
|
|
39843
|
+
readonly EndTime: string;
|
|
39844
|
+
readonly ImageBuildVersionArn: string;
|
|
39845
|
+
readonly Inputs: string;
|
|
39846
|
+
readonly Name: string;
|
|
39847
|
+
readonly OnFailure: string;
|
|
39848
|
+
readonly Outputs: string;
|
|
39849
|
+
readonly StartTime: string;
|
|
39850
|
+
readonly Status: "CANCELLED" | "COMPLETED" | "FAILED" | "PENDING" | "RUNNING" | "SKIPPED";
|
|
39851
|
+
readonly StepExecutionId: string;
|
|
39852
|
+
readonly TimeoutSeconds: number;
|
|
39853
|
+
readonly WorkflowBuildVersionArn: string;
|
|
39854
|
+
readonly WorkflowExecutionId: string;
|
|
39855
|
+
}
|
|
39856
|
+
|
|
38287
39857
|
export declare class WorkflowVersion {
|
|
38288
39858
|
constructor(props: {
|
|
38289
39859
|
VersionName: string;
|
|
@@ -38444,6 +40014,25 @@ export declare class WorkspaceInstance {
|
|
|
38444
40014
|
readonly WorkspaceInstanceId: string;
|
|
38445
40015
|
}
|
|
38446
40016
|
|
|
40017
|
+
export declare class WorkspaceIpGroup {
|
|
40018
|
+
constructor(props: {
|
|
40019
|
+
/** The name of the group. */
|
|
40020
|
+
GroupName: string;
|
|
40021
|
+
/** The Amazon Resource Name (ARN) of the IP access control group. */
|
|
40022
|
+
Arn?: string;
|
|
40023
|
+
/** The description of the group. */
|
|
40024
|
+
GroupDesc?: string;
|
|
40025
|
+
/** The identifier of the IP access control group. */
|
|
40026
|
+
GroupId?: string;
|
|
40027
|
+
/** The tags for the IP access control group. */
|
|
40028
|
+
Tags?: WorkspaceIpGroup_Tag[];
|
|
40029
|
+
/** The rules for the IP access control group. */
|
|
40030
|
+
UserRules?: WorkspaceIpGroup_IpRuleItem[];
|
|
40031
|
+
}, attributes?: CFResourceAttributes);
|
|
40032
|
+
readonly Arn: string;
|
|
40033
|
+
readonly GroupId: string;
|
|
40034
|
+
}
|
|
40035
|
+
|
|
38447
40036
|
export declare class WorkspacesInstancesVolume {
|
|
38448
40037
|
constructor(props: {
|
|
38449
40038
|
/** The Availability Zone in which to create the volume */
|
|
@@ -39870,6 +41459,15 @@ export declare class AgentStatus_Tag {
|
|
|
39870
41459
|
});
|
|
39871
41460
|
}
|
|
39872
41461
|
|
|
41462
|
+
export declare class AgentTag {
|
|
41463
|
+
constructor(props: {
|
|
41464
|
+
/** The key name of the tag. */
|
|
41465
|
+
Key: string;
|
|
41466
|
+
/** The value for the tag. */
|
|
41467
|
+
Value: string;
|
|
41468
|
+
});
|
|
41469
|
+
}
|
|
41470
|
+
|
|
39873
41471
|
export declare class AggregateConfiguration {
|
|
39874
41472
|
constructor(props: {
|
|
39875
41473
|
Aggregates?: string[];
|
|
@@ -42909,6 +44507,24 @@ export declare class ApplicationMaintenanceConfiguration {
|
|
|
42909
44507
|
});
|
|
42910
44508
|
}
|
|
42911
44509
|
|
|
44510
|
+
export declare class ApplicationProvider_DisplayData {
|
|
44511
|
+
constructor(props: {
|
|
44512
|
+
/** The description of the application provider that appears in the portal. */
|
|
44513
|
+
Description?: string;
|
|
44514
|
+
/** The name of the application provider that appears in the portal. */
|
|
44515
|
+
DisplayName?: string;
|
|
44516
|
+
/** A URL that points to an icon that represents the application provider. */
|
|
44517
|
+
IconUrl?: string;
|
|
44518
|
+
});
|
|
44519
|
+
}
|
|
44520
|
+
|
|
44521
|
+
export declare class ApplicationProvider_ResourceServerConfig {
|
|
44522
|
+
constructor(props: {
|
|
44523
|
+
/** A map of IAM Identity Center access scopes associated with this resource server. */
|
|
44524
|
+
Scopes?: Record<string, unknown>;
|
|
44525
|
+
});
|
|
44526
|
+
}
|
|
44527
|
+
|
|
42912
44528
|
export declare class ApplicationResourceLifecycleConfig {
|
|
42913
44529
|
constructor(props: {
|
|
42914
44530
|
/** The ARN of an IAM service role that Elastic Beanstalk has permission to assume. The ServiceRole property is required the first time that you provide a ResourceLifecycleConfig for the application. After you provide it once, Elastic Beanstalk persists the Service Role with the application, and you don't need to specify it again. You can, however, specify it in subsequent updates to change the Service Role to another value. */
|
|
@@ -44655,6 +46271,21 @@ export declare class AthenaParameters {
|
|
|
44655
46271
|
});
|
|
44656
46272
|
}
|
|
44657
46273
|
|
|
46274
|
+
export declare class AthenaSession_EngineConfiguration {
|
|
46275
|
+
constructor(props: {
|
|
46276
|
+
/** The maximum number of DPUs that can run concurrently. */
|
|
46277
|
+
MaxConcurrentDpus: number;
|
|
46278
|
+
/** Contains additional notebook engine parameter mappings. */
|
|
46279
|
+
AdditionalConfigs?: Record<string, unknown>;
|
|
46280
|
+
/** The number of DPUs to use for the coordinator. */
|
|
46281
|
+
CoordinatorDpuSize?: number;
|
|
46282
|
+
/** The default number of DPUs to use for executors. */
|
|
46283
|
+
DefaultExecutorDpuSize?: number;
|
|
46284
|
+
/** Specifies custom jar files and Spark properties. */
|
|
46285
|
+
SparkProperties?: Record<string, unknown>;
|
|
46286
|
+
});
|
|
46287
|
+
}
|
|
46288
|
+
|
|
44658
46289
|
export declare class AtlassianOauth2ProviderConfigInput {
|
|
44659
46290
|
constructor(props: {
|
|
44660
46291
|
ClientId: string;
|
|
@@ -46701,6 +48332,64 @@ export declare class BCMDashboard_WidgetConfig {
|
|
|
46701
48332
|
});
|
|
46702
48333
|
}
|
|
46703
48334
|
|
|
48335
|
+
export declare class BCMDataExportsExport_DataQuery {
|
|
48336
|
+
constructor(props: {
|
|
48337
|
+
QueryStatement: string;
|
|
48338
|
+
TableConfigurations?: Record<string, unknown>;
|
|
48339
|
+
});
|
|
48340
|
+
}
|
|
48341
|
+
|
|
48342
|
+
export declare class BCMDataExportsExport_DestinationConfigurations {
|
|
48343
|
+
constructor(props: {
|
|
48344
|
+
S3Destination: BCMDataExportsExport_S3Destination;
|
|
48345
|
+
});
|
|
48346
|
+
}
|
|
48347
|
+
|
|
48348
|
+
export declare class BCMDataExportsExport_Export {
|
|
48349
|
+
constructor(props: {
|
|
48350
|
+
DataQuery: BCMDataExportsExport_DataQuery;
|
|
48351
|
+
DestinationConfigurations: BCMDataExportsExport_DestinationConfigurations;
|
|
48352
|
+
Name: string;
|
|
48353
|
+
RefreshCadence: BCMDataExportsExport_RefreshCadence;
|
|
48354
|
+
Description?: string;
|
|
48355
|
+
ExportArn?: string;
|
|
48356
|
+
});
|
|
48357
|
+
}
|
|
48358
|
+
|
|
48359
|
+
export declare class BCMDataExportsExport_RefreshCadence {
|
|
48360
|
+
constructor(props: {
|
|
48361
|
+
Frequency: BCMDataExportsExport_FrequencyOption;
|
|
48362
|
+
});
|
|
48363
|
+
}
|
|
48364
|
+
|
|
48365
|
+
export declare class BCMDataExportsExport_ResourceTag {
|
|
48366
|
+
constructor(props: {
|
|
48367
|
+
Key: string;
|
|
48368
|
+
Value: string;
|
|
48369
|
+
});
|
|
48370
|
+
}
|
|
48371
|
+
|
|
48372
|
+
export declare class BCMDataExportsExport_S3Destination {
|
|
48373
|
+
constructor(props: {
|
|
48374
|
+
S3Bucket: string;
|
|
48375
|
+
S3OutputConfigurations: Record<string, unknown>;
|
|
48376
|
+
S3Prefix: string;
|
|
48377
|
+
S3Region: string;
|
|
48378
|
+
S3BucketOwner?: string;
|
|
48379
|
+
});
|
|
48380
|
+
}
|
|
48381
|
+
|
|
48382
|
+
export declare class BCMDataExportsTable_Column {
|
|
48383
|
+
constructor(props: {
|
|
48384
|
+
/** The description for a column. */
|
|
48385
|
+
Description?: string;
|
|
48386
|
+
/** The column name. */
|
|
48387
|
+
Name?: string;
|
|
48388
|
+
/** The kind of data a column stores. */
|
|
48389
|
+
Type?: string;
|
|
48390
|
+
});
|
|
48391
|
+
}
|
|
48392
|
+
|
|
46704
48393
|
export declare class BedrockAgent_AgentActionGroup {
|
|
46705
48394
|
constructor(props: {
|
|
46706
48395
|
/** Name of the action group */
|
|
@@ -46917,6 +48606,15 @@ export declare class BedrockAgentIntentConfiguration {
|
|
|
46917
48606
|
});
|
|
46918
48607
|
}
|
|
46919
48608
|
|
|
48609
|
+
export declare class BedrockBlueprint_Tag {
|
|
48610
|
+
constructor(props: {
|
|
48611
|
+
/** Key for the tag */
|
|
48612
|
+
Key: string;
|
|
48613
|
+
/** Value for the tag */
|
|
48614
|
+
Value: string;
|
|
48615
|
+
});
|
|
48616
|
+
}
|
|
48617
|
+
|
|
46920
48618
|
export declare class BedrockDataAutomationConfiguration {
|
|
46921
48619
|
constructor(props: {
|
|
46922
48620
|
ParsingModality?: BedrockDataSource_ParsingModality;
|
|
@@ -47717,15 +49415,6 @@ export declare class BlueInstanceTerminationOption {
|
|
|
47717
49415
|
});
|
|
47718
49416
|
}
|
|
47719
49417
|
|
|
47720
|
-
export declare class Blueprint_Tag {
|
|
47721
|
-
constructor(props: {
|
|
47722
|
-
/** Key for the tag */
|
|
47723
|
-
Key: string;
|
|
47724
|
-
/** Value for the tag */
|
|
47725
|
-
Value: string;
|
|
47726
|
-
});
|
|
47727
|
-
}
|
|
47728
|
-
|
|
47729
49418
|
export declare class BlueprintItem {
|
|
47730
49419
|
constructor(props: {
|
|
47731
49420
|
/** ARN of a Blueprint */
|
|
@@ -58732,6 +60421,62 @@ export declare class CustomPolicyDetails {
|
|
|
58732
60421
|
});
|
|
58733
60422
|
}
|
|
58734
60423
|
|
|
60424
|
+
export declare class CustomPromptInput {
|
|
60425
|
+
constructor(props: {
|
|
60426
|
+
ExistingPrompt?: QuickSightAgent_CustomPromptProfile;
|
|
60427
|
+
NewPrompt?: QuickSightAgent_CustomPromptInputParameters;
|
|
60428
|
+
});
|
|
60429
|
+
}
|
|
60430
|
+
|
|
60431
|
+
export declare class CustomPromptInputParameters {
|
|
60432
|
+
constructor(props: {
|
|
60433
|
+
/** Custom instructions for the agent behavior. */
|
|
60434
|
+
CustomInstructions?: string;
|
|
60435
|
+
/** The identity or persona of the agent. */
|
|
60436
|
+
Identity?: string;
|
|
60437
|
+
/** The output style for the agent responses. */
|
|
60438
|
+
OutputStyle?: string;
|
|
60439
|
+
/** The desired response length for the agent. */
|
|
60440
|
+
ResponseLength?: string;
|
|
60441
|
+
/** The tone used in agent responses. */
|
|
60442
|
+
Tone?: string;
|
|
60443
|
+
});
|
|
60444
|
+
}
|
|
60445
|
+
|
|
60446
|
+
export declare class CustomPromptInterface {
|
|
60447
|
+
constructor(props: {
|
|
60448
|
+
/** Custom instructions for the agent behavior. */
|
|
60449
|
+
CustomInstructions?: string;
|
|
60450
|
+
/** The identity or persona of the agent. */
|
|
60451
|
+
Identity?: string;
|
|
60452
|
+
/** The identifier of the model profile. */
|
|
60453
|
+
ModelProfileId?: string;
|
|
60454
|
+
/** The output style for the agent responses. */
|
|
60455
|
+
OutputStyle?: string;
|
|
60456
|
+
/** A summary of the resolved prompt. */
|
|
60457
|
+
PromptSummary?: string;
|
|
60458
|
+
/** The QBS AWS account identifier. */
|
|
60459
|
+
QbsAwsAccountId?: string;
|
|
60460
|
+
/** The desired response length for the agent. */
|
|
60461
|
+
ResponseLength?: string;
|
|
60462
|
+
/** The subscription identifier. */
|
|
60463
|
+
SubscriptionId?: string;
|
|
60464
|
+
/** The tone used in agent responses. */
|
|
60465
|
+
Tone?: string;
|
|
60466
|
+
});
|
|
60467
|
+
}
|
|
60468
|
+
|
|
60469
|
+
export declare class CustomPromptProfile {
|
|
60470
|
+
constructor(props: {
|
|
60471
|
+
/** The identifier of the model profile. */
|
|
60472
|
+
ModelProfileId: string;
|
|
60473
|
+
/** The QBS AWS account identifier. */
|
|
60474
|
+
QbsAwsAccountId: string;
|
|
60475
|
+
/** The subscription identifier. */
|
|
60476
|
+
SubscriptionId: string;
|
|
60477
|
+
});
|
|
60478
|
+
}
|
|
60479
|
+
|
|
58735
60480
|
export declare class CustomRequestHandling {
|
|
58736
60481
|
constructor(props: {
|
|
58737
60482
|
/** Collection of HTTP headers. */
|
|
@@ -60241,6 +61986,40 @@ export declare class DataBrewProject_Tag {
|
|
|
60241
61986
|
});
|
|
60242
61987
|
}
|
|
60243
61988
|
|
|
61989
|
+
export declare class DataBrewRecipe_Action {
|
|
61990
|
+
constructor(props: {
|
|
61991
|
+
/** Step action operation */
|
|
61992
|
+
Operation: string;
|
|
61993
|
+
Parameters?: any;
|
|
61994
|
+
});
|
|
61995
|
+
}
|
|
61996
|
+
|
|
61997
|
+
export declare class DataBrewRecipe_ConditionExpression {
|
|
61998
|
+
constructor(props: {
|
|
61999
|
+
/** Input condition to be applied to the target column */
|
|
62000
|
+
Condition: string;
|
|
62001
|
+
/** Name of the target column */
|
|
62002
|
+
TargetColumn: string;
|
|
62003
|
+
/** Value of the condition */
|
|
62004
|
+
Value?: string;
|
|
62005
|
+
});
|
|
62006
|
+
}
|
|
62007
|
+
|
|
62008
|
+
export declare class DataBrewRecipe_RecipeStep {
|
|
62009
|
+
constructor(props: {
|
|
62010
|
+
Action: DataBrewRecipe_Action;
|
|
62011
|
+
/** Condition expressions applied to the step action */
|
|
62012
|
+
ConditionExpressions?: DataBrewRecipe_ConditionExpression[];
|
|
62013
|
+
});
|
|
62014
|
+
}
|
|
62015
|
+
|
|
62016
|
+
export declare class DataBrewRecipe_Tag {
|
|
62017
|
+
constructor(props: {
|
|
62018
|
+
Key: string;
|
|
62019
|
+
Value: string;
|
|
62020
|
+
});
|
|
62021
|
+
}
|
|
62022
|
+
|
|
60244
62023
|
export declare class DataBrewSchedule_Tag {
|
|
60245
62024
|
constructor(props: {
|
|
60246
62025
|
Key: string;
|
|
@@ -63739,7 +65518,7 @@ export declare class DeprecateRule {
|
|
|
63739
65518
|
|
|
63740
65519
|
export declare class DestinationConfigurations {
|
|
63741
65520
|
constructor(props: {
|
|
63742
|
-
S3Destination:
|
|
65521
|
+
S3Destination: BCMDataExportsExport_S3Destination;
|
|
63743
65522
|
});
|
|
63744
65523
|
}
|
|
63745
65524
|
|
|
@@ -64351,6 +66130,17 @@ export declare class DisplayConfig {
|
|
|
64351
66130
|
});
|
|
64352
66131
|
}
|
|
64353
66132
|
|
|
66133
|
+
export declare class DisplayData {
|
|
66134
|
+
constructor(props: {
|
|
66135
|
+
/** The description of the application provider that appears in the portal. */
|
|
66136
|
+
Description?: string;
|
|
66137
|
+
/** The name of the application provider that appears in the portal. */
|
|
66138
|
+
DisplayName?: string;
|
|
66139
|
+
/** A URL that points to an icon that represents the application provider. */
|
|
66140
|
+
IconUrl?: string;
|
|
66141
|
+
});
|
|
66142
|
+
}
|
|
66143
|
+
|
|
64354
66144
|
export declare class Distribution {
|
|
64355
66145
|
constructor(props: {
|
|
64356
66146
|
/** region */
|
|
@@ -65186,8 +66976,11 @@ export declare class DMSInstanceProfile_Tag {
|
|
|
65186
66976
|
|
|
65187
66977
|
export declare class DnsConfig {
|
|
65188
66978
|
constructor(props: {
|
|
66979
|
+
/** A list of DNS records associated with the service. */
|
|
65189
66980
|
DnsRecords: ServiceDiscoveryService_DnsRecord[];
|
|
66981
|
+
/** The ID of the namespace for the DNS configuration. */
|
|
65190
66982
|
NamespaceId?: string;
|
|
66983
|
+
/** The routing policy to use for DNS queries. */
|
|
65191
66984
|
RoutingPolicy?: string;
|
|
65192
66985
|
});
|
|
65193
66986
|
}
|
|
@@ -65229,7 +67022,9 @@ export declare class DnsPrevalidationOptions {
|
|
|
65229
67022
|
|
|
65230
67023
|
export declare class DnsRecord {
|
|
65231
67024
|
constructor(props: {
|
|
67025
|
+
/** The time-to-live (TTL) for the DNS record. */
|
|
65232
67026
|
TTL: number;
|
|
67027
|
+
/** The DNS record type (e.g., A, AAAA, SRV). */
|
|
65233
67028
|
Type: string;
|
|
65234
67029
|
});
|
|
65235
67030
|
}
|
|
@@ -69173,23 +70968,6 @@ export declare class EnforcedGuardrailConfiguration_SelectiveContentGuarding {
|
|
|
69173
70968
|
});
|
|
69174
70969
|
}
|
|
69175
70970
|
|
|
69176
|
-
export declare class EngineConfiguration {
|
|
69177
|
-
constructor(props: {
|
|
69178
|
-
/** Contains additional notebook engine MAP<string, string> parameter mappings in the form of key-value pairs. To specify an Athena notebook that the Jupyter server will download and serve, specify a value for the StartSessionRequest$NotebookVersion field, and then add a key named NotebookId to AdditionalConfigs that has the value of the Athena notebook ID. */
|
|
69179
|
-
AdditionalConfigs?: Record<string, unknown>;
|
|
69180
|
-
/** The configuration classifications that can be specified for the engine. */
|
|
69181
|
-
Classifications?: WorkGroup_Classification[];
|
|
69182
|
-
/** The number of DPUs to use for the coordinator. A coordinator is a special executor that orchestrates processing work and manages other executors in a notebook session. The default is 1. */
|
|
69183
|
-
CoordinatorDpuSize?: number;
|
|
69184
|
-
/** The default number of DPUs to use for executors. An executor is the smallest unit of compute that a notebook session can request from Athena. The default is 1. */
|
|
69185
|
-
DefaultExecutorDpuSize?: number;
|
|
69186
|
-
/** The maximum number of DPUs that can run concurrently. */
|
|
69187
|
-
MaxConcurrentDpus?: number;
|
|
69188
|
-
/** Specifies custom jar files and Spark properties for use cases like cluster encryption, table formats, and general Spark tuning. */
|
|
69189
|
-
SparkProperties?: Record<string, unknown>;
|
|
69190
|
-
});
|
|
69191
|
-
}
|
|
69192
|
-
|
|
69193
70971
|
export declare class EngineVersion {
|
|
69194
70972
|
constructor(props: {
|
|
69195
70973
|
EffectiveEngineVersion?: string;
|
|
@@ -70694,6 +72472,15 @@ export declare class ExecutionControls {
|
|
|
70694
72472
|
});
|
|
70695
72473
|
}
|
|
70696
72474
|
|
|
72475
|
+
export declare class ExecutionEngineConfig {
|
|
72476
|
+
constructor(props: {
|
|
72477
|
+
/** The unique identifier of the execution engine. For an Amazon EMR cluster, this is the cluster ID. */
|
|
72478
|
+
Id: string;
|
|
72479
|
+
/** The type of execution engine. */
|
|
72480
|
+
Type?: "EMR";
|
|
72481
|
+
});
|
|
72482
|
+
}
|
|
72483
|
+
|
|
70697
72484
|
export declare class ExecutionPlan_CapacityUnitsConfiguration {
|
|
70698
72485
|
constructor(props: {
|
|
70699
72486
|
RescoreCapacityUnits: number;
|
|
@@ -70885,53 +72672,17 @@ export declare class Explanation {
|
|
|
70885
72672
|
});
|
|
70886
72673
|
}
|
|
70887
72674
|
|
|
70888
|
-
export declare class
|
|
70889
|
-
constructor(props: {
|
|
70890
|
-
QueryStatement: string;
|
|
70891
|
-
TableConfigurations?: Record<string, unknown>;
|
|
70892
|
-
});
|
|
70893
|
-
}
|
|
70894
|
-
|
|
70895
|
-
export declare class Export_DestinationConfigurations {
|
|
70896
|
-
constructor(props: {
|
|
70897
|
-
S3Destination: Export_S3Destination;
|
|
70898
|
-
});
|
|
70899
|
-
}
|
|
70900
|
-
|
|
70901
|
-
export declare class Export_Export {
|
|
72675
|
+
export declare class Export {
|
|
70902
72676
|
constructor(props: {
|
|
70903
|
-
DataQuery:
|
|
70904
|
-
DestinationConfigurations:
|
|
72677
|
+
DataQuery: BCMDataExportsExport_DataQuery;
|
|
72678
|
+
DestinationConfigurations: BCMDataExportsExport_DestinationConfigurations;
|
|
70905
72679
|
Name: string;
|
|
70906
|
-
RefreshCadence:
|
|
72680
|
+
RefreshCadence: BCMDataExportsExport_RefreshCadence;
|
|
70907
72681
|
Description?: string;
|
|
70908
72682
|
ExportArn?: string;
|
|
70909
72683
|
});
|
|
70910
72684
|
}
|
|
70911
72685
|
|
|
70912
|
-
export declare class Export_RefreshCadence {
|
|
70913
|
-
constructor(props: {
|
|
70914
|
-
Frequency: Export_FrequencyOption;
|
|
70915
|
-
});
|
|
70916
|
-
}
|
|
70917
|
-
|
|
70918
|
-
export declare class Export_ResourceTag {
|
|
70919
|
-
constructor(props: {
|
|
70920
|
-
Key: string;
|
|
70921
|
-
Value: string;
|
|
70922
|
-
});
|
|
70923
|
-
}
|
|
70924
|
-
|
|
70925
|
-
export declare class Export_S3Destination {
|
|
70926
|
-
constructor(props: {
|
|
70927
|
-
S3Bucket: string;
|
|
70928
|
-
S3OutputConfigurations: Record<string, unknown>;
|
|
70929
|
-
S3Prefix: string;
|
|
70930
|
-
S3Region: string;
|
|
70931
|
-
S3BucketOwner?: string;
|
|
70932
|
-
});
|
|
70933
|
-
}
|
|
70934
|
-
|
|
70935
72686
|
export declare class ExportHiddenFieldsOption {
|
|
70936
72687
|
constructor(props: {
|
|
70937
72688
|
AvailabilityStatus?: QuickSightDashboard_DashboardBehavior;
|
|
@@ -73981,6 +75732,28 @@ export declare class GcpMySQLSettings {
|
|
|
73981
75732
|
});
|
|
73982
75733
|
}
|
|
73983
75734
|
|
|
75735
|
+
export declare class GeneratedTemplate_TemplateConfiguration {
|
|
75736
|
+
constructor(props: {
|
|
75737
|
+
/** The DeletionPolicy assigned to resources in the generated template. */
|
|
75738
|
+
DeletionPolicy?: "DELETE" | "RETAIN";
|
|
75739
|
+
/** The UpdateReplacePolicy assigned to resources in the generated template. */
|
|
75740
|
+
UpdateReplacePolicy?: "DELETE" | "RETAIN";
|
|
75741
|
+
});
|
|
75742
|
+
}
|
|
75743
|
+
|
|
75744
|
+
export declare class GeneratedTemplate_TemplateProgress {
|
|
75745
|
+
constructor(props: {
|
|
75746
|
+
/** The number of resources that failed the template generation. */
|
|
75747
|
+
ResourcesFailed?: number;
|
|
75748
|
+
/** The number of resources that are still pending the template generation. */
|
|
75749
|
+
ResourcesPending?: number;
|
|
75750
|
+
/** The number of resources that are in-process for the template generation. */
|
|
75751
|
+
ResourcesProcessing?: number;
|
|
75752
|
+
/** The number of resources that succeeded the template generation. */
|
|
75753
|
+
ResourcesSucceeded?: number;
|
|
75754
|
+
});
|
|
75755
|
+
}
|
|
75756
|
+
|
|
73984
75757
|
export declare class GenerateSecretString {
|
|
73985
75758
|
constructor(props: {
|
|
73986
75759
|
/** A string of the characters that you don't want in the password. */
|
|
@@ -74449,6 +76222,15 @@ export declare class GlobalTableWitness {
|
|
|
74449
76222
|
});
|
|
74450
76223
|
}
|
|
74451
76224
|
|
|
76225
|
+
export declare class GlueBlueprint_Tag {
|
|
76226
|
+
constructor(props: {
|
|
76227
|
+
/** The key name of the tag. */
|
|
76228
|
+
Key: string;
|
|
76229
|
+
/** The value for the tag. */
|
|
76230
|
+
Value: string;
|
|
76231
|
+
});
|
|
76232
|
+
}
|
|
76233
|
+
|
|
74452
76234
|
export declare class GlueConnection_AuthenticationConfigurationInput {
|
|
74453
76235
|
constructor(props: {
|
|
74454
76236
|
AuthenticationType: string;
|
|
@@ -76111,6 +77893,17 @@ export declare class HarnessTruncationStrategyConfiguration {
|
|
|
76111
77893
|
});
|
|
76112
77894
|
}
|
|
76113
77895
|
|
|
77896
|
+
export declare class HarvestJob_S3Destination {
|
|
77897
|
+
constructor(props: {
|
|
77898
|
+
/** The name of an S3 bucket within which harvested content will be exported. */
|
|
77899
|
+
BucketName: string;
|
|
77900
|
+
/** The key in the specified S3 bucket where the harvested top-level manifest will be placed. */
|
|
77901
|
+
ManifestKey: string;
|
|
77902
|
+
/** The IAM role used to write to the specified S3 bucket. */
|
|
77903
|
+
RoleArn: string;
|
|
77904
|
+
});
|
|
77905
|
+
}
|
|
77906
|
+
|
|
76114
77907
|
export declare class HeaderConfig {
|
|
76115
77908
|
constructor(props: {
|
|
76116
77909
|
Alignment?: InAppTemplate_Alignment;
|
|
@@ -76164,6 +77957,7 @@ export declare class HealthCheckConfiguration {
|
|
|
76164
77957
|
|
|
76165
77958
|
export declare class HealthCheckCustomConfig {
|
|
76166
77959
|
constructor(props: {
|
|
77960
|
+
/** The number of consecutive health check failures required before the service is considered unhealthy. */
|
|
76167
77961
|
FailureThreshold?: number;
|
|
76168
77962
|
});
|
|
76169
77963
|
}
|
|
@@ -81430,6 +83224,15 @@ export declare class IpRule {
|
|
|
81430
83224
|
});
|
|
81431
83225
|
}
|
|
81432
83226
|
|
|
83227
|
+
export declare class IpRuleItem {
|
|
83228
|
+
constructor(props: {
|
|
83229
|
+
/** The IP address range, in CIDR notation. */
|
|
83230
|
+
IpRule: string;
|
|
83231
|
+
/** The description of the rule. */
|
|
83232
|
+
RuleDesc?: string;
|
|
83233
|
+
});
|
|
83234
|
+
}
|
|
83235
|
+
|
|
81433
83236
|
export declare class Ipv6Add {
|
|
81434
83237
|
constructor(props: {
|
|
81435
83238
|
/** One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet. You can't use this option if you're specifying a number of IPv6 addresses. */
|
|
@@ -87764,6 +89567,106 @@ export declare class MappingRule {
|
|
|
87764
89567
|
});
|
|
87765
89568
|
}
|
|
87766
89569
|
|
|
89570
|
+
export declare class MapRun_MapRunExecutionCounts {
|
|
89571
|
+
constructor(props: {
|
|
89572
|
+
/** The total number of child workflow executions that were stopped. */
|
|
89573
|
+
Aborted?: number;
|
|
89574
|
+
/** The total number of child workflow executions that have failed. */
|
|
89575
|
+
Failed?: number;
|
|
89576
|
+
/** The number of child workflow executions that cannot be redriven. */
|
|
89577
|
+
FailuresNotRedrivable?: number;
|
|
89578
|
+
/** The total number of child workflow executions that haven't started executing yet. */
|
|
89579
|
+
Pending?: number;
|
|
89580
|
+
/** The number of unsuccessful child workflow executions waiting to be redriven. */
|
|
89581
|
+
PendingRedrive?: number;
|
|
89582
|
+
/** The count of child workflow executions whose results were written by ResultWriter. */
|
|
89583
|
+
ResultsWritten?: number;
|
|
89584
|
+
/** The total number of child workflow executions that are currently in-progress. */
|
|
89585
|
+
Running?: number;
|
|
89586
|
+
/** The total number of child workflow executions that have completed successfully. */
|
|
89587
|
+
Succeeded?: number;
|
|
89588
|
+
/** The total number of child workflow executions that have timed out. */
|
|
89589
|
+
TimedOut?: number;
|
|
89590
|
+
/** The total number of child workflow executions started by a Map Run. */
|
|
89591
|
+
Total?: number;
|
|
89592
|
+
});
|
|
89593
|
+
}
|
|
89594
|
+
|
|
89595
|
+
export declare class MapRun_MapRunItemCounts {
|
|
89596
|
+
constructor(props: {
|
|
89597
|
+
/** The total number of items processed in child workflow executions that were stopped. */
|
|
89598
|
+
Aborted?: number;
|
|
89599
|
+
/** The total number of items processed in child workflow executions that have failed. */
|
|
89600
|
+
Failed?: number;
|
|
89601
|
+
/** The number of items in child workflow executions that cannot be redriven. */
|
|
89602
|
+
FailuresNotRedrivable?: number;
|
|
89603
|
+
/** The total number of items to process in child workflow executions that haven't started running yet. */
|
|
89604
|
+
Pending?: number;
|
|
89605
|
+
/** The number of unsuccessful items currently waiting to be redriven. */
|
|
89606
|
+
PendingRedrive?: number;
|
|
89607
|
+
/** The count of items whose results were written by ResultWriter. */
|
|
89608
|
+
ResultsWritten?: number;
|
|
89609
|
+
/** The total number of items being processed in child workflow executions that are currently in-progress. */
|
|
89610
|
+
Running?: number;
|
|
89611
|
+
/** The total number of items processed in child workflow executions that have completed successfully. */
|
|
89612
|
+
Succeeded?: number;
|
|
89613
|
+
/** The total number of items processed in child workflow executions that have timed out. */
|
|
89614
|
+
TimedOut?: number;
|
|
89615
|
+
/** The total number of items processed in all the child workflow executions started by a Map Run. */
|
|
89616
|
+
Total?: number;
|
|
89617
|
+
});
|
|
89618
|
+
}
|
|
89619
|
+
|
|
89620
|
+
export declare class MapRunExecutionCounts {
|
|
89621
|
+
constructor(props: {
|
|
89622
|
+
/** The total number of child workflow executions that were stopped. */
|
|
89623
|
+
Aborted?: number;
|
|
89624
|
+
/** The total number of child workflow executions that have failed. */
|
|
89625
|
+
Failed?: number;
|
|
89626
|
+
/** The number of child workflow executions that cannot be redriven. */
|
|
89627
|
+
FailuresNotRedrivable?: number;
|
|
89628
|
+
/** The total number of child workflow executions that haven't started executing yet. */
|
|
89629
|
+
Pending?: number;
|
|
89630
|
+
/** The number of unsuccessful child workflow executions waiting to be redriven. */
|
|
89631
|
+
PendingRedrive?: number;
|
|
89632
|
+
/** The count of child workflow executions whose results were written by ResultWriter. */
|
|
89633
|
+
ResultsWritten?: number;
|
|
89634
|
+
/** The total number of child workflow executions that are currently in-progress. */
|
|
89635
|
+
Running?: number;
|
|
89636
|
+
/** The total number of child workflow executions that have completed successfully. */
|
|
89637
|
+
Succeeded?: number;
|
|
89638
|
+
/** The total number of child workflow executions that have timed out. */
|
|
89639
|
+
TimedOut?: number;
|
|
89640
|
+
/** The total number of child workflow executions started by a Map Run. */
|
|
89641
|
+
Total?: number;
|
|
89642
|
+
});
|
|
89643
|
+
}
|
|
89644
|
+
|
|
89645
|
+
export declare class MapRunItemCounts {
|
|
89646
|
+
constructor(props: {
|
|
89647
|
+
/** The total number of items processed in child workflow executions that were stopped. */
|
|
89648
|
+
Aborted?: number;
|
|
89649
|
+
/** The total number of items processed in child workflow executions that have failed. */
|
|
89650
|
+
Failed?: number;
|
|
89651
|
+
/** The number of items in child workflow executions that cannot be redriven. */
|
|
89652
|
+
FailuresNotRedrivable?: number;
|
|
89653
|
+
/** The total number of items to process in child workflow executions that haven't started running yet. */
|
|
89654
|
+
Pending?: number;
|
|
89655
|
+
/** The number of unsuccessful items currently waiting to be redriven. */
|
|
89656
|
+
PendingRedrive?: number;
|
|
89657
|
+
/** The count of items whose results were written by ResultWriter. */
|
|
89658
|
+
ResultsWritten?: number;
|
|
89659
|
+
/** The total number of items being processed in child workflow executions that are currently in-progress. */
|
|
89660
|
+
Running?: number;
|
|
89661
|
+
/** The total number of items processed in child workflow executions that have completed successfully. */
|
|
89662
|
+
Succeeded?: number;
|
|
89663
|
+
/** The total number of items processed in child workflow executions that have timed out. */
|
|
89664
|
+
TimedOut?: number;
|
|
89665
|
+
/** The total number of items processed in all the child workflow executions started by a Map Run. */
|
|
89666
|
+
Total?: number;
|
|
89667
|
+
});
|
|
89668
|
+
}
|
|
89669
|
+
|
|
87767
89670
|
export declare class MariaDbParameters {
|
|
87768
89671
|
constructor(props: {
|
|
87769
89672
|
/** <p>Database.</p> */
|
|
@@ -88060,6 +89963,13 @@ export declare class MaximumAllowedResources {
|
|
|
88060
89963
|
});
|
|
88061
89964
|
}
|
|
88062
89965
|
|
|
89966
|
+
export declare class Media {
|
|
89967
|
+
constructor(props: {
|
|
89968
|
+
/** The Amazon S3 location of the media file */
|
|
89969
|
+
MediaFileUri?: string;
|
|
89970
|
+
});
|
|
89971
|
+
}
|
|
89972
|
+
|
|
88063
89973
|
export declare class MediaConcurrency {
|
|
88064
89974
|
constructor(props: {
|
|
88065
89975
|
Channel: RoutingProfile_Channel;
|
|
@@ -89805,6 +91715,52 @@ export declare class MediaTailorChannel_TimeShiftConfiguration {
|
|
|
89805
91715
|
});
|
|
89806
91716
|
}
|
|
89807
91717
|
|
|
91718
|
+
export declare class MedicalTranscript {
|
|
91719
|
+
constructor(props: {
|
|
91720
|
+
/** The Amazon S3 location of the transcript */
|
|
91721
|
+
TranscriptFileUri?: string;
|
|
91722
|
+
});
|
|
91723
|
+
}
|
|
91724
|
+
|
|
91725
|
+
export declare class MedicalTranscriptionJob_Media {
|
|
91726
|
+
constructor(props: {
|
|
91727
|
+
/** The Amazon S3 location of the media file */
|
|
91728
|
+
MediaFileUri?: string;
|
|
91729
|
+
});
|
|
91730
|
+
}
|
|
91731
|
+
|
|
91732
|
+
export declare class MedicalTranscriptionJob_MedicalTranscript {
|
|
91733
|
+
constructor(props: {
|
|
91734
|
+
/** The Amazon S3 location of the transcript */
|
|
91735
|
+
TranscriptFileUri?: string;
|
|
91736
|
+
});
|
|
91737
|
+
}
|
|
91738
|
+
|
|
91739
|
+
export declare class MedicalTranscriptionJob_MedicalTranscriptionSetting {
|
|
91740
|
+
constructor(props: {
|
|
91741
|
+
/** Enables channel identification in multi-channel audio */
|
|
91742
|
+
ChannelIdentification?: boolean;
|
|
91743
|
+
/** Include alternative transcriptions */
|
|
91744
|
+
ShowAlternatives?: boolean;
|
|
91745
|
+
});
|
|
91746
|
+
}
|
|
91747
|
+
|
|
91748
|
+
export declare class MedicalTranscriptionJob_Tag {
|
|
91749
|
+
constructor(props: {
|
|
91750
|
+
Key: string;
|
|
91751
|
+
Value: string;
|
|
91752
|
+
});
|
|
91753
|
+
}
|
|
91754
|
+
|
|
91755
|
+
export declare class MedicalTranscriptionSetting {
|
|
91756
|
+
constructor(props: {
|
|
91757
|
+
/** Enables channel identification in multi-channel audio */
|
|
91758
|
+
ChannelIdentification?: boolean;
|
|
91759
|
+
/** Include alternative transcriptions */
|
|
91760
|
+
ShowAlternatives?: boolean;
|
|
91761
|
+
});
|
|
91762
|
+
}
|
|
91763
|
+
|
|
89808
91764
|
export declare class Member {
|
|
89809
91765
|
constructor(props: {
|
|
89810
91766
|
GroupIdentifier?: string;
|
|
@@ -92780,6 +94736,24 @@ export declare class MonitoringSubscription_RealtimeMetricsSubscriptionConfig {
|
|
|
92780
94736
|
});
|
|
92781
94737
|
}
|
|
92782
94738
|
|
|
94739
|
+
export declare class MonitorLocalResource {
|
|
94740
|
+
constructor(props: {
|
|
94741
|
+
/** The identifier of the local resource. */
|
|
94742
|
+
Identifier: string;
|
|
94743
|
+
/** The type of the local resource. */
|
|
94744
|
+
Type: "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::EC2::VPC" | "AWS::EKS::Cluster" | "AWS::Region";
|
|
94745
|
+
});
|
|
94746
|
+
}
|
|
94747
|
+
|
|
94748
|
+
export declare class MonitorRemoteResource {
|
|
94749
|
+
constructor(props: {
|
|
94750
|
+
/** The identifier of the remote resource. */
|
|
94751
|
+
Identifier: string;
|
|
94752
|
+
/** The type of the remote resource. */
|
|
94753
|
+
Type: "AWS::AWSService" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::EC2::VPC" | "AWS::Region";
|
|
94754
|
+
});
|
|
94755
|
+
}
|
|
94756
|
+
|
|
92783
94757
|
export declare class MonthlySchedule {
|
|
92784
94758
|
constructor(props: {
|
|
92785
94759
|
Day: CisScanConfiguration_Day;
|
|
@@ -93914,6 +95888,31 @@ export declare class NetworkFirewallRuleGroup_Tag {
|
|
|
93914
95888
|
});
|
|
93915
95889
|
}
|
|
93916
95890
|
|
|
95891
|
+
export declare class NetworkFlowMonitorMonitor_MonitorLocalResource {
|
|
95892
|
+
constructor(props: {
|
|
95893
|
+
/** The identifier of the local resource. */
|
|
95894
|
+
Identifier: string;
|
|
95895
|
+
/** The type of the local resource. */
|
|
95896
|
+
Type: "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::EC2::VPC" | "AWS::EKS::Cluster" | "AWS::Region";
|
|
95897
|
+
});
|
|
95898
|
+
}
|
|
95899
|
+
|
|
95900
|
+
export declare class NetworkFlowMonitorMonitor_MonitorRemoteResource {
|
|
95901
|
+
constructor(props: {
|
|
95902
|
+
/** The identifier of the remote resource. */
|
|
95903
|
+
Identifier: string;
|
|
95904
|
+
/** The type of the remote resource. */
|
|
95905
|
+
Type: "AWS::AWSService" | "AWS::AvailabilityZone" | "AWS::EC2::Subnet" | "AWS::EC2::VPC" | "AWS::Region";
|
|
95906
|
+
});
|
|
95907
|
+
}
|
|
95908
|
+
|
|
95909
|
+
export declare class NetworkFlowMonitorMonitor_Tag {
|
|
95910
|
+
constructor(props: {
|
|
95911
|
+
Key: string;
|
|
95912
|
+
Value: string;
|
|
95913
|
+
});
|
|
95914
|
+
}
|
|
95915
|
+
|
|
93917
95916
|
export declare class NetworkFrameworkConfiguration {
|
|
93918
95917
|
constructor(props: {
|
|
93919
95918
|
NetworkFabricConfiguration?: ManagedBlockchainMember_NetworkFabricConfiguration;
|
|
@@ -94670,6 +96669,42 @@ export declare class NoncurrentVersionTransition {
|
|
|
94670
96669
|
});
|
|
94671
96670
|
}
|
|
94672
96671
|
|
|
96672
|
+
export declare class NotebookExecution_ExecutionEngineConfig {
|
|
96673
|
+
constructor(props: {
|
|
96674
|
+
/** The unique identifier of the execution engine. For an Amazon EMR cluster, this is the cluster ID. */
|
|
96675
|
+
Id: string;
|
|
96676
|
+
/** The type of execution engine. */
|
|
96677
|
+
Type?: "EMR";
|
|
96678
|
+
});
|
|
96679
|
+
}
|
|
96680
|
+
|
|
96681
|
+
export declare class NotebookExecution_NotebookS3Location {
|
|
96682
|
+
constructor(props: {
|
|
96683
|
+
/** The Amazon S3 bucket that stores the notebook execution input. */
|
|
96684
|
+
Bucket?: string;
|
|
96685
|
+
/** The key to the Amazon S3 location that stores the notebook execution input. */
|
|
96686
|
+
Key?: string;
|
|
96687
|
+
});
|
|
96688
|
+
}
|
|
96689
|
+
|
|
96690
|
+
export declare class NotebookExecution_OutputNotebookS3Location {
|
|
96691
|
+
constructor(props: {
|
|
96692
|
+
/** The Amazon S3 bucket that stores the notebook execution output. */
|
|
96693
|
+
Bucket?: string;
|
|
96694
|
+
/** The key to the Amazon S3 location that stores the notebook execution output. */
|
|
96695
|
+
Key?: string;
|
|
96696
|
+
});
|
|
96697
|
+
}
|
|
96698
|
+
|
|
96699
|
+
export declare class NotebookExecution_Tag {
|
|
96700
|
+
constructor(props: {
|
|
96701
|
+
/** The tag key. */
|
|
96702
|
+
Key: string;
|
|
96703
|
+
/** The tag value. */
|
|
96704
|
+
Value: string;
|
|
96705
|
+
});
|
|
96706
|
+
}
|
|
96707
|
+
|
|
94673
96708
|
export declare class NotebookInstance_InstanceMetadataServiceConfiguration {
|
|
94674
96709
|
constructor(props: {
|
|
94675
96710
|
MinimumInstanceMetadataServiceVersion: string;
|
|
@@ -94695,6 +96730,15 @@ export declare class NotebookInstanceLifecycleHook {
|
|
|
94695
96730
|
});
|
|
94696
96731
|
}
|
|
94697
96732
|
|
|
96733
|
+
export declare class NotebookS3Location {
|
|
96734
|
+
constructor(props: {
|
|
96735
|
+
/** The Amazon S3 bucket that stores the notebook execution input. */
|
|
96736
|
+
Bucket?: string;
|
|
96737
|
+
/** The key to the Amazon S3 location that stores the notebook execution input. */
|
|
96738
|
+
Key?: string;
|
|
96739
|
+
});
|
|
96740
|
+
}
|
|
96741
|
+
|
|
94698
96742
|
export declare class NoteUpdate {
|
|
94699
96743
|
constructor(props: {
|
|
94700
96744
|
/** The updated note text. */
|
|
@@ -95297,6 +97341,27 @@ export declare class OdbPeeringConnection_Tag {
|
|
|
95297
97341
|
});
|
|
95298
97342
|
}
|
|
95299
97343
|
|
|
97344
|
+
export declare class Offering_ReservationResourceSpecification {
|
|
97345
|
+
constructor(props: {
|
|
97346
|
+
/** Channel class, e.g. 'STANDARD' */
|
|
97347
|
+
ChannelClass?: "SINGLE_PIPELINE" | "STANDARD";
|
|
97348
|
+
/** Codec, e.g. 'AVC' */
|
|
97349
|
+
Codec?: "AUDIO" | "AV1" | "AVC" | "HEVC" | "LINK" | "MPEG2";
|
|
97350
|
+
/** Maximum bitrate, e.g. 'MAX_20_MBPS' */
|
|
97351
|
+
MaximumBitrate?: "MAX_10_MBPS" | "MAX_20_MBPS" | "MAX_50_MBPS";
|
|
97352
|
+
/** Maximum framerate, e.g. 'MAX_30_FPS' (Outputs only) */
|
|
97353
|
+
MaximumFramerate?: "MAX_30_FPS" | "MAX_60_FPS";
|
|
97354
|
+
/** Resolution, e.g. 'HD' */
|
|
97355
|
+
Resolution?: "FHD" | "HD" | "SD" | "UHD";
|
|
97356
|
+
/** Resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL' */
|
|
97357
|
+
ResourceType?: "CHANNEL" | "INPUT" | "MULTIPLEX" | "OUTPUT";
|
|
97358
|
+
/** Special feature, e.g. 'AUDIO_NORMALIZATION' (Channels only) */
|
|
97359
|
+
SpecialFeature?: "ADVANCED_AUDIO" | "AUDIO_NORMALIZATION" | "MGHD" | "MGUHD";
|
|
97360
|
+
/** Video quality, e.g. 'STANDARD' (Outputs only) */
|
|
97361
|
+
VideoQuality?: "ENHANCED" | "PREMIUM" | "STANDARD";
|
|
97362
|
+
});
|
|
97363
|
+
}
|
|
97364
|
+
|
|
95300
97365
|
export declare class OffPeakWindow {
|
|
95301
97366
|
constructor(props: {
|
|
95302
97367
|
WindowStartTime?: OpenSearchServiceDomain_WindowStartTime;
|
|
@@ -96143,6 +98208,13 @@ export declare class OperatorApp {
|
|
|
96143
98208
|
});
|
|
96144
98209
|
}
|
|
96145
98210
|
|
|
98211
|
+
export declare class OpsItem_Tag {
|
|
98212
|
+
constructor(props: {
|
|
98213
|
+
Key: string;
|
|
98214
|
+
Value: string;
|
|
98215
|
+
});
|
|
98216
|
+
}
|
|
98217
|
+
|
|
96146
98218
|
export declare class OptionConfiguration {
|
|
96147
98219
|
constructor(props: {
|
|
96148
98220
|
/** The configuration of options to include in a group. */
|
|
@@ -97144,6 +99216,15 @@ export declare class OutputLockingSettings {
|
|
|
97144
99216
|
});
|
|
97145
99217
|
}
|
|
97146
99218
|
|
|
99219
|
+
export declare class OutputNotebookS3Location {
|
|
99220
|
+
constructor(props: {
|
|
99221
|
+
/** The Amazon S3 bucket that stores the notebook execution output. */
|
|
99222
|
+
Bucket?: string;
|
|
99223
|
+
/** The key to the Amazon S3 location that stores the notebook execution output. */
|
|
99224
|
+
Key?: string;
|
|
99225
|
+
});
|
|
99226
|
+
}
|
|
99227
|
+
|
|
97147
99228
|
export declare class OutputSource {
|
|
97148
99229
|
constructor(props: {
|
|
97149
99230
|
Output: MatchingWorkflow_OutputAttribute[];
|
|
@@ -97207,21 +99288,6 @@ export declare class OwnershipSettings {
|
|
|
97207
99288
|
});
|
|
97208
99289
|
}
|
|
97209
99290
|
|
|
97210
|
-
export declare class Package_StorageLocation {
|
|
97211
|
-
constructor(props: {
|
|
97212
|
-
/** The location's binary prefix. */
|
|
97213
|
-
BinaryPrefixLocation?: string;
|
|
97214
|
-
/** The location's bucket. */
|
|
97215
|
-
Bucket?: string;
|
|
97216
|
-
/** The location's generated prefix. */
|
|
97217
|
-
GeneratedPrefixLocation?: string;
|
|
97218
|
-
/** The location's manifest prefix. */
|
|
97219
|
-
ManifestPrefixLocation?: string;
|
|
97220
|
-
/** The location's repo prefix. */
|
|
97221
|
-
RepoPrefixLocation?: string;
|
|
97222
|
-
});
|
|
97223
|
-
}
|
|
97224
|
-
|
|
97225
99291
|
export declare class PackageGroup_OriginConfiguration {
|
|
97226
99292
|
constructor(props: {
|
|
97227
99293
|
/** The origin configuration that is applied to the package group. */
|
|
@@ -97458,6 +99524,21 @@ export declare class PagerDutyIncidentConfiguration {
|
|
|
97458
99524
|
});
|
|
97459
99525
|
}
|
|
97460
99526
|
|
|
99527
|
+
export declare class PanoramaPackage_StorageLocation {
|
|
99528
|
+
constructor(props: {
|
|
99529
|
+
/** The location's binary prefix. */
|
|
99530
|
+
BinaryPrefixLocation?: string;
|
|
99531
|
+
/** The location's bucket. */
|
|
99532
|
+
Bucket?: string;
|
|
99533
|
+
/** The location's generated prefix. */
|
|
99534
|
+
GeneratedPrefixLocation?: string;
|
|
99535
|
+
/** The location's manifest prefix. */
|
|
99536
|
+
ManifestPrefixLocation?: string;
|
|
99537
|
+
/** The location's repo prefix. */
|
|
99538
|
+
RepoPrefixLocation?: string;
|
|
99539
|
+
});
|
|
99540
|
+
}
|
|
99541
|
+
|
|
97461
99542
|
export declare class ParallelismConfiguration {
|
|
97462
99543
|
constructor(props: {
|
|
97463
99544
|
/** Describes whether the application uses the default parallelism for the Kinesis Data Analytics service. You must set this property to `CUSTOM` in order to change your application's `AutoScalingEnabled`, `Parallelism`, or `ParallelismPerKPU` properties. */
|
|
@@ -100713,6 +102794,15 @@ export declare class ProfileMappingSource {
|
|
|
100713
102794
|
});
|
|
100714
102795
|
}
|
|
100715
102796
|
|
|
102797
|
+
export declare class ProfileQuestionUpdate {
|
|
102798
|
+
constructor(props: {
|
|
102799
|
+
/** The ID of the question. */
|
|
102800
|
+
QuestionId?: string;
|
|
102801
|
+
/** The selected choices. */
|
|
102802
|
+
SelectedChoiceIds?: string[];
|
|
102803
|
+
});
|
|
102804
|
+
}
|
|
102805
|
+
|
|
100716
102806
|
export declare class ProfilingGroup_Channel {
|
|
100717
102807
|
constructor(props: {
|
|
100718
102808
|
channelUri: string;
|
|
@@ -101750,6 +103840,71 @@ export declare class QuickResponseContents {
|
|
|
101750
103840
|
});
|
|
101751
103841
|
}
|
|
101752
103842
|
|
|
103843
|
+
export declare class QuickSightAgent_AgentTag {
|
|
103844
|
+
constructor(props: {
|
|
103845
|
+
/** The key name of the tag. */
|
|
103846
|
+
Key: string;
|
|
103847
|
+
/** The value for the tag. */
|
|
103848
|
+
Value: string;
|
|
103849
|
+
});
|
|
103850
|
+
}
|
|
103851
|
+
|
|
103852
|
+
export declare class QuickSightAgent_CustomPromptInput {
|
|
103853
|
+
constructor(props: {
|
|
103854
|
+
ExistingPrompt?: QuickSightAgent_CustomPromptProfile;
|
|
103855
|
+
NewPrompt?: QuickSightAgent_CustomPromptInputParameters;
|
|
103856
|
+
});
|
|
103857
|
+
}
|
|
103858
|
+
|
|
103859
|
+
export declare class QuickSightAgent_CustomPromptInputParameters {
|
|
103860
|
+
constructor(props: {
|
|
103861
|
+
/** Custom instructions for the agent behavior. */
|
|
103862
|
+
CustomInstructions?: string;
|
|
103863
|
+
/** The identity or persona of the agent. */
|
|
103864
|
+
Identity?: string;
|
|
103865
|
+
/** The output style for the agent responses. */
|
|
103866
|
+
OutputStyle?: string;
|
|
103867
|
+
/** The desired response length for the agent. */
|
|
103868
|
+
ResponseLength?: string;
|
|
103869
|
+
/** The tone used in agent responses. */
|
|
103870
|
+
Tone?: string;
|
|
103871
|
+
});
|
|
103872
|
+
}
|
|
103873
|
+
|
|
103874
|
+
export declare class QuickSightAgent_CustomPromptInterface {
|
|
103875
|
+
constructor(props: {
|
|
103876
|
+
/** Custom instructions for the agent behavior. */
|
|
103877
|
+
CustomInstructions?: string;
|
|
103878
|
+
/** The identity or persona of the agent. */
|
|
103879
|
+
Identity?: string;
|
|
103880
|
+
/** The identifier of the model profile. */
|
|
103881
|
+
ModelProfileId?: string;
|
|
103882
|
+
/** The output style for the agent responses. */
|
|
103883
|
+
OutputStyle?: string;
|
|
103884
|
+
/** A summary of the resolved prompt. */
|
|
103885
|
+
PromptSummary?: string;
|
|
103886
|
+
/** The QBS AWS account identifier. */
|
|
103887
|
+
QbsAwsAccountId?: string;
|
|
103888
|
+
/** The desired response length for the agent. */
|
|
103889
|
+
ResponseLength?: string;
|
|
103890
|
+
/** The subscription identifier. */
|
|
103891
|
+
SubscriptionId?: string;
|
|
103892
|
+
/** The tone used in agent responses. */
|
|
103893
|
+
Tone?: string;
|
|
103894
|
+
});
|
|
103895
|
+
}
|
|
103896
|
+
|
|
103897
|
+
export declare class QuickSightAgent_CustomPromptProfile {
|
|
103898
|
+
constructor(props: {
|
|
103899
|
+
/** The identifier of the model profile. */
|
|
103900
|
+
ModelProfileId: string;
|
|
103901
|
+
/** The QBS AWS account identifier. */
|
|
103902
|
+
QbsAwsAccountId: string;
|
|
103903
|
+
/** The subscription identifier. */
|
|
103904
|
+
SubscriptionId: string;
|
|
103905
|
+
});
|
|
103906
|
+
}
|
|
103907
|
+
|
|
101753
103908
|
export declare class QuickSightConfiguration {
|
|
101754
103909
|
constructor(props: {
|
|
101755
103910
|
ClientNamespace: string;
|
|
@@ -104046,37 +106201,12 @@ export declare class Recency {
|
|
|
104046
106201
|
});
|
|
104047
106202
|
}
|
|
104048
106203
|
|
|
104049
|
-
export declare class
|
|
104050
|
-
constructor(props: {
|
|
104051
|
-
/** Step action operation */
|
|
104052
|
-
Operation: string;
|
|
104053
|
-
Parameters?: any;
|
|
104054
|
-
});
|
|
104055
|
-
}
|
|
104056
|
-
|
|
104057
|
-
export declare class Recipe_ConditionExpression {
|
|
104058
|
-
constructor(props: {
|
|
104059
|
-
/** Input condition to be applied to the target column */
|
|
104060
|
-
Condition: string;
|
|
104061
|
-
/** Name of the target column */
|
|
104062
|
-
TargetColumn: string;
|
|
104063
|
-
/** Value of the condition */
|
|
104064
|
-
Value?: string;
|
|
104065
|
-
});
|
|
104066
|
-
}
|
|
104067
|
-
|
|
104068
|
-
export declare class Recipe_RecipeStep {
|
|
104069
|
-
constructor(props: {
|
|
104070
|
-
Action: Recipe_Action;
|
|
104071
|
-
/** Condition expressions applied to the step action */
|
|
104072
|
-
ConditionExpressions?: Recipe_ConditionExpression[];
|
|
104073
|
-
});
|
|
104074
|
-
}
|
|
104075
|
-
|
|
104076
|
-
export declare class Recipe_Tag {
|
|
106204
|
+
export declare class Recipe {
|
|
104077
106205
|
constructor(props: {
|
|
104078
|
-
|
|
104079
|
-
|
|
106206
|
+
/** Recipe name */
|
|
106207
|
+
Name: string;
|
|
106208
|
+
/** Recipe version */
|
|
106209
|
+
Version?: string;
|
|
104080
106210
|
});
|
|
104081
106211
|
}
|
|
104082
106212
|
|
|
@@ -104091,9 +106221,9 @@ export declare class RecipeSelection {
|
|
|
104091
106221
|
|
|
104092
106222
|
export declare class RecipeStep {
|
|
104093
106223
|
constructor(props: {
|
|
104094
|
-
Action:
|
|
106224
|
+
Action: DataBrewRecipe_Action;
|
|
104095
106225
|
/** Condition expressions applied to the step action */
|
|
104096
|
-
ConditionExpressions?:
|
|
106226
|
+
ConditionExpressions?: DataBrewRecipe_ConditionExpression[];
|
|
104097
106227
|
});
|
|
104098
106228
|
}
|
|
104099
106229
|
|
|
@@ -104377,6 +106507,13 @@ export declare class RecoveryOption {
|
|
|
104377
106507
|
});
|
|
104378
106508
|
}
|
|
104379
106509
|
|
|
106510
|
+
export declare class RecoveryPoint_Tag {
|
|
106511
|
+
constructor(props: {
|
|
106512
|
+
Key: string;
|
|
106513
|
+
Value: string;
|
|
106514
|
+
});
|
|
106515
|
+
}
|
|
106516
|
+
|
|
104380
106517
|
export declare class RecrawlPolicy {
|
|
104381
106518
|
constructor(props: {
|
|
104382
106519
|
/** Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. A value of CRAWL_EVERYTHING specifies crawling the entire dataset again. A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run. A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events. */
|
|
@@ -104825,7 +106962,7 @@ export declare class ReferrerPolicy {
|
|
|
104825
106962
|
|
|
104826
106963
|
export declare class RefreshCadence {
|
|
104827
106964
|
constructor(props: {
|
|
104828
|
-
Frequency:
|
|
106965
|
+
Frequency: BCMDataExportsExport_FrequencyOption;
|
|
104829
106966
|
});
|
|
104830
106967
|
}
|
|
104831
106968
|
|
|
@@ -104912,6 +107049,15 @@ export declare class RegionalParameter {
|
|
|
104912
107049
|
});
|
|
104913
107050
|
}
|
|
104914
107051
|
|
|
107052
|
+
export declare class Registration_Tag {
|
|
107053
|
+
constructor(props: {
|
|
107054
|
+
/** The key identifier, or name, of the tag. */
|
|
107055
|
+
Key: string;
|
|
107056
|
+
/** The string value associated with the key of the tag. */
|
|
107057
|
+
Value: string;
|
|
107058
|
+
});
|
|
107059
|
+
}
|
|
107060
|
+
|
|
104915
107061
|
export declare class RegistrationConfig {
|
|
104916
107062
|
constructor(props: {
|
|
104917
107063
|
RoleArn?: string;
|
|
@@ -105736,12 +107882,69 @@ export declare class RequiredField {
|
|
|
105736
107882
|
});
|
|
105737
107883
|
}
|
|
105738
107884
|
|
|
107885
|
+
export declare class ReservationResourceSpecification {
|
|
107886
|
+
constructor(props: {
|
|
107887
|
+
/** Channel class, e.g. 'STANDARD' */
|
|
107888
|
+
ChannelClass?: "SINGLE_PIPELINE" | "STANDARD";
|
|
107889
|
+
/** Codec, e.g. 'AVC' */
|
|
107890
|
+
Codec?: "AUDIO" | "AV1" | "AVC" | "HEVC" | "LINK" | "MPEG2";
|
|
107891
|
+
/** Maximum bitrate, e.g. 'MAX_20_MBPS' */
|
|
107892
|
+
MaximumBitrate?: "MAX_10_MBPS" | "MAX_20_MBPS" | "MAX_50_MBPS";
|
|
107893
|
+
/** Maximum framerate, e.g. 'MAX_30_FPS' (Outputs only) */
|
|
107894
|
+
MaximumFramerate?: "MAX_30_FPS" | "MAX_60_FPS";
|
|
107895
|
+
/** Resolution, e.g. 'HD' */
|
|
107896
|
+
Resolution?: "FHD" | "HD" | "SD" | "UHD";
|
|
107897
|
+
/** Resource type, 'INPUT', 'OUTPUT', 'MULTIPLEX', or 'CHANNEL' */
|
|
107898
|
+
ResourceType?: "CHANNEL" | "INPUT" | "MULTIPLEX" | "OUTPUT";
|
|
107899
|
+
/** Special feature, e.g. 'AUDIO_NORMALIZATION' (Channels only) */
|
|
107900
|
+
SpecialFeature?: "ADVANCED_AUDIO" | "AUDIO_NORMALIZATION" | "MGHD" | "MGUHD";
|
|
107901
|
+
/** Video quality, e.g. 'STANDARD' (Outputs only) */
|
|
107902
|
+
VideoQuality?: "ENHANCED" | "PREMIUM" | "STANDARD";
|
|
107903
|
+
});
|
|
107904
|
+
}
|
|
107905
|
+
|
|
107906
|
+
export declare class ReservedCacheNode_RecurringCharge {
|
|
107907
|
+
constructor(props: {
|
|
107908
|
+
/** The monetary amount of the recurring charge. */
|
|
107909
|
+
RecurringChargeAmount?: number;
|
|
107910
|
+
/** The frequency of the recurring charge. */
|
|
107911
|
+
RecurringChargeFrequency?: string;
|
|
107912
|
+
});
|
|
107913
|
+
}
|
|
107914
|
+
|
|
107915
|
+
export declare class ReservedCacheNode_Tag {
|
|
107916
|
+
constructor(props: {
|
|
107917
|
+
/** The key of the tag. */
|
|
107918
|
+
Key: string;
|
|
107919
|
+
/** The value of the tag. */
|
|
107920
|
+
Value: string;
|
|
107921
|
+
});
|
|
107922
|
+
}
|
|
107923
|
+
|
|
105739
107924
|
export declare class ReservedCapacityOptionsRequest {
|
|
105740
107925
|
constructor(props: {
|
|
105741
107926
|
ReservationTypes?: "interruptible-capacity-reservation"[];
|
|
105742
107927
|
});
|
|
105743
107928
|
}
|
|
105744
107929
|
|
|
107930
|
+
export declare class ReservedNode_RecurringCharge {
|
|
107931
|
+
constructor(props: {
|
|
107932
|
+
/** The amount of the recurring charge. */
|
|
107933
|
+
RecurringChargeAmount?: number;
|
|
107934
|
+
/** The frequency of the recurring charge. */
|
|
107935
|
+
RecurringChargeFrequency?: string;
|
|
107936
|
+
});
|
|
107937
|
+
}
|
|
107938
|
+
|
|
107939
|
+
export declare class ReservedNode_Tag {
|
|
107940
|
+
constructor(props: {
|
|
107941
|
+
/** The key of the tag. */
|
|
107942
|
+
Key: string;
|
|
107943
|
+
/** The value of the tag. */
|
|
107944
|
+
Value: string;
|
|
107945
|
+
});
|
|
107946
|
+
}
|
|
107947
|
+
|
|
105745
107948
|
export declare class ReshardingConfiguration {
|
|
105746
107949
|
constructor(props: {
|
|
105747
107950
|
/** Unique identifier for the Node Group. This is either auto-generated by ElastiCache (4-digit id) or a user supplied id. */
|
|
@@ -106354,6 +108557,20 @@ export declare class Resources {
|
|
|
106354
108557
|
});
|
|
106355
108558
|
}
|
|
106356
108559
|
|
|
108560
|
+
export declare class ResourceScan_ScanFilter {
|
|
108561
|
+
constructor(props: {
|
|
108562
|
+
/** An array of strings where each string represents an AWS resource type to scan. */
|
|
108563
|
+
Types?: string[];
|
|
108564
|
+
});
|
|
108565
|
+
}
|
|
108566
|
+
|
|
108567
|
+
export declare class ResourceServerConfig {
|
|
108568
|
+
constructor(props: {
|
|
108569
|
+
/** A map of IAM Identity Center access scopes associated with this resource server. */
|
|
108570
|
+
Scopes?: Record<string, unknown>;
|
|
108571
|
+
});
|
|
108572
|
+
}
|
|
108573
|
+
|
|
106357
108574
|
export declare class ResourceServerScopeType {
|
|
106358
108575
|
constructor(props: {
|
|
106359
108576
|
ScopeDescription: string;
|
|
@@ -106420,6 +108637,15 @@ export declare class ResourceTagParameter {
|
|
|
106420
108637
|
});
|
|
106421
108638
|
}
|
|
106422
108639
|
|
|
108640
|
+
export declare class ResourceUri {
|
|
108641
|
+
constructor(props: {
|
|
108642
|
+
/** The type of the resource. */
|
|
108643
|
+
ResourceType?: "ARCHIVE" | "FILE" | "JAR";
|
|
108644
|
+
/** The URI for accessing the resource. */
|
|
108645
|
+
Uri?: string;
|
|
108646
|
+
});
|
|
108647
|
+
}
|
|
108648
|
+
|
|
106423
108649
|
export declare class ResourceVersion_LoggingConfig {
|
|
106424
108650
|
constructor(props: {
|
|
106425
108651
|
/** The Amazon CloudWatch log group to which CloudFormation sends error logging information when invoking the type's handlers. */
|
|
@@ -108596,10 +110822,12 @@ export declare class S3Settings {
|
|
|
108596
110822
|
});
|
|
108597
110823
|
}
|
|
108598
110824
|
|
|
108599
|
-
export declare class
|
|
110825
|
+
export declare class S3SignedObject {
|
|
108600
110826
|
constructor(props: {
|
|
108601
|
-
/**
|
|
108602
|
-
|
|
110827
|
+
/** Name of the S3 bucket. */
|
|
110828
|
+
BucketName?: string;
|
|
110829
|
+
/** Key name that uniquely identifies a signed code image in the bucket. */
|
|
110830
|
+
Key?: string;
|
|
108603
110831
|
});
|
|
108604
110832
|
}
|
|
108605
110833
|
|
|
@@ -110354,6 +112582,13 @@ export declare class ScanActionResourceType {
|
|
|
110354
112582
|
});
|
|
110355
112583
|
}
|
|
110356
112584
|
|
|
112585
|
+
export declare class ScanFilter {
|
|
112586
|
+
constructor(props: {
|
|
112587
|
+
/** An array of strings where each string represents an AWS resource type to scan. */
|
|
112588
|
+
Types?: string[];
|
|
112589
|
+
});
|
|
112590
|
+
}
|
|
112591
|
+
|
|
110357
112592
|
export declare class ScanSettingResourceType {
|
|
110358
112593
|
constructor(props: {
|
|
110359
112594
|
MalwareScanner?: BackupPlan_MalwareScanner;
|
|
@@ -110712,6 +112947,22 @@ export declare class SchemaVersion_Schema {
|
|
|
110712
112947
|
});
|
|
110713
112948
|
}
|
|
110714
112949
|
|
|
112950
|
+
export declare class SCNDataset_Tag {
|
|
112951
|
+
constructor(props: {
|
|
112952
|
+
/** The key name of the tag. */
|
|
112953
|
+
Key: string;
|
|
112954
|
+
/** The value for the tag. */
|
|
112955
|
+
Value: string;
|
|
112956
|
+
});
|
|
112957
|
+
}
|
|
112958
|
+
|
|
112959
|
+
export declare class SCNNamespace_Tag {
|
|
112960
|
+
constructor(props: {
|
|
112961
|
+
Key: string;
|
|
112962
|
+
Value: string;
|
|
112963
|
+
});
|
|
112964
|
+
}
|
|
112965
|
+
|
|
110715
112966
|
export declare class ScopeConfiguration {
|
|
110716
112967
|
constructor(props: {
|
|
110717
112968
|
Name: string;
|
|
@@ -110938,6 +113189,20 @@ export declare class SearchFilter {
|
|
|
110938
113189
|
});
|
|
110939
113190
|
}
|
|
110940
113191
|
|
|
113192
|
+
export declare class SearchJob_SearchScope {
|
|
113193
|
+
constructor(props: {
|
|
113194
|
+
/** The resource types included in a search. */
|
|
113195
|
+
BackupResourceTypes: "EBS" | "S3"[];
|
|
113196
|
+
});
|
|
113197
|
+
}
|
|
113198
|
+
|
|
113199
|
+
export declare class SearchScope {
|
|
113200
|
+
constructor(props: {
|
|
113201
|
+
/** The resource types included in a search. */
|
|
113202
|
+
BackupResourceTypes: "EBS" | "S3"[];
|
|
113203
|
+
});
|
|
113204
|
+
}
|
|
113205
|
+
|
|
110941
113206
|
export declare class Secondary {
|
|
110942
113207
|
constructor(props: {
|
|
110943
113208
|
Route: string;
|
|
@@ -112275,36 +114540,47 @@ export declare class ServiceDiscovery {
|
|
|
112275
114540
|
|
|
112276
114541
|
export declare class ServiceDiscoveryService_DnsConfig {
|
|
112277
114542
|
constructor(props: {
|
|
114543
|
+
/** A list of DNS records associated with the service. */
|
|
112278
114544
|
DnsRecords: ServiceDiscoveryService_DnsRecord[];
|
|
114545
|
+
/** The ID of the namespace for the DNS configuration. */
|
|
112279
114546
|
NamespaceId?: string;
|
|
114547
|
+
/** The routing policy to use for DNS queries. */
|
|
112280
114548
|
RoutingPolicy?: string;
|
|
112281
114549
|
});
|
|
112282
114550
|
}
|
|
112283
114551
|
|
|
112284
114552
|
export declare class ServiceDiscoveryService_DnsRecord {
|
|
112285
114553
|
constructor(props: {
|
|
114554
|
+
/** The time-to-live (TTL) for the DNS record. */
|
|
112286
114555
|
TTL: number;
|
|
114556
|
+
/** The DNS record type (e.g., A, AAAA, SRV). */
|
|
112287
114557
|
Type: string;
|
|
112288
114558
|
});
|
|
112289
114559
|
}
|
|
112290
114560
|
|
|
112291
114561
|
export declare class ServiceDiscoveryService_HealthCheckConfig {
|
|
112292
114562
|
constructor(props: {
|
|
114563
|
+
/** The type of health check (e.g., HTTP, HTTPS, TCP). */
|
|
112293
114564
|
Type: string;
|
|
114565
|
+
/** The number of consecutive health check failures that must occur before declaring the service unhealthy. */
|
|
112294
114566
|
FailureThreshold?: number;
|
|
114567
|
+
/** The path to ping on the service for health checks. */
|
|
112295
114568
|
ResourcePath?: string;
|
|
112296
114569
|
});
|
|
112297
114570
|
}
|
|
112298
114571
|
|
|
112299
114572
|
export declare class ServiceDiscoveryService_HealthCheckCustomConfig {
|
|
112300
114573
|
constructor(props: {
|
|
114574
|
+
/** The number of consecutive health check failures required before the service is considered unhealthy. */
|
|
112301
114575
|
FailureThreshold?: number;
|
|
112302
114576
|
});
|
|
112303
114577
|
}
|
|
112304
114578
|
|
|
112305
114579
|
export declare class ServiceDiscoveryService_Tag {
|
|
112306
114580
|
constructor(props: {
|
|
114581
|
+
/** The key name of the tag. */
|
|
112307
114582
|
Key: string;
|
|
114583
|
+
/** The value of the tag. */
|
|
112308
114584
|
Value: string;
|
|
112309
114585
|
});
|
|
112310
114586
|
}
|
|
@@ -113146,6 +115422,12 @@ export declare class SignatureValidityPeriod {
|
|
|
113146
115422
|
});
|
|
113147
115423
|
}
|
|
113148
115424
|
|
|
115425
|
+
export declare class SignedObject {
|
|
115426
|
+
constructor(props: {
|
|
115427
|
+
S3?: SigningJob_S3SignedObject;
|
|
115428
|
+
});
|
|
115429
|
+
}
|
|
115430
|
+
|
|
113149
115431
|
export declare class SigningConfiguration_RepositoryFilter {
|
|
113150
115432
|
constructor(props: {
|
|
113151
115433
|
Filter: string;
|
|
@@ -113162,6 +115444,38 @@ export declare class SigningConfiguration_Rule {
|
|
|
113162
115444
|
});
|
|
113163
115445
|
}
|
|
113164
115446
|
|
|
115447
|
+
export declare class SigningJob_S3SignedObject {
|
|
115448
|
+
constructor(props: {
|
|
115449
|
+
/** Name of the S3 bucket. */
|
|
115450
|
+
BucketName?: string;
|
|
115451
|
+
/** Key name that uniquely identifies a signed code image in the bucket. */
|
|
115452
|
+
Key?: string;
|
|
115453
|
+
});
|
|
115454
|
+
}
|
|
115455
|
+
|
|
115456
|
+
export declare class SigningJob_S3Source {
|
|
115457
|
+
constructor(props: {
|
|
115458
|
+
/** Name of the S3 bucket. */
|
|
115459
|
+
BucketName: string;
|
|
115460
|
+
/** Key name of the bucket object that contains unsigned code. */
|
|
115461
|
+
Key: string;
|
|
115462
|
+
/** Version of the source image in the version-enabled S3 bucket. */
|
|
115463
|
+
Version: string;
|
|
115464
|
+
});
|
|
115465
|
+
}
|
|
115466
|
+
|
|
115467
|
+
export declare class SigningJob_SignedObject {
|
|
115468
|
+
constructor(props: {
|
|
115469
|
+
S3?: SigningJob_S3SignedObject;
|
|
115470
|
+
});
|
|
115471
|
+
}
|
|
115472
|
+
|
|
115473
|
+
export declare class SigningJob_Source {
|
|
115474
|
+
constructor(props: {
|
|
115475
|
+
S3?: SigningJob_S3Source;
|
|
115476
|
+
});
|
|
115477
|
+
}
|
|
115478
|
+
|
|
113165
115479
|
export declare class SigningProfile_SignatureValidityPeriod {
|
|
113166
115480
|
constructor(props: {
|
|
113167
115481
|
Type?: "DAYS" | "MONTHS" | "YEARS";
|
|
@@ -113875,6 +116189,15 @@ export declare class SocketAddress {
|
|
|
113875
116189
|
});
|
|
113876
116190
|
}
|
|
113877
116191
|
|
|
116192
|
+
export declare class Software {
|
|
116193
|
+
constructor(props: {
|
|
116194
|
+
/** The name of the software component. */
|
|
116195
|
+
Name?: string;
|
|
116196
|
+
/** The version of the software component. */
|
|
116197
|
+
Version?: string;
|
|
116198
|
+
});
|
|
116199
|
+
}
|
|
116200
|
+
|
|
113878
116201
|
export declare class SoftwarePackage_Tag {
|
|
113879
116202
|
constructor(props: {
|
|
113880
116203
|
/** 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 -. */
|
|
@@ -113916,6 +116239,24 @@ export declare class SoftwarePackageVersion_Tag {
|
|
|
113916
116239
|
});
|
|
113917
116240
|
}
|
|
113918
116241
|
|
|
116242
|
+
export declare class SoftwareSet_Software {
|
|
116243
|
+
constructor(props: {
|
|
116244
|
+
/** The name of the software component. */
|
|
116245
|
+
Name?: string;
|
|
116246
|
+
/** The version of the software component. */
|
|
116247
|
+
Version?: string;
|
|
116248
|
+
});
|
|
116249
|
+
}
|
|
116250
|
+
|
|
116251
|
+
export declare class SoftwareSet_Tag {
|
|
116252
|
+
constructor(props: {
|
|
116253
|
+
/** The key name of the tag. */
|
|
116254
|
+
Key: string;
|
|
116255
|
+
/** The value for the tag. */
|
|
116256
|
+
Value: string;
|
|
116257
|
+
});
|
|
116258
|
+
}
|
|
116259
|
+
|
|
113919
116260
|
export declare class SoftwareUpdateOptions {
|
|
113920
116261
|
constructor(props: {
|
|
113921
116262
|
AutoSoftwareUpdateEnabled?: boolean;
|
|
@@ -116911,6 +119252,15 @@ export declare class Taint {
|
|
|
116911
119252
|
});
|
|
116912
119253
|
}
|
|
116913
119254
|
|
|
119255
|
+
export declare class TapePool_Tag {
|
|
119256
|
+
constructor(props: {
|
|
119257
|
+
/** The tag key. */
|
|
119258
|
+
Key: string;
|
|
119259
|
+
/** The tag value. */
|
|
119260
|
+
Value: string;
|
|
119261
|
+
});
|
|
119262
|
+
}
|
|
119263
|
+
|
|
116914
119264
|
export declare class TargetAddress {
|
|
116915
119265
|
constructor(props: {
|
|
116916
119266
|
/** One IP address that you want to forward DNS queries to. You can specify only IPv4 addresses. */
|
|
@@ -118255,6 +120605,19 @@ export declare class TemplateGroupAccessControlEntry_AccessRights {
|
|
|
118255
120605
|
});
|
|
118256
120606
|
}
|
|
118257
120607
|
|
|
120608
|
+
export declare class TemplateProgress {
|
|
120609
|
+
constructor(props: {
|
|
120610
|
+
/** The number of resources that failed the template generation. */
|
|
120611
|
+
ResourcesFailed?: number;
|
|
120612
|
+
/** The number of resources that are still pending the template generation. */
|
|
120613
|
+
ResourcesPending?: number;
|
|
120614
|
+
/** The number of resources that are in-process for the template generation. */
|
|
120615
|
+
ResourcesProcessing?: number;
|
|
120616
|
+
/** The number of resources that succeeded the template generation. */
|
|
120617
|
+
ResourcesSucceeded?: number;
|
|
120618
|
+
});
|
|
120619
|
+
}
|
|
120620
|
+
|
|
118258
120621
|
export declare class TemplateProviderDetail {
|
|
118259
120622
|
constructor(props: {
|
|
118260
120623
|
CfnTemplateProviderDetail?: SageMakerProject_CfnTemplateProviderDetail;
|
|
@@ -120576,6 +122939,15 @@ export declare class UserContext {
|
|
|
120576
122939
|
});
|
|
120577
122940
|
}
|
|
120578
122941
|
|
|
122942
|
+
export declare class UserDefinedFunction_ResourceUri {
|
|
122943
|
+
constructor(props: {
|
|
122944
|
+
/** The type of the resource. */
|
|
122945
|
+
ResourceType?: "ARCHIVE" | "FILE" | "JAR";
|
|
122946
|
+
/** The URI for accessing the resource. */
|
|
122947
|
+
Uri?: string;
|
|
122948
|
+
});
|
|
122949
|
+
}
|
|
122950
|
+
|
|
120579
122951
|
export declare class UserGroup_Tag {
|
|
120580
122952
|
constructor(props: {
|
|
120581
122953
|
/** 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 -. */
|
|
@@ -122255,6 +124627,15 @@ export declare class VisualReference {
|
|
|
122255
124627
|
});
|
|
122256
124628
|
}
|
|
122257
124629
|
|
|
124630
|
+
export declare class VocabularyFilter_Tag {
|
|
124631
|
+
constructor(props: {
|
|
124632
|
+
/** The key of the tag. */
|
|
124633
|
+
Key: string;
|
|
124634
|
+
/** The value of the tag. */
|
|
124635
|
+
Value: string;
|
|
124636
|
+
});
|
|
124637
|
+
}
|
|
124638
|
+
|
|
122258
124639
|
export declare class VodSource_HttpPackageConfiguration {
|
|
122259
124640
|
constructor(props: {
|
|
122260
124641
|
/** <p>The relative path to the URL for this VOD source. This is combined with <code>SourceLocation::HttpConfiguration::BaseUrl</code> to form a valid URL.</p> */
|
|
@@ -124228,6 +126609,24 @@ export declare class WeeklySetting {
|
|
|
124228
126609
|
});
|
|
124229
126610
|
}
|
|
124230
126611
|
|
|
126612
|
+
export declare class WellArchitectedProfile_ProfileQuestionUpdate {
|
|
126613
|
+
constructor(props: {
|
|
126614
|
+
/** The ID of the question. */
|
|
126615
|
+
QuestionId?: string;
|
|
126616
|
+
/** The selected choices. */
|
|
126617
|
+
SelectedChoiceIds?: string[];
|
|
126618
|
+
});
|
|
126619
|
+
}
|
|
126620
|
+
|
|
126621
|
+
export declare class WellArchitectedProfile_Tag {
|
|
126622
|
+
constructor(props: {
|
|
126623
|
+
/** The key name of the tag. */
|
|
126624
|
+
Key: string;
|
|
126625
|
+
/** The value for the tag. */
|
|
126626
|
+
Value: string;
|
|
126627
|
+
});
|
|
126628
|
+
}
|
|
126629
|
+
|
|
124231
126630
|
export declare class WhatsAppChannelSubtypeConfig {
|
|
124232
126631
|
constructor(props: {
|
|
124233
126632
|
DefaultOutboundConfig: ConnectCampaignsV2Campaign_WhatsAppOutboundConfig;
|
|
@@ -124876,6 +127275,24 @@ export declare class WorkspaceInstance_Tag {
|
|
|
124876
127275
|
});
|
|
124877
127276
|
}
|
|
124878
127277
|
|
|
127278
|
+
export declare class WorkspaceIpGroup_IpRuleItem {
|
|
127279
|
+
constructor(props: {
|
|
127280
|
+
/** The IP address range, in CIDR notation. */
|
|
127281
|
+
IpRule: string;
|
|
127282
|
+
/** The description of the rule. */
|
|
127283
|
+
RuleDesc?: string;
|
|
127284
|
+
});
|
|
127285
|
+
}
|
|
127286
|
+
|
|
127287
|
+
export declare class WorkspaceIpGroup_Tag {
|
|
127288
|
+
constructor(props: {
|
|
127289
|
+
/** The key of the tag. */
|
|
127290
|
+
Key: string;
|
|
127291
|
+
/** The value of the tag. */
|
|
127292
|
+
Value: string;
|
|
127293
|
+
});
|
|
127294
|
+
}
|
|
127295
|
+
|
|
124879
127296
|
export declare class WorkspacePage {
|
|
124880
127297
|
constructor(props: {
|
|
124881
127298
|
/** The page identifier. */
|
|
@@ -127208,6 +129625,16 @@ export type BCMDashboard_MetricName =
|
|
|
127208
129625
|
|
|
127209
129626
|
export type BCMDashboard_VisualType = "BAR" | "LINE" | "STACK";
|
|
127210
129627
|
|
|
129628
|
+
export type BCMDataExportsExport_CompressionOption = "GZIP" | "PARQUET";
|
|
129629
|
+
|
|
129630
|
+
export type BCMDataExportsExport_FormatOption = "PARQUET" | "TEXT_OR_CSV";
|
|
129631
|
+
|
|
129632
|
+
export type BCMDataExportsExport_FrequencyOption = "SYNCHRONOUS";
|
|
129633
|
+
|
|
129634
|
+
export type BCMDataExportsExport_OverwriteOption = "CREATE_NEW_REPORT" | "OVERWRITE_REPORT";
|
|
129635
|
+
|
|
129636
|
+
export type BCMDataExportsExport_S3OutputType = "ATHENA" | "CUSTOM" | "REDSHIFT";
|
|
129637
|
+
|
|
127211
129638
|
export type BedrockAgent_ActionGroupSignature = "AMAZON.CodeInterpreter" | "AMAZON.UserInput";
|
|
127212
129639
|
|
|
127213
129640
|
export type BedrockAgent_ActionGroupState = "DISABLED" | "ENABLED";
|
|
@@ -128585,16 +131012,6 @@ export type EVSEnvironment_EnvironmentState =
|
|
|
128585
131012
|
| "DELETED"
|
|
128586
131013
|
| "DELETING";
|
|
128587
131014
|
|
|
128588
|
-
export type Export_CompressionOption = "GZIP" | "PARQUET";
|
|
128589
|
-
|
|
128590
|
-
export type Export_FormatOption = "PARQUET" | "TEXT_OR_CSV";
|
|
128591
|
-
|
|
128592
|
-
export type Export_FrequencyOption = "SYNCHRONOUS";
|
|
128593
|
-
|
|
128594
|
-
export type Export_OverwriteOption = "CREATE_NEW_REPORT" | "OVERWRITE_REPORT";
|
|
128595
|
-
|
|
128596
|
-
export type Export_S3OutputType = "ATHENA" | "CUSTOM" | "REDSHIFT";
|
|
128597
|
-
|
|
128598
131015
|
export type ExpressGatewayService_AccessType = "PRIVATE" | "PUBLIC";
|
|
128599
131016
|
|
|
128600
131017
|
export type ExpressGatewayService_ExpressGatewayServiceScalingMetric =
|