@intentius/chant-lexicon-aws 0.1.0 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integrity.json +25 -19
- package/dist/manifest.json +1 -1
- package/dist/meta.json +734 -435
- package/dist/rules/waw032.ts +52 -0
- package/dist/rules/waw033.ts +86 -0
- package/dist/rules/waw034.ts +63 -0
- package/dist/rules/waw035.ts +71 -0
- package/dist/rules/waw036.ts +88 -0
- package/dist/rules/waw037.ts +81 -0
- package/dist/types/index.d.ts +991 -59
- package/package.json +2 -2
- package/src/codegen/docs.ts +9 -1
- package/src/composites/composites.test.ts +65 -0
- package/src/composites/ec2-instance-role.ts +39 -0
- package/src/composites/efs-with-access-point.ts +90 -0
- package/src/composites/fargate-service.ts +102 -2
- package/src/composites/index.ts +8 -0
- package/src/composites/lambda-dynamodb.ts +66 -17
- package/src/composites/lambda-function.ts +2 -1
- package/src/composites/lambda-s3.ts +66 -20
- package/src/composites/minimal-vpc.ts +71 -0
- package/src/composites/solr-fargate-service.ts +42 -0
- package/src/generated/index.d.ts +991 -59
- package/src/generated/index.ts +34 -5
- package/src/generated/lexicon-aws.json +734 -435
- package/src/index.ts +4 -0
- package/src/lint/post-synth/waw032.test.ts +83 -0
- package/src/lint/post-synth/waw032.ts +52 -0
- package/src/lint/post-synth/waw033.test.ts +68 -0
- package/src/lint/post-synth/waw033.ts +86 -0
- package/src/lint/post-synth/waw034.test.ts +54 -0
- package/src/lint/post-synth/waw034.ts +63 -0
- package/src/lint/post-synth/waw035.test.ts +74 -0
- package/src/lint/post-synth/waw035.ts +71 -0
- package/src/lint/post-synth/waw036.test.ts +217 -0
- package/src/lint/post-synth/waw036.ts +88 -0
- package/src/lint/post-synth/waw037.test.ts +155 -0
- package/src/lint/post-synth/waw037.ts +81 -0
- package/src/serializer.ts +1 -3
package/src/generated/index.d.ts
CHANGED
|
@@ -1135,8 +1135,10 @@ export declare class AnycastIpList {
|
|
|
1135
1135
|
AnycastIpList?: AnycastIpList_AnycastIpList;
|
|
1136
1136
|
ETag?: string;
|
|
1137
1137
|
Id?: string;
|
|
1138
|
+
/** The IP address type for the Anycast static IP list. */
|
|
1138
1139
|
IpAddressType?: AnycastIpList_IpAddressType;
|
|
1139
1140
|
IpamCidrConfigResults?: any;
|
|
1141
|
+
/** A list of IPAM CIDR configurations that define the IP address ranges, IPAM pools, and associated Anycast IP addresses. */
|
|
1140
1142
|
IpamCidrConfigs?: any;
|
|
1141
1143
|
/** A complex type that contains zero or more ``Tag`` elements. */
|
|
1142
1144
|
Tags?: AnycastIpList_Tags;
|
|
@@ -2789,6 +2791,7 @@ export declare class AutoScalingGroup {
|
|
|
2789
2791
|
AutoScalingGroupName?: string;
|
|
2790
2792
|
/** The EC2 instance capacity distribution across Availability Zones for the Auto Scaling group. */
|
|
2791
2793
|
AvailabilityZoneDistribution?: AutoScalingGroup_AvailabilityZoneDistribution;
|
|
2794
|
+
AvailabilityZoneIds?: string[];
|
|
2792
2795
|
/** The Availability Zone impairment policy for the Auto Scaling group. */
|
|
2793
2796
|
AvailabilityZoneImpairmentPolicy?: AutoScalingGroup_AvailabilityZoneImpairmentPolicy;
|
|
2794
2797
|
/** A list of Availability Zones where instances in the Auto Scaling group can be created. Used for launching into the default VPC subnet in each Availability Zone when not using the ``VPCZoneIdentifier`` property, or for attaching a network interface when an existing network interface ID is specified in a launch template. */
|
|
@@ -4319,21 +4322,17 @@ export declare class CfPublicKey {
|
|
|
4319
4322
|
|
|
4320
4323
|
export declare class CfTrustStore {
|
|
4321
4324
|
constructor(props: {
|
|
4322
|
-
/**
|
|
4325
|
+
/** The trust store's name. */
|
|
4323
4326
|
Name: string;
|
|
4324
|
-
/** The Amazon Resource Name (ARN) of the trust store */
|
|
4325
4327
|
Arn?: string;
|
|
4328
|
+
/** A CA certificates bundle source. */
|
|
4326
4329
|
CaCertificatesBundleSource?: CfTrustStore_CaCertificatesBundleSource;
|
|
4327
4330
|
ETag?: string;
|
|
4328
|
-
/** The unique identifier for the trust store */
|
|
4329
4331
|
Id?: string;
|
|
4330
|
-
/** The last modification timestamp of the trust store PEM file */
|
|
4331
4332
|
LastModifiedTime?: string;
|
|
4332
|
-
/** The number of CA certificates in the trust store PEM file */
|
|
4333
4333
|
NumberOfCaCertificates?: number;
|
|
4334
|
-
/** Current status of the trust store */
|
|
4335
4334
|
Status?: "ACTIVE" | "FAILED" | "PENDING";
|
|
4336
|
-
/**
|
|
4335
|
+
/** A complex type that contains zero or more ``Tag`` elements. */
|
|
4337
4336
|
Tags?: CfTrustStore_Tag[];
|
|
4338
4337
|
}, attributes?: CFResourceAttributes);
|
|
4339
4338
|
readonly Arn: string;
|
|
@@ -6157,9 +6156,13 @@ export declare class ConnectionAlias {
|
|
|
6157
6156
|
|
|
6158
6157
|
export declare class ConnectionFunction {
|
|
6159
6158
|
constructor(props: {
|
|
6159
|
+
/** The code for the connection function. */
|
|
6160
6160
|
ConnectionFunctionCode: string;
|
|
6161
|
+
/** Contains configuration information about a CloudFront function. */
|
|
6161
6162
|
ConnectionFunctionConfig: ConnectionFunction_ConnectionFunctionConfig;
|
|
6163
|
+
/** The connection function name. */
|
|
6162
6164
|
Name: string;
|
|
6165
|
+
/** A flag that determines whether to automatically publish the function to the ``LIVE`` stage when it’s created. To automatically publish to the ``LIVE`` stage, set this property to ``true``. */
|
|
6163
6166
|
AutoPublish?: boolean;
|
|
6164
6167
|
ConnectionFunctionArn?: string;
|
|
6165
6168
|
CreatedTime?: string;
|
|
@@ -6168,6 +6171,7 @@ export declare class ConnectionFunction {
|
|
|
6168
6171
|
LastModifiedTime?: string;
|
|
6169
6172
|
Stage?: "DEVELOPMENT" | "LIVE";
|
|
6170
6173
|
Status?: "DEPLOYED" | "IN_PROGRESS" | "PUBLISHING" | "UNASSOCIATED" | "UNPUBLISHED";
|
|
6174
|
+
/** A complex type that contains zero or more ``Tag`` elements. */
|
|
6171
6175
|
Tags?: ConnectionFunction_Tag[];
|
|
6172
6176
|
}, attributes?: CFResourceAttributes);
|
|
6173
6177
|
readonly ConnectionFunctionArn: string;
|
|
@@ -10987,6 +10991,7 @@ export declare class EC2Fleet {
|
|
|
10987
10991
|
FleetId?: string;
|
|
10988
10992
|
OnDemandOptions?: EC2Fleet_OnDemandOptionsRequest;
|
|
10989
10993
|
ReplaceUnhealthyInstances?: boolean;
|
|
10994
|
+
ReservedCapacityOptions?: EC2Fleet_ReservedCapacityOptionsRequest;
|
|
10990
10995
|
SpotOptions?: EC2Fleet_SpotOptionsRequest;
|
|
10991
10996
|
TagSpecifications?: EC2Fleet_TagSpecification[];
|
|
10992
10997
|
TerminateInstancesWithExpiration?: boolean;
|
|
@@ -11874,34 +11879,63 @@ export declare class EmailTemplate {
|
|
|
11874
11879
|
|
|
11875
11880
|
export declare class EMRCluster {
|
|
11876
11881
|
constructor(props: {
|
|
11882
|
+
/** A specification of the number and type of Amazon EC2 instances. */
|
|
11877
11883
|
Instances: EMRCluster_JobFlowInstancesConfig;
|
|
11884
|
+
/** Also called instance profile and EC2 role. An IAM role for an EMR cluster. The EC2 instances of the cluster assume this role. The default role is EMR_EC2_DefaultRole. In order to use the default role, you must have already created it using the CLI or console */
|
|
11878
11885
|
JobFlowRole: string;
|
|
11886
|
+
/** The name of the job flow. */
|
|
11879
11887
|
Name: string;
|
|
11888
|
+
/** The IAM role that Amazon EMR assumes in order to access AWS resources on your behalf. */
|
|
11880
11889
|
ServiceRole: string;
|
|
11890
|
+
/** A JSON string for selecting additional features. */
|
|
11881
11891
|
AdditionalInfo?: Record<string, unknown>;
|
|
11892
|
+
/** The applications installed on this cluster. */
|
|
11882
11893
|
Applications?: EMRCluster_Application[];
|
|
11894
|
+
/** An IAM role for automatic scaling policies. The default role is EMR_AutoScaling_DefaultRole. The IAM role provides permissions that the automatic scaling feature requires to launch and terminate EC2 instances in an instance group. */
|
|
11883
11895
|
AutoScalingRole?: string;
|
|
11896
|
+
/** An auto-termination policy for an Amazon EMR cluster. An auto-termination policy defines the amount of idle time in seconds after which a cluster automatically terminates. */
|
|
11884
11897
|
AutoTerminationPolicy?: EMRCluster_AutoTerminationPolicy;
|
|
11898
|
+
/** A list of bootstrap actions to run before Hadoop starts on the cluster nodes. */
|
|
11885
11899
|
BootstrapActions?: EMRCluster_BootstrapActionConfig[];
|
|
11886
|
-
Configurations
|
|
11900
|
+
/** Applies only to Amazon EMR releases 4.x and later. The list of Configurations supplied to the EMR cluster. */
|
|
11901
|
+
Configurations?: EMRCluster_EMRConfiguration[];
|
|
11902
|
+
/** Available only in Amazon EMR version 5.7.0 and later. The ID of a custom Amazon EBS-backed Linux AMI if the cluster uses a custom AMI. */
|
|
11887
11903
|
CustomAmiId?: string;
|
|
11904
|
+
/** The IOPS, of the Amazon EBS root device volume of the Linux AMI that is used for each Amazon EC2 instance. Available in Amazon EMR releases 6.15.0 and later. */
|
|
11888
11905
|
EbsRootVolumeIops?: number;
|
|
11906
|
+
/** The size, in GiB, of the Amazon EBS root device volume of the Linux AMI that is used for each EC2 instance. Available in Amazon EMR version 4.x and later. */
|
|
11889
11907
|
EbsRootVolumeSize?: number;
|
|
11908
|
+
/** The throughput, in MiB/s, of the Amazon EBS root device volume of the Linux AMI that is used for each Amazon EC2 instance. Available in Amazon EMR releases 6.15.0 and later. */
|
|
11890
11909
|
EbsRootVolumeThroughput?: number;
|
|
11910
|
+
/** The unique identifier for the cluster. */
|
|
11891
11911
|
Id?: string;
|
|
11912
|
+
/** Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication in the Amazon EMR Management Guide. */
|
|
11892
11913
|
KerberosAttributes?: EMRCluster_KerberosAttributes;
|
|
11914
|
+
/** The AWS KMS key used for encrypting log files. If a value is not provided, the logs remain encrypted by AES-256. This attribute is only available with Amazon EMR version 5.30.0 and later, excluding Amazon EMR 6.0.0. */
|
|
11893
11915
|
LogEncryptionKmsKeyId?: string;
|
|
11916
|
+
/** The location in Amazon S3 to write the log files of the job flow. If a value is not provided, logs are not created. */
|
|
11894
11917
|
LogUri?: string;
|
|
11918
|
+
/** The specified managed scaling policy for an Amazon EMR cluster. */
|
|
11895
11919
|
ManagedScalingPolicy?: EMRCluster_ManagedScalingPolicy;
|
|
11920
|
+
/** The public DNS name of the master node (instance), such as ec2-12-123-123-123.us-west-2.compute.amazonaws.com. */
|
|
11896
11921
|
MasterPublicDNS?: string;
|
|
11922
|
+
/** Specifies the configuration for cluster logging. */
|
|
11923
|
+
MonitoringConfiguration?: EMRCluster_MonitoringConfiguration;
|
|
11924
|
+
/** Specifies a particular Amazon Linux release for all nodes in a cluster launch RunJobFlow request. If a release is not specified, Amazon EMR uses the latest validated Amazon Linux release for cluster launch. */
|
|
11897
11925
|
OSReleaseLabel?: string;
|
|
11926
|
+
/** The configuration specifies the placement strategy that can be applied to instance roles during cluster creation. */
|
|
11898
11927
|
PlacementGroupConfigs?: EMRCluster_PlacementGroupConfig[];
|
|
11928
|
+
/** The Amazon EMR release label, which determines the version of open-source application packages installed on the cluster. Release labels are in the form emr-x.x.x, where x.x.x is an Amazon EMR release version such as emr-5.14.0. */
|
|
11899
11929
|
ReleaseLabel?: string;
|
|
11900
|
-
|
|
11930
|
+
/** The way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. */
|
|
11931
|
+
ScaleDownBehavior?: "TERMINATE_AT_INSTANCE_HOUR" | "TERMINATE_AT_TASK_COMPLETION";
|
|
11932
|
+
/** The name of the security configuration applied to the cluster. */
|
|
11901
11933
|
SecurityConfiguration?: string;
|
|
11934
|
+
/** Specifies the number of steps that can be executed concurrently. */
|
|
11902
11935
|
StepConcurrencyLevel?: number;
|
|
11903
11936
|
Steps?: EMRCluster_StepConfig[];
|
|
11904
11937
|
Tags?: EMRCluster_Tag[];
|
|
11938
|
+
/** Indicates whether the cluster is visible to IAM principals in the AWS account associated with the cluster. When true, IAM principals in the AWS account can perform EMR cluster actions on the cluster that their IAM policies allow. When false, only the IAM principal that created the cluster and the AWS account root user can perform EMR actions, regardless of IAM permissions policies attached to other IAM principals. */
|
|
11905
11939
|
VisibleToAllUsers?: boolean;
|
|
11906
11940
|
}, attributes?: CFResourceAttributes);
|
|
11907
11941
|
readonly Id: string;
|
|
@@ -15883,6 +15917,9 @@ export declare class ImageBuilder {
|
|
|
15883
15917
|
IamRoleArn?: string;
|
|
15884
15918
|
ImageArn?: string;
|
|
15885
15919
|
ImageName?: string;
|
|
15920
|
+
RootVolumeConfig?: ImageBuilder_VolumeConfig;
|
|
15921
|
+
SoftwaresToInstall?: string[];
|
|
15922
|
+
SoftwaresToUninstall?: string[];
|
|
15886
15923
|
StreamingUrl?: string;
|
|
15887
15924
|
Tags?: ImageBuilder_Tag[];
|
|
15888
15925
|
VpcConfig?: ImageBuilder_VpcConfig;
|
|
@@ -16855,6 +16892,49 @@ export declare class IntelligentPromptRouter {
|
|
|
16855
16892
|
readonly UpdatedAt: string;
|
|
16856
16893
|
}
|
|
16857
16894
|
|
|
16895
|
+
export declare class InterconnectConnection {
|
|
16896
|
+
constructor(props: {
|
|
16897
|
+
/** The logical attachment point in your AWS network where the managed connection will be connected. */
|
|
16898
|
+
AttachPoint: InterconnectConnection_AttachPoint;
|
|
16899
|
+
/** The activation key for accepting a connection proposal from a partner CSP. Mutually exclusive with EnvironmentId. */
|
|
16900
|
+
ActivationKey?: string;
|
|
16901
|
+
/** The Amazon Resource Name (ARN) of the connection. */
|
|
16902
|
+
Arn?: string;
|
|
16903
|
+
/** The bandwidth of the connection (e.g., 50Mbps, 1Gbps). Required when creating a connection through AWS. */
|
|
16904
|
+
Bandwidth?: string;
|
|
16905
|
+
/** The billing tier for the connection. */
|
|
16906
|
+
BillingTier?: number;
|
|
16907
|
+
/** The unique identifier for the connection. */
|
|
16908
|
+
ConnectionId?: string;
|
|
16909
|
+
/** A description of the connection. */
|
|
16910
|
+
Description?: string;
|
|
16911
|
+
/** The ID of the environment for the connection. Required when creating a connection through AWS. Mutually exclusive with ActivationKey. */
|
|
16912
|
+
EnvironmentId?: string;
|
|
16913
|
+
/** The AWS account ID of the connection owner. */
|
|
16914
|
+
OwnerAccount?: string;
|
|
16915
|
+
/** The partner cloud service provider. */
|
|
16916
|
+
Provider?: InterconnectConnection_Provider;
|
|
16917
|
+
/** The account ID of the remote owner. Required when creating a connection through AWS. */
|
|
16918
|
+
RemoteOwnerAccount?: string;
|
|
16919
|
+
/** The shared identifier for the connection pairing. */
|
|
16920
|
+
SharedId?: string;
|
|
16921
|
+
/** The current state of the connection. */
|
|
16922
|
+
State?: "available" | "deleted" | "deleting" | "down" | "failed" | "pending" | "requested";
|
|
16923
|
+
/** An array of key-value pairs to apply to this resource. */
|
|
16924
|
+
Tags?: InterconnectConnection_Tag[];
|
|
16925
|
+
/** The type of managed connection. */
|
|
16926
|
+
Type?: string;
|
|
16927
|
+
}, attributes?: CFResourceAttributes);
|
|
16928
|
+
readonly Arn: string;
|
|
16929
|
+
readonly BillingTier: number;
|
|
16930
|
+
readonly ConnectionId: string;
|
|
16931
|
+
readonly OwnerAccount: string;
|
|
16932
|
+
readonly Provider: InterconnectConnection_Provider;
|
|
16933
|
+
readonly SharedId: string;
|
|
16934
|
+
readonly State: "available" | "deleted" | "deleting" | "down" | "failed" | "pending" | "requested";
|
|
16935
|
+
readonly Type: string;
|
|
16936
|
+
}
|
|
16937
|
+
|
|
16858
16938
|
export declare class InternetGateway {
|
|
16859
16939
|
constructor(props: {
|
|
16860
16940
|
InternetGatewayId?: string;
|
|
@@ -19787,6 +19867,7 @@ export declare class Logging {
|
|
|
19787
19867
|
export declare class LogGroup {
|
|
19788
19868
|
constructor(props: {
|
|
19789
19869
|
Arn?: string;
|
|
19870
|
+
BearerTokenAuthenticationEnabled?: boolean;
|
|
19790
19871
|
/** Creates a data protection policy and assigns it to the log group. A data protection policy can help safeguard sensitive data that's ingested by the log group by auditing and masking the sensitive log data. When a user who does not have permission to view masked data views a log event that includes masked data, the sensitive data is replaced by asterisks. */
|
|
19791
19872
|
DataProtectionPolicy?: Record<string, unknown>;
|
|
19792
19873
|
/** Indicates whether deletion protection is enabled for this log group. When enabled, deletion protection blocks all deletion operations until it is explicitly disabled. */
|
|
@@ -20555,6 +20636,7 @@ export declare class MediaLiveChannel {
|
|
|
20555
20636
|
DryRun?: boolean;
|
|
20556
20637
|
EncoderSettings?: MediaLiveChannel_EncoderSettings;
|
|
20557
20638
|
Id?: string;
|
|
20639
|
+
InferenceSettings?: MediaLiveChannel_InferenceSettings;
|
|
20558
20640
|
InputAttachments?: MediaLiveChannel_InputAttachment[];
|
|
20559
20641
|
Inputs?: string[];
|
|
20560
20642
|
InputSpecification?: MediaLiveChannel_InputSpecification;
|
|
@@ -23099,7 +23181,6 @@ export declare class OnlineEvaluationConfig {
|
|
|
23099
23181
|
UpdatedAt?: string;
|
|
23100
23182
|
}, attributes?: CFResourceAttributes);
|
|
23101
23183
|
readonly CreatedAt: string;
|
|
23102
|
-
readonly ExecutionStatus: OnlineEvaluationConfig_ExecutionStatus;
|
|
23103
23184
|
readonly OnlineEvaluationConfigArn: string;
|
|
23104
23185
|
readonly OnlineEvaluationConfigId: string;
|
|
23105
23186
|
readonly OutputConfig: OnlineEvaluationConfig_OutputConfig;
|
|
@@ -23141,6 +23222,7 @@ Contains between 3 and 32 characters
|
|
|
23141
23222
|
/** The description of the collection */
|
|
23142
23223
|
Description?: string;
|
|
23143
23224
|
EncryptionConfig?: OpenSearchServerlessCollection_EncryptionConfig;
|
|
23225
|
+
FipsEndpoints?: OpenSearchServerlessCollection_FipsEndpoints;
|
|
23144
23226
|
/** The identifier of the collection */
|
|
23145
23227
|
Id?: string;
|
|
23146
23228
|
/** Key Management Service key used to encrypt the collection. */
|
|
@@ -23154,6 +23236,7 @@ Contains between 3 and 32 characters
|
|
|
23154
23236
|
readonly Arn: string;
|
|
23155
23237
|
readonly CollectionEndpoint: string;
|
|
23156
23238
|
readonly DashboardEndpoint: string;
|
|
23239
|
+
readonly FipsEndpoints: OpenSearchServerlessCollection_FipsEndpoints;
|
|
23157
23240
|
readonly Id: string;
|
|
23158
23241
|
readonly KmsKeyArn: string;
|
|
23159
23242
|
}
|
|
@@ -26284,6 +26367,36 @@ export declare class Recipe {
|
|
|
26284
26367
|
}, attributes?: CFResourceAttributes);
|
|
26285
26368
|
}
|
|
26286
26369
|
|
|
26370
|
+
export declare class Recommender {
|
|
26371
|
+
constructor(props: {
|
|
26372
|
+
DomainName: string;
|
|
26373
|
+
RecommenderName: string;
|
|
26374
|
+
RecommenderRecipeName: string;
|
|
26375
|
+
/** The timestamp of when the recommender was created. */
|
|
26376
|
+
CreatedAt?: string;
|
|
26377
|
+
Description?: string;
|
|
26378
|
+
/** The reason for recommender failure. */
|
|
26379
|
+
FailureReason?: string;
|
|
26380
|
+
/** The timestamp of when the recommender was last updated. */
|
|
26381
|
+
LastUpdatedAt?: string;
|
|
26382
|
+
LatestRecommenderUpdate?: Recommender_RecommenderUpdate;
|
|
26383
|
+
/** The Amazon Resource Name (ARN) of the recommender. */
|
|
26384
|
+
RecommenderArn?: string;
|
|
26385
|
+
RecommenderConfig?: Recommender_RecommenderConfig;
|
|
26386
|
+
Status?: Recommender_RecommenderStatus;
|
|
26387
|
+
/** The tags used to organize, track, or control access for this resource. */
|
|
26388
|
+
Tags?: Recommender_Tag[];
|
|
26389
|
+
TrainingMetrics?: Recommender_TrainingMetrics[];
|
|
26390
|
+
}, attributes?: CFResourceAttributes);
|
|
26391
|
+
readonly CreatedAt: string;
|
|
26392
|
+
readonly FailureReason: string;
|
|
26393
|
+
readonly LastUpdatedAt: string;
|
|
26394
|
+
readonly LatestRecommenderUpdate: Recommender_RecommenderUpdate;
|
|
26395
|
+
readonly RecommenderArn: string;
|
|
26396
|
+
readonly Status: Recommender_RecommenderStatus;
|
|
26397
|
+
readonly TrainingMetrics: Recommender_TrainingMetrics[];
|
|
26398
|
+
}
|
|
26399
|
+
|
|
26287
26400
|
export declare class RecordingConfiguration {
|
|
26288
26401
|
constructor(props: {
|
|
26289
26402
|
DestinationConfiguration: RecordingConfiguration_DestinationConfiguration;
|
|
@@ -30982,6 +31095,19 @@ export declare class SpotFleet {
|
|
|
30982
31095
|
readonly Id: string;
|
|
30983
31096
|
}
|
|
30984
31097
|
|
|
31098
|
+
export declare class SqlHaStandbyDetectedInstance {
|
|
31099
|
+
constructor(props: {
|
|
31100
|
+
InstanceId: string;
|
|
31101
|
+
HaStatus?: SqlHaStandbyDetectedInstance_HaStatus;
|
|
31102
|
+
LastUpdatedTime?: string;
|
|
31103
|
+
SqlServerCredentials?: string;
|
|
31104
|
+
SqlServerLicenseUsage?: SqlHaStandbyDetectedInstance_SqlServerLicenseUsage;
|
|
31105
|
+
}, attributes?: CFResourceAttributes);
|
|
31106
|
+
readonly HaStatus: SqlHaStandbyDetectedInstance_HaStatus;
|
|
31107
|
+
readonly LastUpdatedTime: string;
|
|
31108
|
+
readonly SqlServerLicenseUsage: SqlHaStandbyDetectedInstance_SqlServerLicenseUsage;
|
|
31109
|
+
}
|
|
31110
|
+
|
|
30985
31111
|
export declare class SSMAssociation {
|
|
30986
31112
|
constructor(props: {
|
|
30987
31113
|
/** The name of the SSM document. */
|
|
@@ -44016,23 +44142,31 @@ export declare class AnycastIpList_AnycastIpList {
|
|
|
44016
44142
|
Name: string;
|
|
44017
44143
|
/** The status of the Anycast static IP list. Valid values: ``Deployed``, ``Deploying``, or ``Failed``. */
|
|
44018
44144
|
Status: string;
|
|
44145
|
+
/** The IP address type for the Anycast static IP list. */
|
|
44019
44146
|
IpAddressType?: AnycastIpList_IpAddressType;
|
|
44147
|
+
/** The results for the IPAM CIDRs that defines a specific IP address range, IPAM pool, and associated Anycast IP address. */
|
|
44020
44148
|
IpamCidrConfigResults?: any;
|
|
44021
44149
|
});
|
|
44022
44150
|
}
|
|
44023
44151
|
|
|
44024
44152
|
export declare class AnycastIpList_IpamCidrConfig {
|
|
44025
44153
|
constructor(props: {
|
|
44154
|
+
/** The CIDR that specifies the IP address range for this IPAM configuration. */
|
|
44026
44155
|
Cidr: string;
|
|
44156
|
+
/** The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. */
|
|
44027
44157
|
IpamPoolArn: string;
|
|
44028
44158
|
});
|
|
44029
44159
|
}
|
|
44030
44160
|
|
|
44031
44161
|
export declare class AnycastIpList_IpamCidrConfigResult {
|
|
44032
44162
|
constructor(props: {
|
|
44163
|
+
/** The specified Anycast IP address allocated from the IPAM pool for this CIDR configuration. */
|
|
44033
44164
|
AnycastIp?: string;
|
|
44165
|
+
/** The CIDR that specifies the IP address range for this IPAM configuration. */
|
|
44034
44166
|
Cidr?: string;
|
|
44167
|
+
/** The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. */
|
|
44035
44168
|
IpamPoolArn?: string;
|
|
44169
|
+
/** The current status of the IPAM CIDR configuration. */
|
|
44036
44170
|
Status?: string;
|
|
44037
44171
|
});
|
|
44038
44172
|
}
|
|
@@ -48093,6 +48227,15 @@ export declare class AttachmentsSource {
|
|
|
48093
48227
|
});
|
|
48094
48228
|
}
|
|
48095
48229
|
|
|
48230
|
+
export declare class AttachPoint {
|
|
48231
|
+
constructor(props: {
|
|
48232
|
+
/** The ARN of the resource to attach to. */
|
|
48233
|
+
Arn?: string;
|
|
48234
|
+
/** The ID of the Direct Connect Gateway to attach to. */
|
|
48235
|
+
DirectConnectGateway?: string;
|
|
48236
|
+
});
|
|
48237
|
+
}
|
|
48238
|
+
|
|
48096
48239
|
export declare class AttributeDetails {
|
|
48097
48240
|
constructor(props: {
|
|
48098
48241
|
Attributes: any;
|
|
@@ -49825,6 +49968,7 @@ export declare class AutoSubscriptionConfiguration {
|
|
|
49825
49968
|
|
|
49826
49969
|
export declare class AutoTerminationPolicy {
|
|
49827
49970
|
constructor(props: {
|
|
49971
|
+
/** Specifies the amount of idle time in seconds after which the cluster automatically terminates. You can specify a minimum of 60 seconds and a maximum of 604800 seconds (seven days) */
|
|
49828
49972
|
IdleTimeout?: number;
|
|
49829
49973
|
});
|
|
49830
49974
|
}
|
|
@@ -52459,6 +52603,7 @@ export declare class BooleanOperands {
|
|
|
52459
52603
|
|
|
52460
52604
|
export declare class BootstrapActionConfig {
|
|
52461
52605
|
constructor(props: {
|
|
52606
|
+
/** The name of the bootstrap action. */
|
|
52462
52607
|
Name: string;
|
|
52463
52608
|
ScriptBootstrapAction: EMRCluster_ScriptBootstrapActionConfig;
|
|
52464
52609
|
});
|
|
@@ -54959,19 +55104,20 @@ export declare class CACertificate_Tag {
|
|
|
54959
55104
|
|
|
54960
55105
|
export declare class CaCertificatesBundleS3Location {
|
|
54961
55106
|
constructor(props: {
|
|
54962
|
-
/** The S3 bucket
|
|
55107
|
+
/** The S3 bucket. */
|
|
54963
55108
|
Bucket: string;
|
|
54964
|
-
/** The
|
|
55109
|
+
/** The location's key. */
|
|
54965
55110
|
Key: string;
|
|
54966
|
-
/** The
|
|
55111
|
+
/** The location's Region. */
|
|
54967
55112
|
Region: string;
|
|
54968
|
-
/** The
|
|
55113
|
+
/** The location's version. */
|
|
54969
55114
|
Version?: string;
|
|
54970
55115
|
});
|
|
54971
55116
|
}
|
|
54972
55117
|
|
|
54973
55118
|
export declare class CaCertificatesBundleSource {
|
|
54974
55119
|
constructor(props: {
|
|
55120
|
+
/** The CA certificates bundle location in Amazon S3. */
|
|
54975
55121
|
CaCertificatesBundleS3Location: CfTrustStore_CaCertificatesBundleS3Location;
|
|
54976
55122
|
});
|
|
54977
55123
|
}
|
|
@@ -55476,41 +55622,222 @@ export declare class Capabilities {
|
|
|
55476
55622
|
constructor(props: {
|
|
55477
55623
|
Action?: CustomPermissions_CapabilityState;
|
|
55478
55624
|
AddOrRunAnomalyDetectionForAnalyses?: CustomPermissions_CapabilityState;
|
|
55625
|
+
AmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
55626
|
+
AmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
55627
|
+
AmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
55628
|
+
AmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
55479
55629
|
Analysis?: CustomPermissions_CapabilityState;
|
|
55630
|
+
ApproveFlowShareRequests?: CustomPermissions_CapabilityState;
|
|
55631
|
+
AsanaAction?: CustomPermissions_CapabilityState;
|
|
55480
55632
|
Automate?: CustomPermissions_CapabilityState;
|
|
55633
|
+
BambooHRAction?: CustomPermissions_CapabilityState;
|
|
55634
|
+
BoxAgentAction?: CustomPermissions_CapabilityState;
|
|
55635
|
+
BuildCalculatedFieldWithQ?: CustomPermissions_CapabilityState;
|
|
55636
|
+
CanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
55481
55637
|
ChatAgent?: CustomPermissions_CapabilityState;
|
|
55638
|
+
ComprehendAction?: CustomPermissions_CapabilityState;
|
|
55639
|
+
ComprehendMedicalAction?: CustomPermissions_CapabilityState;
|
|
55640
|
+
ConfluenceAction?: CustomPermissions_CapabilityState;
|
|
55641
|
+
CreateAndUpdateAmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
55642
|
+
CreateAndUpdateAmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
55643
|
+
CreateAndUpdateAmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
55644
|
+
CreateAndUpdateAmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
55645
|
+
CreateAndUpdateAsanaAction?: CustomPermissions_CapabilityState;
|
|
55646
|
+
CreateAndUpdateBambooHRAction?: CustomPermissions_CapabilityState;
|
|
55647
|
+
CreateAndUpdateBoxAgentAction?: CustomPermissions_CapabilityState;
|
|
55648
|
+
CreateAndUpdateCanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
55649
|
+
CreateAndUpdateComprehendAction?: CustomPermissions_CapabilityState;
|
|
55650
|
+
CreateAndUpdateComprehendMedicalAction?: CustomPermissions_CapabilityState;
|
|
55651
|
+
CreateAndUpdateConfluenceAction?: CustomPermissions_CapabilityState;
|
|
55482
55652
|
CreateAndUpdateDashboardEmailReports?: CustomPermissions_CapabilityState;
|
|
55483
55653
|
CreateAndUpdateDatasets?: CustomPermissions_CapabilityState;
|
|
55484
55654
|
CreateAndUpdateDataSources?: CustomPermissions_CapabilityState;
|
|
55655
|
+
CreateAndUpdateFactSetAction?: CustomPermissions_CapabilityState;
|
|
55656
|
+
CreateAndUpdateGenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
55657
|
+
CreateAndUpdateGithubAction?: CustomPermissions_CapabilityState;
|
|
55658
|
+
CreateAndUpdateGoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
55659
|
+
CreateAndUpdateHubspotAction?: CustomPermissions_CapabilityState;
|
|
55660
|
+
CreateAndUpdateHuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
55661
|
+
CreateAndUpdateIntercomAction?: CustomPermissions_CapabilityState;
|
|
55662
|
+
CreateAndUpdateJiraAction?: CustomPermissions_CapabilityState;
|
|
55663
|
+
CreateAndUpdateKnowledgeBases?: CustomPermissions_CapabilityState;
|
|
55664
|
+
CreateAndUpdateLinearAction?: CustomPermissions_CapabilityState;
|
|
55665
|
+
CreateAndUpdateMCPAction?: CustomPermissions_CapabilityState;
|
|
55666
|
+
CreateAndUpdateMondayAction?: CustomPermissions_CapabilityState;
|
|
55667
|
+
CreateAndUpdateMSExchangeAction?: CustomPermissions_CapabilityState;
|
|
55668
|
+
CreateAndUpdateMSTeamsAction?: CustomPermissions_CapabilityState;
|
|
55669
|
+
CreateAndUpdateNewRelicAction?: CustomPermissions_CapabilityState;
|
|
55670
|
+
CreateAndUpdateNotionAction?: CustomPermissions_CapabilityState;
|
|
55671
|
+
CreateAndUpdateOneDriveAction?: CustomPermissions_CapabilityState;
|
|
55672
|
+
CreateAndUpdateOpenAPIAction?: CustomPermissions_CapabilityState;
|
|
55673
|
+
CreateAndUpdatePagerDutyAction?: CustomPermissions_CapabilityState;
|
|
55674
|
+
CreateAndUpdateSalesforceAction?: CustomPermissions_CapabilityState;
|
|
55675
|
+
CreateAndUpdateSandPGlobalEnergyAction?: CustomPermissions_CapabilityState;
|
|
55676
|
+
CreateAndUpdateSandPGMIAction?: CustomPermissions_CapabilityState;
|
|
55677
|
+
CreateAndUpdateSAPBillOfMaterialAction?: CustomPermissions_CapabilityState;
|
|
55678
|
+
CreateAndUpdateSAPBusinessPartnerAction?: CustomPermissions_CapabilityState;
|
|
55679
|
+
CreateAndUpdateSAPMaterialStockAction?: CustomPermissions_CapabilityState;
|
|
55680
|
+
CreateAndUpdateSAPPhysicalInventoryAction?: CustomPermissions_CapabilityState;
|
|
55681
|
+
CreateAndUpdateSAPProductMasterDataAction?: CustomPermissions_CapabilityState;
|
|
55682
|
+
CreateAndUpdateServiceNowAction?: CustomPermissions_CapabilityState;
|
|
55683
|
+
CreateAndUpdateSharePointAction?: CustomPermissions_CapabilityState;
|
|
55684
|
+
CreateAndUpdateSlackAction?: CustomPermissions_CapabilityState;
|
|
55685
|
+
CreateAndUpdateSmartsheetAction?: CustomPermissions_CapabilityState;
|
|
55686
|
+
CreateAndUpdateTextractAction?: CustomPermissions_CapabilityState;
|
|
55485
55687
|
CreateAndUpdateThemes?: CustomPermissions_CapabilityState;
|
|
55486
55688
|
CreateAndUpdateThresholdAlerts?: CustomPermissions_CapabilityState;
|
|
55689
|
+
CreateAndUpdateZendeskAction?: CustomPermissions_CapabilityState;
|
|
55487
55690
|
CreateChatAgents?: CustomPermissions_CapabilityState;
|
|
55691
|
+
CreateDashboardExecutiveSummaryWithQ?: CustomPermissions_CapabilityState;
|
|
55488
55692
|
CreateSharedFolders?: CustomPermissions_CapabilityState;
|
|
55489
55693
|
CreateSPICEDataset?: CustomPermissions_CapabilityState;
|
|
55490
55694
|
Dashboard?: CustomPermissions_CapabilityState;
|
|
55695
|
+
EditVisualWithQ?: CustomPermissions_CapabilityState;
|
|
55491
55696
|
ExportToCsv?: CustomPermissions_CapabilityState;
|
|
55492
55697
|
ExportToCsvInScheduledReports?: CustomPermissions_CapabilityState;
|
|
55493
55698
|
ExportToExcel?: CustomPermissions_CapabilityState;
|
|
55494
55699
|
ExportToExcelInScheduledReports?: CustomPermissions_CapabilityState;
|
|
55495
55700
|
ExportToPdf?: CustomPermissions_CapabilityState;
|
|
55496
55701
|
ExportToPdfInScheduledReports?: CustomPermissions_CapabilityState;
|
|
55702
|
+
Extension?: CustomPermissions_CapabilityState;
|
|
55703
|
+
FactSetAction?: CustomPermissions_CapabilityState;
|
|
55497
55704
|
Flow?: CustomPermissions_CapabilityState;
|
|
55705
|
+
GenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
55706
|
+
GithubAction?: CustomPermissions_CapabilityState;
|
|
55707
|
+
GoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
55708
|
+
HubspotAction?: CustomPermissions_CapabilityState;
|
|
55709
|
+
HuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
55498
55710
|
IncludeContentInScheduledReportsEmail?: CustomPermissions_CapabilityState;
|
|
55711
|
+
IntercomAction?: CustomPermissions_CapabilityState;
|
|
55712
|
+
JiraAction?: CustomPermissions_CapabilityState;
|
|
55499
55713
|
KnowledgeBase?: CustomPermissions_CapabilityState;
|
|
55714
|
+
LinearAction?: CustomPermissions_CapabilityState;
|
|
55715
|
+
ManageSharedFolders?: CustomPermissions_CapabilityState;
|
|
55716
|
+
MCPAction?: CustomPermissions_CapabilityState;
|
|
55717
|
+
MondayAction?: CustomPermissions_CapabilityState;
|
|
55718
|
+
MSExchangeAction?: CustomPermissions_CapabilityState;
|
|
55719
|
+
MSTeamsAction?: CustomPermissions_CapabilityState;
|
|
55720
|
+
NewRelicAction?: CustomPermissions_CapabilityState;
|
|
55721
|
+
NotionAction?: CustomPermissions_CapabilityState;
|
|
55722
|
+
OneDriveAction?: CustomPermissions_CapabilityState;
|
|
55723
|
+
OpenAPIAction?: CustomPermissions_CapabilityState;
|
|
55724
|
+
PagerDutyAction?: CustomPermissions_CapabilityState;
|
|
55500
55725
|
PerformFlowUiTask?: CustomPermissions_CapabilityState;
|
|
55501
55726
|
PrintReports?: CustomPermissions_CapabilityState;
|
|
55502
55727
|
PublishWithoutApproval?: CustomPermissions_CapabilityState;
|
|
55503
55728
|
RenameSharedFolders?: CustomPermissions_CapabilityState;
|
|
55504
55729
|
Research?: CustomPermissions_CapabilityState;
|
|
55730
|
+
SalesforceAction?: CustomPermissions_CapabilityState;
|
|
55731
|
+
SandPGlobalEnergyAction?: CustomPermissions_CapabilityState;
|
|
55732
|
+
SandPGMIAction?: CustomPermissions_CapabilityState;
|
|
55733
|
+
SAPBillOfMaterialAction?: CustomPermissions_CapabilityState;
|
|
55734
|
+
SAPBusinessPartnerAction?: CustomPermissions_CapabilityState;
|
|
55735
|
+
SAPMaterialStockAction?: CustomPermissions_CapabilityState;
|
|
55736
|
+
SAPPhysicalInventoryAction?: CustomPermissions_CapabilityState;
|
|
55737
|
+
SAPProductMasterDataAction?: CustomPermissions_CapabilityState;
|
|
55738
|
+
ServiceNowAction?: CustomPermissions_CapabilityState;
|
|
55739
|
+
ShareAmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
55740
|
+
ShareAmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
55741
|
+
ShareAmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
55742
|
+
ShareAmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
55505
55743
|
ShareAnalyses?: CustomPermissions_CapabilityState;
|
|
55744
|
+
ShareAsanaAction?: CustomPermissions_CapabilityState;
|
|
55745
|
+
ShareBambooHRAction?: CustomPermissions_CapabilityState;
|
|
55746
|
+
ShareBoxAgentAction?: CustomPermissions_CapabilityState;
|
|
55747
|
+
ShareCanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
55748
|
+
ShareComprehendAction?: CustomPermissions_CapabilityState;
|
|
55749
|
+
ShareComprehendMedicalAction?: CustomPermissions_CapabilityState;
|
|
55750
|
+
ShareConfluenceAction?: CustomPermissions_CapabilityState;
|
|
55506
55751
|
ShareDashboards?: CustomPermissions_CapabilityState;
|
|
55507
55752
|
ShareDatasets?: CustomPermissions_CapabilityState;
|
|
55508
55753
|
ShareDataSources?: CustomPermissions_CapabilityState;
|
|
55754
|
+
ShareFactSetAction?: CustomPermissions_CapabilityState;
|
|
55755
|
+
ShareGenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
55756
|
+
ShareGithubAction?: CustomPermissions_CapabilityState;
|
|
55757
|
+
ShareGoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
55758
|
+
ShareHubspotAction?: CustomPermissions_CapabilityState;
|
|
55759
|
+
ShareHuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
55760
|
+
ShareIntercomAction?: CustomPermissions_CapabilityState;
|
|
55761
|
+
ShareJiraAction?: CustomPermissions_CapabilityState;
|
|
55762
|
+
ShareKnowledgeBases?: CustomPermissions_CapabilityState;
|
|
55763
|
+
ShareLinearAction?: CustomPermissions_CapabilityState;
|
|
55764
|
+
ShareMCPAction?: CustomPermissions_CapabilityState;
|
|
55765
|
+
ShareMondayAction?: CustomPermissions_CapabilityState;
|
|
55766
|
+
ShareMSExchangeAction?: CustomPermissions_CapabilityState;
|
|
55767
|
+
ShareMSTeamsAction?: CustomPermissions_CapabilityState;
|
|
55768
|
+
ShareNewRelicAction?: CustomPermissions_CapabilityState;
|
|
55769
|
+
ShareNotionAction?: CustomPermissions_CapabilityState;
|
|
55770
|
+
ShareOneDriveAction?: CustomPermissions_CapabilityState;
|
|
55771
|
+
ShareOpenAPIAction?: CustomPermissions_CapabilityState;
|
|
55772
|
+
SharePagerDutyAction?: CustomPermissions_CapabilityState;
|
|
55773
|
+
SharePointAction?: CustomPermissions_CapabilityState;
|
|
55774
|
+
ShareSalesforceAction?: CustomPermissions_CapabilityState;
|
|
55775
|
+
ShareSandPGlobalEnergyAction?: CustomPermissions_CapabilityState;
|
|
55776
|
+
ShareSandPGMIAction?: CustomPermissions_CapabilityState;
|
|
55777
|
+
ShareSAPBillOfMaterialAction?: CustomPermissions_CapabilityState;
|
|
55778
|
+
ShareSAPBusinessPartnerAction?: CustomPermissions_CapabilityState;
|
|
55779
|
+
ShareSAPMaterialStockAction?: CustomPermissions_CapabilityState;
|
|
55780
|
+
ShareSAPPhysicalInventoryAction?: CustomPermissions_CapabilityState;
|
|
55781
|
+
ShareSAPProductMasterDataAction?: CustomPermissions_CapabilityState;
|
|
55782
|
+
ShareServiceNowAction?: CustomPermissions_CapabilityState;
|
|
55783
|
+
ShareSharePointAction?: CustomPermissions_CapabilityState;
|
|
55784
|
+
ShareSlackAction?: CustomPermissions_CapabilityState;
|
|
55785
|
+
ShareSmartsheetAction?: CustomPermissions_CapabilityState;
|
|
55786
|
+
ShareTextractAction?: CustomPermissions_CapabilityState;
|
|
55787
|
+
ShareZendeskAction?: CustomPermissions_CapabilityState;
|
|
55788
|
+
SlackAction?: CustomPermissions_CapabilityState;
|
|
55789
|
+
SmartsheetAction?: CustomPermissions_CapabilityState;
|
|
55509
55790
|
Space?: CustomPermissions_CapabilityState;
|
|
55510
55791
|
SubscribeDashboardEmailReports?: CustomPermissions_CapabilityState;
|
|
55792
|
+
TextractAction?: CustomPermissions_CapabilityState;
|
|
55793
|
+
Topic?: CustomPermissions_CapabilityState;
|
|
55511
55794
|
UseAgentWebSearch?: CustomPermissions_CapabilityState;
|
|
55795
|
+
UseAmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
55796
|
+
UseAmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
55797
|
+
UseAmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
55798
|
+
UseAmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
55799
|
+
UseAsanaAction?: CustomPermissions_CapabilityState;
|
|
55800
|
+
UseBambooHRAction?: CustomPermissions_CapabilityState;
|
|
55512
55801
|
UseBedrockModels?: CustomPermissions_CapabilityState;
|
|
55802
|
+
UseBoxAgentAction?: CustomPermissions_CapabilityState;
|
|
55803
|
+
UseCanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
55804
|
+
UseComprehendAction?: CustomPermissions_CapabilityState;
|
|
55805
|
+
UseComprehendMedicalAction?: CustomPermissions_CapabilityState;
|
|
55806
|
+
UseConfluenceAction?: CustomPermissions_CapabilityState;
|
|
55807
|
+
UseFactSetAction?: CustomPermissions_CapabilityState;
|
|
55808
|
+
UseGenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
55809
|
+
UseGithubAction?: CustomPermissions_CapabilityState;
|
|
55810
|
+
UseGoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
55811
|
+
UseHubspotAction?: CustomPermissions_CapabilityState;
|
|
55812
|
+
UseHuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
55813
|
+
UseIntercomAction?: CustomPermissions_CapabilityState;
|
|
55814
|
+
UseJiraAction?: CustomPermissions_CapabilityState;
|
|
55815
|
+
UseLinearAction?: CustomPermissions_CapabilityState;
|
|
55816
|
+
UseMCPAction?: CustomPermissions_CapabilityState;
|
|
55817
|
+
UseMondayAction?: CustomPermissions_CapabilityState;
|
|
55818
|
+
UseMSExchangeAction?: CustomPermissions_CapabilityState;
|
|
55819
|
+
UseMSTeamsAction?: CustomPermissions_CapabilityState;
|
|
55820
|
+
UseNewRelicAction?: CustomPermissions_CapabilityState;
|
|
55821
|
+
UseNotionAction?: CustomPermissions_CapabilityState;
|
|
55822
|
+
UseOneDriveAction?: CustomPermissions_CapabilityState;
|
|
55823
|
+
UseOpenAPIAction?: CustomPermissions_CapabilityState;
|
|
55824
|
+
UsePagerDutyAction?: CustomPermissions_CapabilityState;
|
|
55825
|
+
UseSalesforceAction?: CustomPermissions_CapabilityState;
|
|
55826
|
+
UseSandPGlobalEnergyAction?: CustomPermissions_CapabilityState;
|
|
55827
|
+
UseSandPGMIAction?: CustomPermissions_CapabilityState;
|
|
55828
|
+
UseSAPBillOfMaterialAction?: CustomPermissions_CapabilityState;
|
|
55829
|
+
UseSAPBusinessPartnerAction?: CustomPermissions_CapabilityState;
|
|
55830
|
+
UseSAPMaterialStockAction?: CustomPermissions_CapabilityState;
|
|
55831
|
+
UseSAPPhysicalInventoryAction?: CustomPermissions_CapabilityState;
|
|
55832
|
+
UseSAPProductMasterDataAction?: CustomPermissions_CapabilityState;
|
|
55833
|
+
UseServiceNowAction?: CustomPermissions_CapabilityState;
|
|
55834
|
+
UseSharePointAction?: CustomPermissions_CapabilityState;
|
|
55835
|
+
UseSlackAction?: CustomPermissions_CapabilityState;
|
|
55836
|
+
UseSmartsheetAction?: CustomPermissions_CapabilityState;
|
|
55837
|
+
UseTextractAction?: CustomPermissions_CapabilityState;
|
|
55838
|
+
UseZendeskAction?: CustomPermissions_CapabilityState;
|
|
55513
55839
|
ViewAccountSPICECapacity?: CustomPermissions_CapabilityState;
|
|
55840
|
+
ZendeskAction?: CustomPermissions_CapabilityState;
|
|
55514
55841
|
});
|
|
55515
55842
|
}
|
|
55516
55843
|
|
|
@@ -56441,6 +56768,7 @@ export declare class CfDistribution_CacheBehavior {
|
|
|
56441
56768
|
|
|
56442
56769
|
export declare class CfDistribution_ConnectionFunctionAssociation {
|
|
56443
56770
|
constructor(props: {
|
|
56771
|
+
/** The association's ID. */
|
|
56444
56772
|
Id: string;
|
|
56445
56773
|
});
|
|
56446
56774
|
}
|
|
@@ -56503,6 +56831,7 @@ export declare class CfDistribution_CustomOriginConfig {
|
|
|
56503
56831
|
/** Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 5 seconds.
|
|
56504
56832
|
For more information, see [Keep-alive timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
56505
56833
|
OriginKeepaliveTimeout?: number;
|
|
56834
|
+
/** Configures mutual TLS authentication between CloudFront and your origin server. */
|
|
56506
56835
|
OriginMtlsConfig?: CfDistribution_OriginMtlsConfig;
|
|
56507
56836
|
/** Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout*. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
56508
56837
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
@@ -56609,6 +56938,7 @@ export declare class CfDistribution_DistributionConfig {
|
|
|
56609
56938
|
CNAMEs?: string[];
|
|
56610
56939
|
/** A comment to describe the distribution. The comment cannot be longer than 128 characters. */
|
|
56611
56940
|
Comment?: string;
|
|
56941
|
+
/** The distribution's connection function association. */
|
|
56612
56942
|
ConnectionFunctionAssociation?: CfDistribution_ConnectionFunctionAssociation;
|
|
56613
56943
|
/** This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants (tenant-only). */
|
|
56614
56944
|
ConnectionMode?: CfDistribution_ConnectionMode;
|
|
@@ -56672,6 +57002,7 @@ export declare class CfDistribution_DistributionConfig {
|
|
|
56672
57002
|
TenantConfig?: Record<string, unknown>;
|
|
56673
57003
|
/** A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers. */
|
|
56674
57004
|
ViewerCertificate?: CfDistribution_ViewerCertificate;
|
|
57005
|
+
/** The distribution's viewer mTLS configuration. */
|
|
56675
57006
|
ViewerMtlsConfig?: CfDistribution_ViewerMtlsConfig;
|
|
56676
57007
|
/** Multi-tenant distributions only support WAF V2 web ACLs.
|
|
56677
57008
|
A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example ``arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``. To specify a web ACL created using WAF Classic, use the ACL ID, for example ``a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``.
|
|
@@ -56889,6 +57220,7 @@ export declare class CfDistribution_OriginGroups {
|
|
|
56889
57220
|
|
|
56890
57221
|
export declare class CfDistribution_OriginMtlsConfig {
|
|
56891
57222
|
constructor(props: {
|
|
57223
|
+
/** The Amazon Resource Name (ARN) of the client certificate stored in AWS Certificate Manager (ACM) that CloudFront uses to authenticate with your origin using Mutual TLS. */
|
|
56892
57224
|
ClientCertificateArn: string;
|
|
56893
57225
|
});
|
|
56894
57226
|
}
|
|
@@ -56960,8 +57292,11 @@ export declare class CfDistribution_Tag {
|
|
|
56960
57292
|
|
|
56961
57293
|
export declare class CfDistribution_TrustStoreConfig {
|
|
56962
57294
|
constructor(props: {
|
|
57295
|
+
/** The trust store ID. */
|
|
56963
57296
|
TrustStoreId: string;
|
|
57297
|
+
/** The configuration to use to advertise trust store CA names. */
|
|
56964
57298
|
AdvertiseTrustStoreCaNames?: boolean;
|
|
57299
|
+
/** The configuration to use to ignore certificate expiration. */
|
|
56965
57300
|
IgnoreCertificateExpiry?: boolean;
|
|
56966
57301
|
});
|
|
56967
57302
|
}
|
|
@@ -57005,7 +57340,9 @@ export declare class CfDistribution_ViewerCertificate {
|
|
|
57005
57340
|
|
|
57006
57341
|
export declare class CfDistribution_ViewerMtlsConfig {
|
|
57007
57342
|
constructor(props: {
|
|
57343
|
+
/** The viewer mTLS mode. */
|
|
57008
57344
|
Mode?: CfDistribution_ViewerMtlsMode;
|
|
57345
|
+
/** The trust store configuration associated with the viewer mTLS configuration. */
|
|
57009
57346
|
TrustStoreConfig?: CfDistribution_TrustStoreConfig;
|
|
57010
57347
|
});
|
|
57011
57348
|
}
|
|
@@ -57020,6 +57357,7 @@ export declare class CfDistribution_VpcOriginConfig {
|
|
|
57020
57357
|
/** Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout*. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
57021
57358
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
57022
57359
|
OriginReadTimeout?: number;
|
|
57360
|
+
/** The account ID of the AWS-account that owns the VPC origin. */
|
|
57023
57361
|
OwnerAccountId?: string;
|
|
57024
57362
|
});
|
|
57025
57363
|
}
|
|
@@ -57177,30 +57515,44 @@ export declare class CfPublicKey_PublicKeyConfig {
|
|
|
57177
57515
|
|
|
57178
57516
|
export declare class CfTrustStore_CaCertificatesBundleS3Location {
|
|
57179
57517
|
constructor(props: {
|
|
57180
|
-
/** The S3 bucket
|
|
57518
|
+
/** The S3 bucket. */
|
|
57181
57519
|
Bucket: string;
|
|
57182
|
-
/** The
|
|
57520
|
+
/** The location's key. */
|
|
57183
57521
|
Key: string;
|
|
57184
|
-
/** The
|
|
57522
|
+
/** The location's Region. */
|
|
57185
57523
|
Region: string;
|
|
57186
|
-
/** The
|
|
57524
|
+
/** The location's version. */
|
|
57187
57525
|
Version?: string;
|
|
57188
57526
|
});
|
|
57189
57527
|
}
|
|
57190
57528
|
|
|
57191
57529
|
export declare class CfTrustStore_CaCertificatesBundleSource {
|
|
57192
57530
|
constructor(props: {
|
|
57531
|
+
/** The CA certificates bundle location in Amazon S3. */
|
|
57193
57532
|
CaCertificatesBundleS3Location: CfTrustStore_CaCertificatesBundleS3Location;
|
|
57194
57533
|
});
|
|
57195
57534
|
}
|
|
57196
57535
|
|
|
57197
57536
|
export declare class CfTrustStore_Tag {
|
|
57198
57537
|
constructor(props: {
|
|
57538
|
+
/** A string that contains ``Tag`` key.
|
|
57539
|
+
The string length should be between 1 and 128 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``. */
|
|
57199
57540
|
Key: string;
|
|
57541
|
+
/** A string that contains an optional ``Tag`` value.
|
|
57542
|
+
The string length should be between 0 and 256 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``. */
|
|
57200
57543
|
Value: string;
|
|
57201
57544
|
});
|
|
57202
57545
|
}
|
|
57203
57546
|
|
|
57547
|
+
export declare class CgroupCustomSetting {
|
|
57548
|
+
constructor(props: {
|
|
57549
|
+
/** The cgroup.conf parameter name. */
|
|
57550
|
+
ParameterName: string;
|
|
57551
|
+
/** The value for the cgroup.conf parameter. */
|
|
57552
|
+
ParameterValue: string;
|
|
57553
|
+
});
|
|
57554
|
+
}
|
|
57555
|
+
|
|
57204
57556
|
export declare class ChannelEngineVersionRequest {
|
|
57205
57557
|
constructor(props: {
|
|
57206
57558
|
Version?: string;
|
|
@@ -58015,6 +58367,21 @@ export declare class CloudWatchEncryption {
|
|
|
58015
58367
|
});
|
|
58016
58368
|
}
|
|
58017
58369
|
|
|
58370
|
+
export declare class CloudWatchLogConfiguration {
|
|
58371
|
+
constructor(props: {
|
|
58372
|
+
/** Specifies if CloudWatch logging is enabled. */
|
|
58373
|
+
Enabled: boolean;
|
|
58374
|
+
/** The ARN of the encryption key used to encrypt the logs. */
|
|
58375
|
+
EncryptionKeyArn?: string;
|
|
58376
|
+
/** The name of the CloudWatch log group where logs are published. */
|
|
58377
|
+
LogGroupName?: string;
|
|
58378
|
+
/** The prefix of the log stream name. */
|
|
58379
|
+
LogStreamNamePrefix?: string;
|
|
58380
|
+
/** A map of log types to file names for publishing logs to the standard output or standard error streams for CloudWatch. Valid log types include STEP_LOGS, SPARK_DRIVER, and SPARK_EXECUTOR. Valid file names for each type include STDOUT and STDERR. */
|
|
58381
|
+
LogTypes?: Record<string, unknown>;
|
|
58382
|
+
});
|
|
58383
|
+
}
|
|
58384
|
+
|
|
58018
58385
|
export declare class CloudWatchLoggingOption {
|
|
58019
58386
|
constructor(props: {
|
|
58020
58387
|
LogStreamARN: string;
|
|
@@ -60292,10 +60659,15 @@ export declare class ComputeEnvironmentOrder {
|
|
|
60292
60659
|
|
|
60293
60660
|
export declare class ComputeLimits {
|
|
60294
60661
|
constructor(props: {
|
|
60662
|
+
/** The upper boundary of EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. Managed scaling activities are not allowed beyond this boundary. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration. */
|
|
60295
60663
|
MaximumCapacityUnits: number;
|
|
60664
|
+
/** The lower boundary of EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. Managed scaling activities are not allowed beyond this boundary. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration. */
|
|
60296
60665
|
MinimumCapacityUnits: number;
|
|
60297
|
-
|
|
60666
|
+
/** The unit type used for specifying a managed scaling policy. */
|
|
60667
|
+
UnitType: "InstanceFleetUnits" | "Instances" | "VCPU";
|
|
60668
|
+
/** The upper boundary of EC2 units for core node type in a cluster. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. The core units are not allowed to scale beyond this boundary. The parameter is used to split capacity allocation between core and task nodes. */
|
|
60298
60669
|
MaximumCoreCapacityUnits?: number;
|
|
60670
|
+
/** The upper boundary of On-Demand EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. The On-Demand units are not allowed to scale beyond this boundary. The parameter is used to split capacity allocation between On-Demand and Spot Instances. */
|
|
60299
60671
|
MaximumOnDemandCapacityUnits?: number;
|
|
60300
60672
|
});
|
|
60301
60673
|
}
|
|
@@ -61919,35 +62291,47 @@ export declare class ConnectionDrainingPolicy {
|
|
|
61919
62291
|
|
|
61920
62292
|
export declare class ConnectionFunction_ConnectionFunctionConfig {
|
|
61921
62293
|
constructor(props: {
|
|
62294
|
+
/** A comment to describe the function. */
|
|
61922
62295
|
Comment: string;
|
|
62296
|
+
/** The function's runtime environment version. */
|
|
61923
62297
|
Runtime: "cloudfront-js-2.0";
|
|
62298
|
+
/** The configuration for the key value store associations. */
|
|
61924
62299
|
KeyValueStoreAssociations?: ConnectionFunction_KeyValueStoreAssociation[];
|
|
61925
62300
|
});
|
|
61926
62301
|
}
|
|
61927
62302
|
|
|
61928
62303
|
export declare class ConnectionFunction_KeyValueStoreAssociation {
|
|
61929
62304
|
constructor(props: {
|
|
62305
|
+
/** The Amazon Resource Name (ARN) of the key value store association. */
|
|
61930
62306
|
KeyValueStoreARN: string;
|
|
61931
62307
|
});
|
|
61932
62308
|
}
|
|
61933
62309
|
|
|
61934
62310
|
export declare class ConnectionFunction_Tag {
|
|
61935
62311
|
constructor(props: {
|
|
62312
|
+
/** A string that contains ``Tag`` key.
|
|
62313
|
+
The string length should be between 1 and 128 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``. */
|
|
61936
62314
|
Key: string;
|
|
62315
|
+
/** A string that contains an optional ``Tag`` value.
|
|
62316
|
+
The string length should be between 0 and 256 characters. Valid characters include ``a-z``, ``A-Z``, ``0-9``, space, and the special characters ``_ - . : / = + @``. */
|
|
61937
62317
|
Value: string;
|
|
61938
62318
|
});
|
|
61939
62319
|
}
|
|
61940
62320
|
|
|
61941
62321
|
export declare class ConnectionFunctionAssociation {
|
|
61942
62322
|
constructor(props: {
|
|
62323
|
+
/** The association's ID. */
|
|
61943
62324
|
Id: string;
|
|
61944
62325
|
});
|
|
61945
62326
|
}
|
|
61946
62327
|
|
|
61947
62328
|
export declare class ConnectionFunctionConfig {
|
|
61948
62329
|
constructor(props: {
|
|
62330
|
+
/** A comment to describe the function. */
|
|
61949
62331
|
Comment: string;
|
|
62332
|
+
/** The function's runtime environment version. */
|
|
61950
62333
|
Runtime: "cloudfront-js-2.0";
|
|
62334
|
+
/** The configuration for the key value store associations. */
|
|
61951
62335
|
KeyValueStoreAssociations?: ConnectionFunction_KeyValueStoreAssociation[];
|
|
61952
62336
|
});
|
|
61953
62337
|
}
|
|
@@ -65606,6 +65990,7 @@ export declare class CustomOriginConfig {
|
|
|
65606
65990
|
/** Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 5 seconds.
|
|
65607
65991
|
For more information, see [Keep-alive timeout (custom origins only)](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
65608
65992
|
OriginKeepaliveTimeout?: number;
|
|
65993
|
+
/** Configures mutual TLS authentication between CloudFront and your origin server. */
|
|
65609
65994
|
OriginMtlsConfig?: CfDistribution_OriginMtlsConfig;
|
|
65610
65995
|
/** Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout*. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
65611
65996
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
@@ -65641,41 +66026,222 @@ export declare class CustomPermissions_Capabilities {
|
|
|
65641
66026
|
constructor(props: {
|
|
65642
66027
|
Action?: CustomPermissions_CapabilityState;
|
|
65643
66028
|
AddOrRunAnomalyDetectionForAnalyses?: CustomPermissions_CapabilityState;
|
|
66029
|
+
AmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
66030
|
+
AmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
66031
|
+
AmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
66032
|
+
AmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
65644
66033
|
Analysis?: CustomPermissions_CapabilityState;
|
|
66034
|
+
ApproveFlowShareRequests?: CustomPermissions_CapabilityState;
|
|
66035
|
+
AsanaAction?: CustomPermissions_CapabilityState;
|
|
65645
66036
|
Automate?: CustomPermissions_CapabilityState;
|
|
66037
|
+
BambooHRAction?: CustomPermissions_CapabilityState;
|
|
66038
|
+
BoxAgentAction?: CustomPermissions_CapabilityState;
|
|
66039
|
+
BuildCalculatedFieldWithQ?: CustomPermissions_CapabilityState;
|
|
66040
|
+
CanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
65646
66041
|
ChatAgent?: CustomPermissions_CapabilityState;
|
|
66042
|
+
ComprehendAction?: CustomPermissions_CapabilityState;
|
|
66043
|
+
ComprehendMedicalAction?: CustomPermissions_CapabilityState;
|
|
66044
|
+
ConfluenceAction?: CustomPermissions_CapabilityState;
|
|
66045
|
+
CreateAndUpdateAmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
66046
|
+
CreateAndUpdateAmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
66047
|
+
CreateAndUpdateAmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
66048
|
+
CreateAndUpdateAmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
66049
|
+
CreateAndUpdateAsanaAction?: CustomPermissions_CapabilityState;
|
|
66050
|
+
CreateAndUpdateBambooHRAction?: CustomPermissions_CapabilityState;
|
|
66051
|
+
CreateAndUpdateBoxAgentAction?: CustomPermissions_CapabilityState;
|
|
66052
|
+
CreateAndUpdateCanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
66053
|
+
CreateAndUpdateComprehendAction?: CustomPermissions_CapabilityState;
|
|
66054
|
+
CreateAndUpdateComprehendMedicalAction?: CustomPermissions_CapabilityState;
|
|
66055
|
+
CreateAndUpdateConfluenceAction?: CustomPermissions_CapabilityState;
|
|
65647
66056
|
CreateAndUpdateDashboardEmailReports?: CustomPermissions_CapabilityState;
|
|
65648
66057
|
CreateAndUpdateDatasets?: CustomPermissions_CapabilityState;
|
|
65649
66058
|
CreateAndUpdateDataSources?: CustomPermissions_CapabilityState;
|
|
66059
|
+
CreateAndUpdateFactSetAction?: CustomPermissions_CapabilityState;
|
|
66060
|
+
CreateAndUpdateGenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
66061
|
+
CreateAndUpdateGithubAction?: CustomPermissions_CapabilityState;
|
|
66062
|
+
CreateAndUpdateGoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
66063
|
+
CreateAndUpdateHubspotAction?: CustomPermissions_CapabilityState;
|
|
66064
|
+
CreateAndUpdateHuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
66065
|
+
CreateAndUpdateIntercomAction?: CustomPermissions_CapabilityState;
|
|
66066
|
+
CreateAndUpdateJiraAction?: CustomPermissions_CapabilityState;
|
|
66067
|
+
CreateAndUpdateKnowledgeBases?: CustomPermissions_CapabilityState;
|
|
66068
|
+
CreateAndUpdateLinearAction?: CustomPermissions_CapabilityState;
|
|
66069
|
+
CreateAndUpdateMCPAction?: CustomPermissions_CapabilityState;
|
|
66070
|
+
CreateAndUpdateMondayAction?: CustomPermissions_CapabilityState;
|
|
66071
|
+
CreateAndUpdateMSExchangeAction?: CustomPermissions_CapabilityState;
|
|
66072
|
+
CreateAndUpdateMSTeamsAction?: CustomPermissions_CapabilityState;
|
|
66073
|
+
CreateAndUpdateNewRelicAction?: CustomPermissions_CapabilityState;
|
|
66074
|
+
CreateAndUpdateNotionAction?: CustomPermissions_CapabilityState;
|
|
66075
|
+
CreateAndUpdateOneDriveAction?: CustomPermissions_CapabilityState;
|
|
66076
|
+
CreateAndUpdateOpenAPIAction?: CustomPermissions_CapabilityState;
|
|
66077
|
+
CreateAndUpdatePagerDutyAction?: CustomPermissions_CapabilityState;
|
|
66078
|
+
CreateAndUpdateSalesforceAction?: CustomPermissions_CapabilityState;
|
|
66079
|
+
CreateAndUpdateSandPGlobalEnergyAction?: CustomPermissions_CapabilityState;
|
|
66080
|
+
CreateAndUpdateSandPGMIAction?: CustomPermissions_CapabilityState;
|
|
66081
|
+
CreateAndUpdateSAPBillOfMaterialAction?: CustomPermissions_CapabilityState;
|
|
66082
|
+
CreateAndUpdateSAPBusinessPartnerAction?: CustomPermissions_CapabilityState;
|
|
66083
|
+
CreateAndUpdateSAPMaterialStockAction?: CustomPermissions_CapabilityState;
|
|
66084
|
+
CreateAndUpdateSAPPhysicalInventoryAction?: CustomPermissions_CapabilityState;
|
|
66085
|
+
CreateAndUpdateSAPProductMasterDataAction?: CustomPermissions_CapabilityState;
|
|
66086
|
+
CreateAndUpdateServiceNowAction?: CustomPermissions_CapabilityState;
|
|
66087
|
+
CreateAndUpdateSharePointAction?: CustomPermissions_CapabilityState;
|
|
66088
|
+
CreateAndUpdateSlackAction?: CustomPermissions_CapabilityState;
|
|
66089
|
+
CreateAndUpdateSmartsheetAction?: CustomPermissions_CapabilityState;
|
|
66090
|
+
CreateAndUpdateTextractAction?: CustomPermissions_CapabilityState;
|
|
65650
66091
|
CreateAndUpdateThemes?: CustomPermissions_CapabilityState;
|
|
65651
66092
|
CreateAndUpdateThresholdAlerts?: CustomPermissions_CapabilityState;
|
|
66093
|
+
CreateAndUpdateZendeskAction?: CustomPermissions_CapabilityState;
|
|
65652
66094
|
CreateChatAgents?: CustomPermissions_CapabilityState;
|
|
66095
|
+
CreateDashboardExecutiveSummaryWithQ?: CustomPermissions_CapabilityState;
|
|
65653
66096
|
CreateSharedFolders?: CustomPermissions_CapabilityState;
|
|
65654
66097
|
CreateSPICEDataset?: CustomPermissions_CapabilityState;
|
|
65655
66098
|
Dashboard?: CustomPermissions_CapabilityState;
|
|
66099
|
+
EditVisualWithQ?: CustomPermissions_CapabilityState;
|
|
65656
66100
|
ExportToCsv?: CustomPermissions_CapabilityState;
|
|
65657
66101
|
ExportToCsvInScheduledReports?: CustomPermissions_CapabilityState;
|
|
65658
66102
|
ExportToExcel?: CustomPermissions_CapabilityState;
|
|
65659
66103
|
ExportToExcelInScheduledReports?: CustomPermissions_CapabilityState;
|
|
65660
66104
|
ExportToPdf?: CustomPermissions_CapabilityState;
|
|
65661
66105
|
ExportToPdfInScheduledReports?: CustomPermissions_CapabilityState;
|
|
66106
|
+
Extension?: CustomPermissions_CapabilityState;
|
|
66107
|
+
FactSetAction?: CustomPermissions_CapabilityState;
|
|
65662
66108
|
Flow?: CustomPermissions_CapabilityState;
|
|
66109
|
+
GenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
66110
|
+
GithubAction?: CustomPermissions_CapabilityState;
|
|
66111
|
+
GoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
66112
|
+
HubspotAction?: CustomPermissions_CapabilityState;
|
|
66113
|
+
HuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
65663
66114
|
IncludeContentInScheduledReportsEmail?: CustomPermissions_CapabilityState;
|
|
66115
|
+
IntercomAction?: CustomPermissions_CapabilityState;
|
|
66116
|
+
JiraAction?: CustomPermissions_CapabilityState;
|
|
65664
66117
|
KnowledgeBase?: CustomPermissions_CapabilityState;
|
|
66118
|
+
LinearAction?: CustomPermissions_CapabilityState;
|
|
66119
|
+
ManageSharedFolders?: CustomPermissions_CapabilityState;
|
|
66120
|
+
MCPAction?: CustomPermissions_CapabilityState;
|
|
66121
|
+
MondayAction?: CustomPermissions_CapabilityState;
|
|
66122
|
+
MSExchangeAction?: CustomPermissions_CapabilityState;
|
|
66123
|
+
MSTeamsAction?: CustomPermissions_CapabilityState;
|
|
66124
|
+
NewRelicAction?: CustomPermissions_CapabilityState;
|
|
66125
|
+
NotionAction?: CustomPermissions_CapabilityState;
|
|
66126
|
+
OneDriveAction?: CustomPermissions_CapabilityState;
|
|
66127
|
+
OpenAPIAction?: CustomPermissions_CapabilityState;
|
|
66128
|
+
PagerDutyAction?: CustomPermissions_CapabilityState;
|
|
65665
66129
|
PerformFlowUiTask?: CustomPermissions_CapabilityState;
|
|
65666
66130
|
PrintReports?: CustomPermissions_CapabilityState;
|
|
65667
66131
|
PublishWithoutApproval?: CustomPermissions_CapabilityState;
|
|
65668
66132
|
RenameSharedFolders?: CustomPermissions_CapabilityState;
|
|
65669
66133
|
Research?: CustomPermissions_CapabilityState;
|
|
66134
|
+
SalesforceAction?: CustomPermissions_CapabilityState;
|
|
66135
|
+
SandPGlobalEnergyAction?: CustomPermissions_CapabilityState;
|
|
66136
|
+
SandPGMIAction?: CustomPermissions_CapabilityState;
|
|
66137
|
+
SAPBillOfMaterialAction?: CustomPermissions_CapabilityState;
|
|
66138
|
+
SAPBusinessPartnerAction?: CustomPermissions_CapabilityState;
|
|
66139
|
+
SAPMaterialStockAction?: CustomPermissions_CapabilityState;
|
|
66140
|
+
SAPPhysicalInventoryAction?: CustomPermissions_CapabilityState;
|
|
66141
|
+
SAPProductMasterDataAction?: CustomPermissions_CapabilityState;
|
|
66142
|
+
ServiceNowAction?: CustomPermissions_CapabilityState;
|
|
66143
|
+
ShareAmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
66144
|
+
ShareAmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
66145
|
+
ShareAmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
66146
|
+
ShareAmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
65670
66147
|
ShareAnalyses?: CustomPermissions_CapabilityState;
|
|
66148
|
+
ShareAsanaAction?: CustomPermissions_CapabilityState;
|
|
66149
|
+
ShareBambooHRAction?: CustomPermissions_CapabilityState;
|
|
66150
|
+
ShareBoxAgentAction?: CustomPermissions_CapabilityState;
|
|
66151
|
+
ShareCanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
66152
|
+
ShareComprehendAction?: CustomPermissions_CapabilityState;
|
|
66153
|
+
ShareComprehendMedicalAction?: CustomPermissions_CapabilityState;
|
|
66154
|
+
ShareConfluenceAction?: CustomPermissions_CapabilityState;
|
|
65671
66155
|
ShareDashboards?: CustomPermissions_CapabilityState;
|
|
65672
66156
|
ShareDatasets?: CustomPermissions_CapabilityState;
|
|
65673
66157
|
ShareDataSources?: CustomPermissions_CapabilityState;
|
|
66158
|
+
ShareFactSetAction?: CustomPermissions_CapabilityState;
|
|
66159
|
+
ShareGenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
66160
|
+
ShareGithubAction?: CustomPermissions_CapabilityState;
|
|
66161
|
+
ShareGoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
66162
|
+
ShareHubspotAction?: CustomPermissions_CapabilityState;
|
|
66163
|
+
ShareHuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
66164
|
+
ShareIntercomAction?: CustomPermissions_CapabilityState;
|
|
66165
|
+
ShareJiraAction?: CustomPermissions_CapabilityState;
|
|
66166
|
+
ShareKnowledgeBases?: CustomPermissions_CapabilityState;
|
|
66167
|
+
ShareLinearAction?: CustomPermissions_CapabilityState;
|
|
66168
|
+
ShareMCPAction?: CustomPermissions_CapabilityState;
|
|
66169
|
+
ShareMondayAction?: CustomPermissions_CapabilityState;
|
|
66170
|
+
ShareMSExchangeAction?: CustomPermissions_CapabilityState;
|
|
66171
|
+
ShareMSTeamsAction?: CustomPermissions_CapabilityState;
|
|
66172
|
+
ShareNewRelicAction?: CustomPermissions_CapabilityState;
|
|
66173
|
+
ShareNotionAction?: CustomPermissions_CapabilityState;
|
|
66174
|
+
ShareOneDriveAction?: CustomPermissions_CapabilityState;
|
|
66175
|
+
ShareOpenAPIAction?: CustomPermissions_CapabilityState;
|
|
66176
|
+
SharePagerDutyAction?: CustomPermissions_CapabilityState;
|
|
66177
|
+
SharePointAction?: CustomPermissions_CapabilityState;
|
|
66178
|
+
ShareSalesforceAction?: CustomPermissions_CapabilityState;
|
|
66179
|
+
ShareSandPGlobalEnergyAction?: CustomPermissions_CapabilityState;
|
|
66180
|
+
ShareSandPGMIAction?: CustomPermissions_CapabilityState;
|
|
66181
|
+
ShareSAPBillOfMaterialAction?: CustomPermissions_CapabilityState;
|
|
66182
|
+
ShareSAPBusinessPartnerAction?: CustomPermissions_CapabilityState;
|
|
66183
|
+
ShareSAPMaterialStockAction?: CustomPermissions_CapabilityState;
|
|
66184
|
+
ShareSAPPhysicalInventoryAction?: CustomPermissions_CapabilityState;
|
|
66185
|
+
ShareSAPProductMasterDataAction?: CustomPermissions_CapabilityState;
|
|
66186
|
+
ShareServiceNowAction?: CustomPermissions_CapabilityState;
|
|
66187
|
+
ShareSharePointAction?: CustomPermissions_CapabilityState;
|
|
66188
|
+
ShareSlackAction?: CustomPermissions_CapabilityState;
|
|
66189
|
+
ShareSmartsheetAction?: CustomPermissions_CapabilityState;
|
|
66190
|
+
ShareTextractAction?: CustomPermissions_CapabilityState;
|
|
66191
|
+
ShareZendeskAction?: CustomPermissions_CapabilityState;
|
|
66192
|
+
SlackAction?: CustomPermissions_CapabilityState;
|
|
66193
|
+
SmartsheetAction?: CustomPermissions_CapabilityState;
|
|
65674
66194
|
Space?: CustomPermissions_CapabilityState;
|
|
65675
66195
|
SubscribeDashboardEmailReports?: CustomPermissions_CapabilityState;
|
|
66196
|
+
TextractAction?: CustomPermissions_CapabilityState;
|
|
66197
|
+
Topic?: CustomPermissions_CapabilityState;
|
|
65676
66198
|
UseAgentWebSearch?: CustomPermissions_CapabilityState;
|
|
66199
|
+
UseAmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
66200
|
+
UseAmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
66201
|
+
UseAmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
66202
|
+
UseAmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
66203
|
+
UseAsanaAction?: CustomPermissions_CapabilityState;
|
|
66204
|
+
UseBambooHRAction?: CustomPermissions_CapabilityState;
|
|
65677
66205
|
UseBedrockModels?: CustomPermissions_CapabilityState;
|
|
66206
|
+
UseBoxAgentAction?: CustomPermissions_CapabilityState;
|
|
66207
|
+
UseCanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
66208
|
+
UseComprehendAction?: CustomPermissions_CapabilityState;
|
|
66209
|
+
UseComprehendMedicalAction?: CustomPermissions_CapabilityState;
|
|
66210
|
+
UseConfluenceAction?: CustomPermissions_CapabilityState;
|
|
66211
|
+
UseFactSetAction?: CustomPermissions_CapabilityState;
|
|
66212
|
+
UseGenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
66213
|
+
UseGithubAction?: CustomPermissions_CapabilityState;
|
|
66214
|
+
UseGoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
66215
|
+
UseHubspotAction?: CustomPermissions_CapabilityState;
|
|
66216
|
+
UseHuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
66217
|
+
UseIntercomAction?: CustomPermissions_CapabilityState;
|
|
66218
|
+
UseJiraAction?: CustomPermissions_CapabilityState;
|
|
66219
|
+
UseLinearAction?: CustomPermissions_CapabilityState;
|
|
66220
|
+
UseMCPAction?: CustomPermissions_CapabilityState;
|
|
66221
|
+
UseMondayAction?: CustomPermissions_CapabilityState;
|
|
66222
|
+
UseMSExchangeAction?: CustomPermissions_CapabilityState;
|
|
66223
|
+
UseMSTeamsAction?: CustomPermissions_CapabilityState;
|
|
66224
|
+
UseNewRelicAction?: CustomPermissions_CapabilityState;
|
|
66225
|
+
UseNotionAction?: CustomPermissions_CapabilityState;
|
|
66226
|
+
UseOneDriveAction?: CustomPermissions_CapabilityState;
|
|
66227
|
+
UseOpenAPIAction?: CustomPermissions_CapabilityState;
|
|
66228
|
+
UsePagerDutyAction?: CustomPermissions_CapabilityState;
|
|
66229
|
+
UseSalesforceAction?: CustomPermissions_CapabilityState;
|
|
66230
|
+
UseSandPGlobalEnergyAction?: CustomPermissions_CapabilityState;
|
|
66231
|
+
UseSandPGMIAction?: CustomPermissions_CapabilityState;
|
|
66232
|
+
UseSAPBillOfMaterialAction?: CustomPermissions_CapabilityState;
|
|
66233
|
+
UseSAPBusinessPartnerAction?: CustomPermissions_CapabilityState;
|
|
66234
|
+
UseSAPMaterialStockAction?: CustomPermissions_CapabilityState;
|
|
66235
|
+
UseSAPPhysicalInventoryAction?: CustomPermissions_CapabilityState;
|
|
66236
|
+
UseSAPProductMasterDataAction?: CustomPermissions_CapabilityState;
|
|
66237
|
+
UseServiceNowAction?: CustomPermissions_CapabilityState;
|
|
66238
|
+
UseSharePointAction?: CustomPermissions_CapabilityState;
|
|
66239
|
+
UseSlackAction?: CustomPermissions_CapabilityState;
|
|
66240
|
+
UseSmartsheetAction?: CustomPermissions_CapabilityState;
|
|
66241
|
+
UseTextractAction?: CustomPermissions_CapabilityState;
|
|
66242
|
+
UseZendeskAction?: CustomPermissions_CapabilityState;
|
|
65678
66243
|
ViewAccountSPICECapacity?: CustomPermissions_CapabilityState;
|
|
66244
|
+
ZendeskAction?: CustomPermissions_CapabilityState;
|
|
65679
66245
|
});
|
|
65680
66246
|
}
|
|
65681
66247
|
|
|
@@ -73137,6 +73703,7 @@ export declare class DistributionConfig {
|
|
|
73137
73703
|
CNAMEs?: string[];
|
|
73138
73704
|
/** A comment to describe the distribution. The comment cannot be longer than 128 characters. */
|
|
73139
73705
|
Comment?: string;
|
|
73706
|
+
/** The distribution's connection function association. */
|
|
73140
73707
|
ConnectionFunctionAssociation?: CfDistribution_ConnectionFunctionAssociation;
|
|
73141
73708
|
/** This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants (tenant-only). */
|
|
73142
73709
|
ConnectionMode?: CfDistribution_ConnectionMode;
|
|
@@ -73200,6 +73767,7 @@ export declare class DistributionConfig {
|
|
|
73200
73767
|
TenantConfig?: Record<string, unknown>;
|
|
73201
73768
|
/** A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers. */
|
|
73202
73769
|
ViewerCertificate?: CfDistribution_ViewerCertificate;
|
|
73770
|
+
/** The distribution's viewer mTLS configuration. */
|
|
73203
73771
|
ViewerMtlsConfig?: CfDistribution_ViewerMtlsConfig;
|
|
73204
73772
|
/** Multi-tenant distributions only support WAF V2 web ACLs.
|
|
73205
73773
|
A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example ``arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``. To specify a web ACL created using WAF Classic, use the ACL ID, for example ``a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``.
|
|
@@ -75462,6 +76030,7 @@ export declare class ECSCapacityProvider_InstanceLaunchTemplate {
|
|
|
75462
76030
|
CapacityOptionType?: "ON_DEMAND" | "RESERVED" | "SPOT";
|
|
75463
76031
|
CapacityReservations?: ECSCapacityProvider_CapacityReservationRequest;
|
|
75464
76032
|
FipsEnabled?: boolean;
|
|
76033
|
+
InstanceMetadataTagsPropagation?: boolean;
|
|
75465
76034
|
InstanceRequirements?: ECSCapacityProvider_InstanceRequirementsRequest;
|
|
75466
76035
|
Monitoring?: ECSCapacityProvider_ManagedInstancesMonitoringOptions;
|
|
75467
76036
|
StorageConfiguration?: ECSCapacityProvider_ManagedInstancesStorageConfiguration;
|
|
@@ -77581,9 +78150,13 @@ export declare class EmergencyContact {
|
|
|
77581
78150
|
|
|
77582
78151
|
export declare class EMRCluster_Application {
|
|
77583
78152
|
constructor(props: {
|
|
78153
|
+
/** This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes. */
|
|
77584
78154
|
AdditionalInfo?: Record<string, unknown>;
|
|
78155
|
+
/** Arguments for Amazon EMR to pass to the application */
|
|
77585
78156
|
Args?: string[];
|
|
78157
|
+
/** The name of the application. */
|
|
77586
78158
|
Name?: string;
|
|
78159
|
+
/** The version of the application. */
|
|
77587
78160
|
Version?: string;
|
|
77588
78161
|
});
|
|
77589
78162
|
}
|
|
@@ -77597,12 +78170,14 @@ export declare class EMRCluster_AutoScalingPolicy {
|
|
|
77597
78170
|
|
|
77598
78171
|
export declare class EMRCluster_AutoTerminationPolicy {
|
|
77599
78172
|
constructor(props: {
|
|
78173
|
+
/** Specifies the amount of idle time in seconds after which the cluster automatically terminates. You can specify a minimum of 60 seconds and a maximum of 604800 seconds (seven days) */
|
|
77600
78174
|
IdleTimeout?: number;
|
|
77601
78175
|
});
|
|
77602
78176
|
}
|
|
77603
78177
|
|
|
77604
78178
|
export declare class EMRCluster_BootstrapActionConfig {
|
|
77605
78179
|
constructor(props: {
|
|
78180
|
+
/** The name of the bootstrap action. */
|
|
77606
78181
|
Name: string;
|
|
77607
78182
|
ScriptBootstrapAction: EMRCluster_ScriptBootstrapActionConfig;
|
|
77608
78183
|
});
|
|
@@ -77610,39 +78185,60 @@ export declare class EMRCluster_BootstrapActionConfig {
|
|
|
77610
78185
|
|
|
77611
78186
|
export declare class EMRCluster_CloudWatchAlarmDefinition {
|
|
77612
78187
|
constructor(props: {
|
|
77613
|
-
|
|
78188
|
+
/** Determines how the metric specified by MetricName is compared to the value specified by Threshold. */
|
|
78189
|
+
ComparisonOperator: "GREATER_THAN" | "GREATER_THAN_OR_EQUAL" | "LESS_THAN" | "LESS_THAN_OR_EQUAL";
|
|
78190
|
+
/** The name of the CloudWatch metric that is watched to determine an alarm condition. */
|
|
77614
78191
|
MetricName: string;
|
|
78192
|
+
/** The period, in seconds, over which the statistic is applied. EMR CloudWatch metrics are emitted every five minutes (300 seconds), so if an EMR CloudWatch metric is specified, specify 300. */
|
|
77615
78193
|
Period: number;
|
|
78194
|
+
/** The value against which the specified statistic is compared. */
|
|
77616
78195
|
Threshold: number;
|
|
77617
78196
|
Dimensions?: EMRCluster_MetricDimension[];
|
|
78197
|
+
/** The number of periods, in five-minute increments, during which the alarm condition must exist before the alarm triggers automatic scaling activity. The default value is 1. */
|
|
77618
78198
|
EvaluationPeriods?: number;
|
|
78199
|
+
/** The namespace for the CloudWatch metric. The default is AWS/ElasticMapReduce. */
|
|
77619
78200
|
Namespace?: string;
|
|
77620
|
-
|
|
77621
|
-
|
|
78201
|
+
/** The statistic to apply to the metric associated with the alarm. The default is AVERAGE. */
|
|
78202
|
+
Statistic?: "AVERAGE" | "MAXIMUM" | "MINIMUM" | "SAMPLE_COUNT" | "SUM";
|
|
78203
|
+
/** The unit of measure associated with the CloudWatch metric being watched. The value specified for Unit must correspond to the units specified in the CloudWatch metric. */
|
|
78204
|
+
Unit?: "BITS" | "BITS_PER_SECOND" | "BYTES" | "BYTES_PER_SECOND" | "COUNT" | "COUNT_PER_SECOND" | "GIGA_BITS" | "GIGA_BITS_PER_SECOND" | "GIGA_BYTES" | "GIGA_BYTES_PER_SECOND" | "KILO_BITS" | "KILO_BITS_PER_SECOND" | "KILO_BYTES" | "KILO_BYTES_PER_SECOND" | "MEGA_BITS" | "MEGA_BITS_PER_SECOND" | "MEGA_BYTES" | "MEGA_BYTES_PER_SECOND" | "MICRO_SECONDS" | "MILLI_SECONDS" | "NONE" | "PERCENT" | "SECONDS" | "TERA_BITS" | "TERA_BITS_PER_SECOND" | "TERA_BYTES" | "TERA_BYTES_PER_SECOND";
|
|
78205
|
+
});
|
|
78206
|
+
}
|
|
78207
|
+
|
|
78208
|
+
export declare class EMRCluster_CloudWatchLogConfiguration {
|
|
78209
|
+
constructor(props: {
|
|
78210
|
+
/** Specifies if CloudWatch logging is enabled. */
|
|
78211
|
+
Enabled: boolean;
|
|
78212
|
+
/** The ARN of the encryption key used to encrypt the logs. */
|
|
78213
|
+
EncryptionKeyArn?: string;
|
|
78214
|
+
/** The name of the CloudWatch log group where logs are published. */
|
|
78215
|
+
LogGroupName?: string;
|
|
78216
|
+
/** The prefix of the log stream name. */
|
|
78217
|
+
LogStreamNamePrefix?: string;
|
|
78218
|
+
/** A map of log types to file names for publishing logs to the standard output or standard error streams for CloudWatch. Valid log types include STEP_LOGS, SPARK_DRIVER, and SPARK_EXECUTOR. Valid file names for each type include STDOUT and STDERR. */
|
|
78219
|
+
LogTypes?: Record<string, unknown>;
|
|
77622
78220
|
});
|
|
77623
78221
|
}
|
|
77624
78222
|
|
|
77625
78223
|
export declare class EMRCluster_ComputeLimits {
|
|
77626
78224
|
constructor(props: {
|
|
78225
|
+
/** The upper boundary of EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. Managed scaling activities are not allowed beyond this boundary. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration. */
|
|
77627
78226
|
MaximumCapacityUnits: number;
|
|
78227
|
+
/** The lower boundary of EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. Managed scaling activities are not allowed beyond this boundary. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration. */
|
|
77628
78228
|
MinimumCapacityUnits: number;
|
|
77629
|
-
|
|
78229
|
+
/** The unit type used for specifying a managed scaling policy. */
|
|
78230
|
+
UnitType: "InstanceFleetUnits" | "Instances" | "VCPU";
|
|
78231
|
+
/** The upper boundary of EC2 units for core node type in a cluster. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. The core units are not allowed to scale beyond this boundary. The parameter is used to split capacity allocation between core and task nodes. */
|
|
77630
78232
|
MaximumCoreCapacityUnits?: number;
|
|
78233
|
+
/** The upper boundary of On-Demand EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. The On-Demand units are not allowed to scale beyond this boundary. The parameter is used to split capacity allocation between On-Demand and Spot Instances. */
|
|
77631
78234
|
MaximumOnDemandCapacityUnits?: number;
|
|
77632
78235
|
});
|
|
77633
78236
|
}
|
|
77634
78237
|
|
|
77635
|
-
export declare class EMRCluster_Configuration {
|
|
77636
|
-
constructor(props: {
|
|
77637
|
-
Classification?: string;
|
|
77638
|
-
ConfigurationProperties?: Record<string, unknown>;
|
|
77639
|
-
Configurations?: EMRCluster_Configuration[];
|
|
77640
|
-
});
|
|
77641
|
-
}
|
|
77642
|
-
|
|
77643
78238
|
export declare class EMRCluster_EbsBlockDeviceConfig {
|
|
77644
78239
|
constructor(props: {
|
|
77645
78240
|
VolumeSpecification: EMRCluster_VolumeSpecification;
|
|
78241
|
+
/** Number of EBS volumes with a specific volume configuration that are associated with every instance in the instance group */
|
|
77646
78242
|
VolumesPerInstance?: number;
|
|
77647
78243
|
});
|
|
77648
78244
|
}
|
|
@@ -77650,15 +78246,28 @@ export declare class EMRCluster_EbsBlockDeviceConfig {
|
|
|
77650
78246
|
export declare class EMRCluster_EbsConfiguration {
|
|
77651
78247
|
constructor(props: {
|
|
77652
78248
|
EbsBlockDeviceConfigs?: EMRCluster_EbsBlockDeviceConfig[];
|
|
78249
|
+
/** Indicates whether an Amazon EBS volume is EBS-optimized. */
|
|
77653
78250
|
EbsOptimized?: boolean;
|
|
77654
78251
|
});
|
|
77655
78252
|
}
|
|
77656
78253
|
|
|
78254
|
+
export declare class EMRCluster_EMRConfiguration {
|
|
78255
|
+
constructor(props: {
|
|
78256
|
+
/** The classification within a configuration. */
|
|
78257
|
+
Classification?: string;
|
|
78258
|
+
ConfigurationProperties?: Record<string, unknown>;
|
|
78259
|
+
Configurations?: EMRCluster_EMRConfiguration[];
|
|
78260
|
+
});
|
|
78261
|
+
}
|
|
78262
|
+
|
|
77657
78263
|
export declare class EMRCluster_HadoopJarStepConfig {
|
|
77658
78264
|
constructor(props: {
|
|
78265
|
+
/** A path to a JAR file run during the step. */
|
|
77659
78266
|
Jar: string;
|
|
77660
78267
|
Args?: string[];
|
|
78268
|
+
/** The name of the main class in the specified Java file. If not specified, the JAR file should specify a Main-Class in its manifest file. */
|
|
77661
78269
|
MainClass?: string;
|
|
78270
|
+
/** A list of Java properties that are set when the step runs. You can use these properties to pass key-value pairs to your main function. */
|
|
77662
78271
|
StepProperties?: EMRCluster_KeyValue[];
|
|
77663
78272
|
});
|
|
77664
78273
|
}
|
|
@@ -77667,9 +78276,12 @@ export declare class EMRCluster_InstanceFleetConfig {
|
|
|
77667
78276
|
constructor(props: {
|
|
77668
78277
|
InstanceTypeConfigs?: EMRCluster_InstanceTypeConfig[];
|
|
77669
78278
|
LaunchSpecifications?: EMRCluster_InstanceFleetProvisioningSpecifications;
|
|
78279
|
+
/** The friendly name of the instance fleet. */
|
|
77670
78280
|
Name?: string;
|
|
77671
78281
|
ResizeSpecifications?: EMRCluster_InstanceFleetResizingSpecifications;
|
|
78282
|
+
/** The target capacity of On-Demand units for the instance fleet, which determines how many On-Demand Instances to provision */
|
|
77672
78283
|
TargetOnDemandCapacity?: number;
|
|
78284
|
+
/** The target capacity of Spot units for the instance fleet, which determines how many Spot Instances to provision. */
|
|
77673
78285
|
TargetSpotCapacity?: number;
|
|
77674
78286
|
});
|
|
77675
78287
|
}
|
|
@@ -77690,61 +78302,99 @@ export declare class EMRCluster_InstanceFleetResizingSpecifications {
|
|
|
77690
78302
|
|
|
77691
78303
|
export declare class EMRCluster_InstanceGroupConfig {
|
|
77692
78304
|
constructor(props: {
|
|
78305
|
+
/** Target number of instances for the instance group. */
|
|
77693
78306
|
InstanceCount: number;
|
|
78307
|
+
/** The EC2 instance type for all instances in the instance group. */
|
|
77694
78308
|
InstanceType: string;
|
|
78309
|
+
/** An automatic scaling policy for a core instance group or task instance group in an Amazon EMR cluster. The automatic scaling policy defines how an instance group dynamically adds and terminates EC2 instances in response to the value of a CloudWatch metric. */
|
|
77695
78310
|
AutoScalingPolicy?: EMRCluster_AutoScalingPolicy;
|
|
78311
|
+
/** If specified, indicates that the instance group uses Spot Instances. This is the maximum price you are willing to pay for Spot Instances. Specify OnDemandPrice to set the amount equal to the On-Demand price, or specify an amount in USD. */
|
|
77696
78312
|
BidPrice?: string;
|
|
77697
|
-
|
|
78313
|
+
/** The list of configurations supplied for an EMR cluster instance group. You can specify a separate configuration for each instance group (master, core, and task). */
|
|
78314
|
+
Configurations?: EMRCluster_EMRConfiguration[];
|
|
78315
|
+
/** The custom AMI ID to use for the provisioned instance group. */
|
|
77698
78316
|
CustomAmiId?: string;
|
|
78317
|
+
/** EBS configurations that will be attached to each EC2 instance in the instance group. */
|
|
77699
78318
|
EbsConfiguration?: EMRCluster_EbsConfiguration;
|
|
77700
|
-
Market
|
|
78319
|
+
/** Market type of the EC2 instances used to create a cluster node. */
|
|
78320
|
+
Market?: "ON_DEMAND" | "SPOT";
|
|
78321
|
+
/** Friendly name given to the instance group. */
|
|
77701
78322
|
Name?: string;
|
|
77702
78323
|
});
|
|
77703
78324
|
}
|
|
77704
78325
|
|
|
77705
78326
|
export declare class EMRCluster_InstanceTypeConfig {
|
|
77706
78327
|
constructor(props: {
|
|
78328
|
+
/** An EC2 instance type, such as m3.xlarge. */
|
|
77707
78329
|
InstanceType: string;
|
|
78330
|
+
/** The bid price for each EC2 Spot Instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%. */
|
|
77708
78331
|
BidPrice?: string;
|
|
78332
|
+
/** The bid price, as a percentage of On-Demand price, for each EC2 Spot Instance as defined by InstanceType. Expressed as a number (for example, 20 specifies 20%). If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%. */
|
|
77709
78333
|
BidPriceAsPercentageOfOnDemandPrice?: number;
|
|
77710
|
-
|
|
78334
|
+
/** A configuration classification that applies when provisioning cluster instances, which can include configurations for applications and software that run on the cluster. */
|
|
78335
|
+
Configurations?: EMRCluster_EMRConfiguration[];
|
|
78336
|
+
/** The custom AMI ID to use for the instance type. */
|
|
77711
78337
|
CustomAmiId?: string;
|
|
78338
|
+
/** The configuration of Amazon Elastic Block Store (Amazon EBS) attached to each instance as defined by InstanceType. */
|
|
77712
78339
|
EbsConfiguration?: EMRCluster_EbsConfiguration;
|
|
78340
|
+
/** The priority at which Amazon EMR launches the Amazon EC2 instances with this instance type. Priority starts at 0, which is the highest priority. Amazon EMR considers the highest priority first. */
|
|
77713
78341
|
Priority?: number;
|
|
78342
|
+
/** The number of units that a provisioned instance of this type provides toward fulfilling the target capacities defined in InstanceFleetConfig. This value is 1 for a master instance fleet, and must be 1 or greater for core and task instance fleets. Defaults to 1 if not specified. */
|
|
77714
78343
|
WeightedCapacity?: number;
|
|
77715
78344
|
});
|
|
77716
78345
|
}
|
|
77717
78346
|
|
|
77718
78347
|
export declare class EMRCluster_JobFlowInstancesConfig {
|
|
77719
78348
|
constructor(props: {
|
|
78349
|
+
/** A list of additional Amazon EC2 security group IDs for the master node. */
|
|
77720
78350
|
AdditionalMasterSecurityGroups?: string[];
|
|
78351
|
+
/** A list of additional Amazon EC2 security group IDs for the core and task nodes. */
|
|
77721
78352
|
AdditionalSlaveSecurityGroups?: string[];
|
|
77722
78353
|
CoreInstanceFleet?: EMRCluster_InstanceFleetConfig;
|
|
78354
|
+
/** Configuration for the instance groups in a cluster. */
|
|
77723
78355
|
CoreInstanceGroup?: EMRCluster_InstanceGroupConfig;
|
|
78356
|
+
/** The name of the EC2 key pair that can be used to connect to the master node using SSH as the user called 'hadoop'. */
|
|
77724
78357
|
Ec2KeyName?: string;
|
|
78358
|
+
/** Applies to clusters that use the uniform instance group configuration. To launch the cluster in Amazon Virtual Private Cloud (Amazon VPC), set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If you do not specify this value and your account supports EC2-Classic, the cluster launches in EC2-Classic. */
|
|
77725
78359
|
Ec2SubnetId?: string;
|
|
78360
|
+
/** Applies to clusters that use the instance fleet configuration. When multiple EC2 subnet IDs are specified, Amazon EMR evaluates them and launches instances in the optimal subnet. */
|
|
77726
78361
|
Ec2SubnetIds?: string[];
|
|
78362
|
+
/** The identifier of the Amazon EC2 security group for the master node. If you specify EmrManagedMasterSecurityGroup, you must also specify EmrManagedSlaveSecurityGroup. */
|
|
77727
78363
|
EmrManagedMasterSecurityGroup?: string;
|
|
78364
|
+
/** The identifier of the Amazon EC2 security group for the core and task nodes. If you specify EmrManagedSlaveSecurityGroup, you must also specify EmrManagedMasterSecurityGroup. */
|
|
77728
78365
|
EmrManagedSlaveSecurityGroup?: string;
|
|
78366
|
+
/** Applies only to Amazon EMR release versions earlier than 4.0. The Hadoop version for the cluster. Valid inputs are "0.18" (no longer maintained), "0.20" (no longer maintained), "0.20.205" (no longer maintained), "1.0.3", "2.2.0", or "2.4.0". If you do not set this value, the default of 0.18 is used, unless the AmiVersion parameter is set in the RunJobFlow call, in which case the default version of Hadoop for that AMI version is used. */
|
|
77729
78367
|
HadoopVersion?: string;
|
|
78368
|
+
/** Specifies whether the cluster should remain available after completing all steps. Defaults to true. For more information about configuring cluster termination, see Control Cluster Termination in the EMR Management Guide. */
|
|
77730
78369
|
KeepJobFlowAliveWhenNoSteps?: boolean;
|
|
77731
78370
|
MasterInstanceFleet?: EMRCluster_InstanceFleetConfig;
|
|
78371
|
+
/** Configuration for the instance groups in a cluster. */
|
|
77732
78372
|
MasterInstanceGroup?: EMRCluster_InstanceGroupConfig;
|
|
78373
|
+
/** The Availability Zone in which the cluster runs. */
|
|
77733
78374
|
Placement?: EMRCluster_PlacementType;
|
|
78375
|
+
/** The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC private subnets. */
|
|
77734
78376
|
ServiceAccessSecurityGroup?: string;
|
|
77735
78377
|
TaskInstanceFleets?: EMRCluster_InstanceFleetConfig[];
|
|
78378
|
+
/** Configuration for the instance groups in a cluster. */
|
|
77736
78379
|
TaskInstanceGroups?: EMRCluster_InstanceGroupConfig[];
|
|
78380
|
+
/** Specifies whether to lock the cluster to prevent the Amazon EC2 instances from being terminated by API call, user intervention, or in the event of a job-flow error. */
|
|
77737
78381
|
TerminationProtected?: boolean;
|
|
78382
|
+
/** Indicates whether Amazon EMR should gracefully replace core nodes that have degraded within the cluster. */
|
|
77738
78383
|
UnhealthyNodeReplacement?: boolean;
|
|
77739
78384
|
});
|
|
77740
78385
|
}
|
|
77741
78386
|
|
|
77742
78387
|
export declare class EMRCluster_KerberosAttributes {
|
|
77743
78388
|
constructor(props: {
|
|
78389
|
+
/** The password used within the cluster for the kadmin service on the cluster-dedicated KDC, which maintains Kerberos principals, password policies, and keytabs for the cluster. */
|
|
77744
78390
|
KdcAdminPassword: string;
|
|
78391
|
+
/** The name of the Kerberos realm to which all nodes in a cluster belong. For example, EC2.INTERNAL. */
|
|
77745
78392
|
Realm: string;
|
|
78393
|
+
/** The Active Directory password for ADDomainJoinUser. */
|
|
77746
78394
|
ADDomainJoinPassword?: string;
|
|
78395
|
+
/** Required only when establishing a cross-realm trust with an Active Directory domain. A user with sufficient privileges to join resources to the domain. */
|
|
77747
78396
|
ADDomainJoinUser?: string;
|
|
78397
|
+
/** Required only when establishing a cross-realm trust with a KDC in a different realm. The cross-realm principal password, which must be identical across realms. */
|
|
77748
78398
|
CrossRealmTrustPrincipalPassword?: string;
|
|
77749
78399
|
});
|
|
77750
78400
|
}
|
|
@@ -77771,16 +78421,25 @@ export declare class EMRCluster_MetricDimension {
|
|
|
77771
78421
|
});
|
|
77772
78422
|
}
|
|
77773
78423
|
|
|
78424
|
+
export declare class EMRCluster_MonitoringConfiguration {
|
|
78425
|
+
constructor(props: {
|
|
78426
|
+
CloudWatchLogConfiguration?: EMRCluster_CloudWatchLogConfiguration;
|
|
78427
|
+
});
|
|
78428
|
+
}
|
|
78429
|
+
|
|
77774
78430
|
export declare class EMRCluster_OnDemandCapacityReservationOptions {
|
|
77775
78431
|
constructor(props: {
|
|
78432
|
+
/** Supported values: none, open */
|
|
77776
78433
|
CapacityReservationPreference?: string;
|
|
77777
78434
|
CapacityReservationResourceGroupArn?: string;
|
|
78435
|
+
/** Supported values: use-capacity-reservations-first */
|
|
77778
78436
|
UsageStrategy?: string;
|
|
77779
78437
|
});
|
|
77780
78438
|
}
|
|
77781
78439
|
|
|
77782
78440
|
export declare class EMRCluster_OnDemandProvisioningSpecification {
|
|
77783
78441
|
constructor(props: {
|
|
78442
|
+
/** Specifies the strategy to use in launching On-Demand instance fleets. Currently, the only option is lowest-price (the default), which launches the lowest price first. */
|
|
77784
78443
|
AllocationStrategy: string;
|
|
77785
78444
|
CapacityReservationOptions?: EMRCluster_OnDemandCapacityReservationOptions;
|
|
77786
78445
|
});
|
|
@@ -77796,66 +78455,87 @@ export declare class EMRCluster_OnDemandResizingSpecification {
|
|
|
77796
78455
|
|
|
77797
78456
|
export declare class EMRCluster_PlacementGroupConfig {
|
|
77798
78457
|
constructor(props: {
|
|
77799
|
-
|
|
77800
|
-
|
|
78458
|
+
/** Role of the instance in the cluster. */
|
|
78459
|
+
InstanceRole: "CORE" | "MASTER" | "TASK";
|
|
78460
|
+
/** Amazon EC2 Placement Group strategy associated with instance role. */
|
|
78461
|
+
PlacementStrategy?: "CLUSTER" | "NONE" | "PARTITION" | "SPREAD";
|
|
77801
78462
|
});
|
|
77802
78463
|
}
|
|
77803
78464
|
|
|
77804
78465
|
export declare class EMRCluster_PlacementType {
|
|
77805
78466
|
constructor(props: {
|
|
78467
|
+
/** The Amazon EC2 Availability Zone for the cluster. AvailabilityZone is used for uniform instance groups, while AvailabilityZones (plural) is used for instance fleets. */
|
|
77806
78468
|
AvailabilityZone: string;
|
|
77807
78469
|
});
|
|
77808
78470
|
}
|
|
77809
78471
|
|
|
77810
78472
|
export declare class EMRCluster_ScalingAction {
|
|
77811
78473
|
constructor(props: {
|
|
78474
|
+
/** The type of adjustment the automatic scaling activity makes when triggered, and the periodicity of the adjustment. */
|
|
77812
78475
|
SimpleScalingPolicyConfiguration: EMRCluster_SimpleScalingPolicyConfiguration;
|
|
77813
|
-
|
|
78476
|
+
/** Not available for instance groups. Instance groups use the market type specified for the group. */
|
|
78477
|
+
Market?: "ON_DEMAND" | "SPOT";
|
|
77814
78478
|
});
|
|
77815
78479
|
}
|
|
77816
78480
|
|
|
77817
78481
|
export declare class EMRCluster_ScalingConstraints {
|
|
77818
78482
|
constructor(props: {
|
|
78483
|
+
/** The upper boundary of EC2 instances in an instance group beyond which scaling activities are not allowed to grow. Scale-out activities will not add instances beyond this boundary. */
|
|
77819
78484
|
MaxCapacity: number;
|
|
78485
|
+
/** The lower boundary of EC2 instances in an instance group below which scaling activities are not allowed to shrink. Scale-in activities will not terminate instances below this boundary. */
|
|
77820
78486
|
MinCapacity: number;
|
|
77821
78487
|
});
|
|
77822
78488
|
}
|
|
77823
78489
|
|
|
77824
78490
|
export declare class EMRCluster_ScalingRule {
|
|
77825
78491
|
constructor(props: {
|
|
78492
|
+
/** The conditions that trigger an automatic scaling activity. */
|
|
77826
78493
|
Action: EMRCluster_ScalingAction;
|
|
78494
|
+
/** The name used to identify an automatic scaling rule. Rule names must be unique within a scaling policy. */
|
|
77827
78495
|
Name: string;
|
|
78496
|
+
/** The CloudWatch alarm definition that determines when automatic scaling activity is triggered. */
|
|
77828
78497
|
Trigger: EMRCluster_ScalingTrigger;
|
|
78498
|
+
/** A friendly, more verbose description of the automatic scaling rule. */
|
|
77829
78499
|
Description?: string;
|
|
77830
78500
|
});
|
|
77831
78501
|
}
|
|
77832
78502
|
|
|
77833
78503
|
export declare class EMRCluster_ScalingTrigger {
|
|
77834
78504
|
constructor(props: {
|
|
78505
|
+
/** The definition of a CloudWatch metric alarm. When the defined alarm conditions are met along with other trigger parameters, scaling activity begins. */
|
|
77835
78506
|
CloudWatchAlarmDefinition: EMRCluster_CloudWatchAlarmDefinition;
|
|
77836
78507
|
});
|
|
77837
78508
|
}
|
|
77838
78509
|
|
|
77839
78510
|
export declare class EMRCluster_ScriptBootstrapActionConfig {
|
|
77840
78511
|
constructor(props: {
|
|
78512
|
+
/** Location in Amazon S3 of the script to run during a bootstrap action. */
|
|
77841
78513
|
Path: string;
|
|
78514
|
+
/** A list of command line arguments to pass to the bootstrap action script. */
|
|
77842
78515
|
Args?: string[];
|
|
77843
78516
|
});
|
|
77844
78517
|
}
|
|
77845
78518
|
|
|
77846
78519
|
export declare class EMRCluster_SimpleScalingPolicyConfiguration {
|
|
77847
78520
|
constructor(props: {
|
|
78521
|
+
/** The amount by which to scale in or scale out, based on the specified AdjustmentType. A positive value adds to the instance group's EC2 instance count while a negative number removes instances. If AdjustmentType is set to EXACT_CAPACITY, the number should only be a positive integer. If AdjustmentType is set to PERCENT_CHANGE_IN_CAPACITY, the value should express the percentage as an integer. For example, -20 indicates a decrease in 20% increments of cluster capacity. */
|
|
77848
78522
|
ScalingAdjustment: number;
|
|
77849
|
-
|
|
78523
|
+
/** The way in which EC2 instances are added (if ScalingAdjustment is a positive number) or terminated (if ScalingAdjustment is a negative number) each time the scaling activity is triggered. CHANGE_IN_CAPACITY is the default. CHANGE_IN_CAPACITY indicates that the EC2 instance count increments or decrements by ScalingAdjustment, which should be expressed as an integer. PERCENT_CHANGE_IN_CAPACITY indicates the instance count increments or decrements by the percentage specified by ScalingAdjustment, which should be expressed as an integer. For example, 20 indicates an increase in 20% increments of cluster capacity. EXACT_CAPACITY indicates the scaling activity results in an instance group with the number of EC2 instances specified by ScalingAdjustment, which should be expressed as a positive integer. */
|
|
78524
|
+
AdjustmentType?: "CHANGE_IN_CAPACITY" | "EXACT_CAPACITY" | "PERCENT_CHANGE_IN_CAPACITY";
|
|
78525
|
+
/** The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start. The default value is 0. */
|
|
77850
78526
|
CoolDown?: number;
|
|
77851
78527
|
});
|
|
77852
78528
|
}
|
|
77853
78529
|
|
|
77854
78530
|
export declare class EMRCluster_SpotProvisioningSpecification {
|
|
77855
78531
|
constructor(props: {
|
|
77856
|
-
|
|
78532
|
+
/** The action to take when TargetSpotCapacity has not been fulfilled when the TimeoutDurationMinutes has expired; that is, when all Spot Instances could not be provisioned within the Spot provisioning timeout. Valid values are TERMINATE_CLUSTER and SWITCH_TO_ON_DEMAND. SWITCH_TO_ON_DEMAND specifies that if no Spot Instances are available, On-Demand Instances should be provisioned to fulfill any remaining Spot capacity. */
|
|
78533
|
+
TimeoutAction: "SWITCH_TO_ON_DEMAND" | "TERMINATE_CLUSTER";
|
|
78534
|
+
/** The spot provisioning timeout period in minutes. If Spot Instances are not provisioned within this time period, the TimeOutAction is taken. Minimum value is 5 and maximum value is 1440. The timeout applies only during initial provisioning, when the cluster is first created. */
|
|
77857
78535
|
TimeoutDurationMinutes: number;
|
|
78536
|
+
/** Specifies the strategy to use in launching Spot Instance fleets. Currently, the only option is capacity-optimized (the default), which launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching. */
|
|
77858
78537
|
AllocationStrategy?: string;
|
|
78538
|
+
/** The defined duration for Spot Instances (also known as Spot blocks) in minutes. When specified, the Spot Instance does not terminate before the defined duration expires, and defined duration pricing for Spot Instances applies. Valid values are 60, 120, 180, 240, 300, or 360. The duration period starts as soon as a Spot Instance receives its instance ID. At the end of the duration, Amazon EC2 marks the Spot Instance for termination and provides a Spot Instance termination notice, which gives the instance a two-minute warning before it terminates. */
|
|
77859
78539
|
BlockDurationMinutes?: number;
|
|
77860
78540
|
});
|
|
77861
78541
|
}
|
|
@@ -77869,28 +78549,57 @@ export declare class EMRCluster_SpotResizingSpecification {
|
|
|
77869
78549
|
|
|
77870
78550
|
export declare class EMRCluster_StepConfig {
|
|
77871
78551
|
constructor(props: {
|
|
78552
|
+
/** The JAR file used for the step. */
|
|
77872
78553
|
HadoopJarStep: EMRCluster_HadoopJarStepConfig;
|
|
78554
|
+
/** The name of the step. */
|
|
77873
78555
|
Name: string;
|
|
77874
|
-
|
|
78556
|
+
/** The action to take when the step fails. Use one of the following values:
|
|
78557
|
+
|
|
78558
|
+
TERMINATE_CLUSTER - Shuts down the cluster.
|
|
78559
|
+
|
|
78560
|
+
CANCEL_AND_WAIT - Cancels any pending steps and returns the cluster to the WAITING state.
|
|
78561
|
+
|
|
78562
|
+
CONTINUE - Continues to the next step in the queue.
|
|
78563
|
+
|
|
78564
|
+
TERMINATE_JOB_FLOW - Shuts down the cluster. TERMINATE_JOB_FLOW is provided for backward compatibility. We recommend using TERMINATE_CLUSTER instead.
|
|
78565
|
+
If a cluster's StepConcurrencyLevel is greater than 1, do not use AddJobFlowSteps to submit a step with this parameter set to CANCEL_AND_WAIT or TERMINATE_CLUSTER. The step is not submitted and the action fails with a message that the ActionOnFailure setting is not valid.
|
|
78566
|
+
|
|
78567
|
+
If you change a cluster's StepConcurrencyLevel to be greater than 1 while a step is running, the ActionOnFailure parameter may not behave as you expect. In this case, for a step that fails with this parameter set to CANCEL_AND_WAIT, pending steps and the running step are not canceled; for a step that fails with this parameter set to TERMINATE_CLUSTER, the cluster does not terminate. */
|
|
78568
|
+
ActionOnFailure?: "CANCEL_AND_WAIT" | "CONTINUE" | "TERMINATE_CLUSTER" | "TERMINATE_JOB_FLOW";
|
|
77875
78569
|
});
|
|
77876
78570
|
}
|
|
77877
78571
|
|
|
77878
78572
|
export declare class EMRCluster_Tag {
|
|
77879
78573
|
constructor(props: {
|
|
78574
|
+
/** A user-defined key, which is the minimum required information for a valid tag. For more information. */
|
|
77880
78575
|
Key: string;
|
|
78576
|
+
/** A user-defined value, which is optional in a tag. For more information */
|
|
77881
78577
|
Value: string;
|
|
77882
78578
|
});
|
|
77883
78579
|
}
|
|
77884
78580
|
|
|
77885
78581
|
export declare class EMRCluster_VolumeSpecification {
|
|
77886
78582
|
constructor(props: {
|
|
78583
|
+
/** The volume size, in gibibytes (GiB). This can be a number from 1 - 1024. If the volume type is EBS-optimized, the minimum value is 10. */
|
|
77887
78584
|
SizeInGB: number;
|
|
78585
|
+
/** The volume type. Volume types supported are gp3, gp2, io1, st1, sc1, and standard. */
|
|
77888
78586
|
VolumeType: string;
|
|
78587
|
+
/** The number of I/O operations per second (IOPS) that the volume supports. */
|
|
77889
78588
|
Iops?: number;
|
|
78589
|
+
/** The throughput, in mebibyte per second (MiB/s). This optional parameter can be a number from 125 - 1000 and is valid only for gp3 volumes. */
|
|
77890
78590
|
Throughput?: number;
|
|
77891
78591
|
});
|
|
77892
78592
|
}
|
|
77893
78593
|
|
|
78594
|
+
export declare class EMRConfiguration {
|
|
78595
|
+
constructor(props: {
|
|
78596
|
+
/** The classification within a configuration. */
|
|
78597
|
+
Classification?: string;
|
|
78598
|
+
ConfigurationProperties?: Record<string, unknown>;
|
|
78599
|
+
Configurations?: EMRCluster_EMRConfiguration[];
|
|
78600
|
+
});
|
|
78601
|
+
}
|
|
78602
|
+
|
|
77894
78603
|
export declare class EMRContainersEndpoint_Certificate {
|
|
77895
78604
|
constructor(props: {
|
|
77896
78605
|
CertificateArn?: string;
|
|
@@ -80314,14 +81023,6 @@ export declare class EventLogConfig {
|
|
|
80314
81023
|
});
|
|
80315
81024
|
}
|
|
80316
81025
|
|
|
80317
|
-
export declare class EventParameters {
|
|
80318
|
-
constructor(props: {
|
|
80319
|
-
EventType: string;
|
|
80320
|
-
SnapshotOwner: string[];
|
|
80321
|
-
DescriptionRegex?: string;
|
|
80322
|
-
});
|
|
80323
|
-
}
|
|
80324
|
-
|
|
80325
81026
|
export declare class EventRule_AppSyncParameters {
|
|
80326
81027
|
constructor(props: {
|
|
80327
81028
|
GraphQLOperation: string;
|
|
@@ -80532,6 +81233,13 @@ export declare class EventSchemasSchema_TagsEntry {
|
|
|
80532
81233
|
});
|
|
80533
81234
|
}
|
|
80534
81235
|
|
|
81236
|
+
export declare class EventsConfig {
|
|
81237
|
+
constructor(props: {
|
|
81238
|
+
/** List of event parameters with their value thresholds */
|
|
81239
|
+
EventParametersList: Recommender_EventParameters[];
|
|
81240
|
+
});
|
|
81241
|
+
}
|
|
81242
|
+
|
|
80535
81243
|
export declare class EventsConnection_ApiKeyAuthParameters {
|
|
80536
81244
|
constructor(props: {
|
|
80537
81245
|
ApiKeyName: string;
|
|
@@ -82610,6 +83318,13 @@ export declare class FinSpaceEnvironment_Tag {
|
|
|
82610
83318
|
});
|
|
82611
83319
|
}
|
|
82612
83320
|
|
|
83321
|
+
export declare class FipsEndpoints {
|
|
83322
|
+
constructor(props: {
|
|
83323
|
+
CollectionEndpoint?: string;
|
|
83324
|
+
DashboardEndpoint?: string;
|
|
83325
|
+
});
|
|
83326
|
+
}
|
|
83327
|
+
|
|
82613
83328
|
export declare class FirehoseAction {
|
|
82614
83329
|
constructor(props: {
|
|
82615
83330
|
DeliveryStreamName: string;
|
|
@@ -89394,6 +90109,12 @@ export declare class ImageBuilder_Tag {
|
|
|
89394
90109
|
});
|
|
89395
90110
|
}
|
|
89396
90111
|
|
|
90112
|
+
export declare class ImageBuilder_VolumeConfig {
|
|
90113
|
+
constructor(props: {
|
|
90114
|
+
VolumeSizeInGb?: number;
|
|
90115
|
+
});
|
|
90116
|
+
}
|
|
90117
|
+
|
|
89397
90118
|
export declare class ImageBuilder_VpcConfig {
|
|
89398
90119
|
constructor(props: {
|
|
89399
90120
|
SecurityGroupIds?: string[];
|
|
@@ -90421,6 +91142,12 @@ export declare class InferenceScheduler_Tag {
|
|
|
90421
91142
|
});
|
|
90422
91143
|
}
|
|
90423
91144
|
|
|
91145
|
+
export declare class InferenceSettings {
|
|
91146
|
+
constructor(props: {
|
|
91147
|
+
FeedArn?: string;
|
|
91148
|
+
});
|
|
91149
|
+
}
|
|
91150
|
+
|
|
90424
91151
|
export declare class InfluxDBCluster_Tag {
|
|
90425
91152
|
constructor(props: {
|
|
90426
91153
|
/** 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 -. */
|
|
@@ -91809,6 +92536,7 @@ export declare class InstanceLaunchTemplate {
|
|
|
91809
92536
|
CapacityOptionType?: "ON_DEMAND" | "RESERVED" | "SPOT";
|
|
91810
92537
|
CapacityReservations?: ECSCapacityProvider_CapacityReservationRequest;
|
|
91811
92538
|
FipsEnabled?: boolean;
|
|
92539
|
+
InstanceMetadataTagsPropagation?: boolean;
|
|
91812
92540
|
InstanceRequirements?: ECSCapacityProvider_InstanceRequirementsRequest;
|
|
91813
92541
|
Monitoring?: ECSCapacityProvider_ManagedInstancesMonitoringOptions;
|
|
91814
92542
|
StorageConfiguration?: ECSCapacityProvider_ManagedInstancesStorageConfiguration;
|
|
@@ -92173,6 +92901,33 @@ export declare class InterceptorInputConfiguration {
|
|
|
92173
92901
|
});
|
|
92174
92902
|
}
|
|
92175
92903
|
|
|
92904
|
+
export declare class InterconnectConnection_AttachPoint {
|
|
92905
|
+
constructor(props: {
|
|
92906
|
+
/** The ARN of the resource to attach to. */
|
|
92907
|
+
Arn?: string;
|
|
92908
|
+
/** The ID of the Direct Connect Gateway to attach to. */
|
|
92909
|
+
DirectConnectGateway?: string;
|
|
92910
|
+
});
|
|
92911
|
+
}
|
|
92912
|
+
|
|
92913
|
+
export declare class InterconnectConnection_Provider {
|
|
92914
|
+
constructor(props: {
|
|
92915
|
+
/** The name of the cloud service provider. */
|
|
92916
|
+
CloudServiceProvider?: string;
|
|
92917
|
+
/** The name of the last mile provider. */
|
|
92918
|
+
LastMileProvider?: string;
|
|
92919
|
+
});
|
|
92920
|
+
}
|
|
92921
|
+
|
|
92922
|
+
export declare class InterconnectConnection_Tag {
|
|
92923
|
+
constructor(props: {
|
|
92924
|
+
/** 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 -. */
|
|
92925
|
+
Key: string;
|
|
92926
|
+
/** The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -. */
|
|
92927
|
+
Value: string;
|
|
92928
|
+
});
|
|
92929
|
+
}
|
|
92930
|
+
|
|
92176
92931
|
export declare class InterfaceMapping {
|
|
92177
92932
|
constructor(props: {
|
|
92178
92933
|
/** logical interface name, unique in the list */
|
|
@@ -93456,16 +94211,22 @@ export declare class IPAM_Tag {
|
|
|
93456
94211
|
|
|
93457
94212
|
export declare class IpamCidrConfig {
|
|
93458
94213
|
constructor(props: {
|
|
94214
|
+
/** The CIDR that specifies the IP address range for this IPAM configuration. */
|
|
93459
94215
|
Cidr: string;
|
|
94216
|
+
/** The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. */
|
|
93460
94217
|
IpamPoolArn: string;
|
|
93461
94218
|
});
|
|
93462
94219
|
}
|
|
93463
94220
|
|
|
93464
94221
|
export declare class IpamCidrConfigResult {
|
|
93465
94222
|
constructor(props: {
|
|
94223
|
+
/** The specified Anycast IP address allocated from the IPAM pool for this CIDR configuration. */
|
|
93466
94224
|
AnycastIp?: string;
|
|
94225
|
+
/** The CIDR that specifies the IP address range for this IPAM configuration. */
|
|
93467
94226
|
Cidr?: string;
|
|
94227
|
+
/** The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. */
|
|
93468
94228
|
IpamPoolArn?: string;
|
|
94229
|
+
/** The current status of the IPAM CIDR configuration. */
|
|
93469
94230
|
Status?: string;
|
|
93470
94231
|
});
|
|
93471
94232
|
}
|
|
@@ -94319,24 +95080,40 @@ export declare class JobDefinition_Volume {
|
|
|
94319
95080
|
|
|
94320
95081
|
export declare class JobFlowInstancesConfig {
|
|
94321
95082
|
constructor(props: {
|
|
95083
|
+
/** A list of additional Amazon EC2 security group IDs for the master node. */
|
|
94322
95084
|
AdditionalMasterSecurityGroups?: string[];
|
|
95085
|
+
/** A list of additional Amazon EC2 security group IDs for the core and task nodes. */
|
|
94323
95086
|
AdditionalSlaveSecurityGroups?: string[];
|
|
94324
95087
|
CoreInstanceFleet?: EMRCluster_InstanceFleetConfig;
|
|
95088
|
+
/** Configuration for the instance groups in a cluster. */
|
|
94325
95089
|
CoreInstanceGroup?: EMRCluster_InstanceGroupConfig;
|
|
95090
|
+
/** The name of the EC2 key pair that can be used to connect to the master node using SSH as the user called 'hadoop'. */
|
|
94326
95091
|
Ec2KeyName?: string;
|
|
95092
|
+
/** Applies to clusters that use the uniform instance group configuration. To launch the cluster in Amazon Virtual Private Cloud (Amazon VPC), set this parameter to the identifier of the Amazon VPC subnet where you want the cluster to launch. If you do not specify this value and your account supports EC2-Classic, the cluster launches in EC2-Classic. */
|
|
94327
95093
|
Ec2SubnetId?: string;
|
|
95094
|
+
/** Applies to clusters that use the instance fleet configuration. When multiple EC2 subnet IDs are specified, Amazon EMR evaluates them and launches instances in the optimal subnet. */
|
|
94328
95095
|
Ec2SubnetIds?: string[];
|
|
95096
|
+
/** The identifier of the Amazon EC2 security group for the master node. If you specify EmrManagedMasterSecurityGroup, you must also specify EmrManagedSlaveSecurityGroup. */
|
|
94329
95097
|
EmrManagedMasterSecurityGroup?: string;
|
|
95098
|
+
/** The identifier of the Amazon EC2 security group for the core and task nodes. If you specify EmrManagedSlaveSecurityGroup, you must also specify EmrManagedMasterSecurityGroup. */
|
|
94330
95099
|
EmrManagedSlaveSecurityGroup?: string;
|
|
95100
|
+
/** Applies only to Amazon EMR release versions earlier than 4.0. The Hadoop version for the cluster. Valid inputs are "0.18" (no longer maintained), "0.20" (no longer maintained), "0.20.205" (no longer maintained), "1.0.3", "2.2.0", or "2.4.0". If you do not set this value, the default of 0.18 is used, unless the AmiVersion parameter is set in the RunJobFlow call, in which case the default version of Hadoop for that AMI version is used. */
|
|
94331
95101
|
HadoopVersion?: string;
|
|
95102
|
+
/** Specifies whether the cluster should remain available after completing all steps. Defaults to true. For more information about configuring cluster termination, see Control Cluster Termination in the EMR Management Guide. */
|
|
94332
95103
|
KeepJobFlowAliveWhenNoSteps?: boolean;
|
|
94333
95104
|
MasterInstanceFleet?: EMRCluster_InstanceFleetConfig;
|
|
95105
|
+
/** Configuration for the instance groups in a cluster. */
|
|
94334
95106
|
MasterInstanceGroup?: EMRCluster_InstanceGroupConfig;
|
|
95107
|
+
/** The Availability Zone in which the cluster runs. */
|
|
94335
95108
|
Placement?: EMRCluster_PlacementType;
|
|
95109
|
+
/** The identifier of the Amazon EC2 security group for the Amazon EMR service to access clusters in VPC private subnets. */
|
|
94336
95110
|
ServiceAccessSecurityGroup?: string;
|
|
94337
95111
|
TaskInstanceFleets?: EMRCluster_InstanceFleetConfig[];
|
|
95112
|
+
/** Configuration for the instance groups in a cluster. */
|
|
94338
95113
|
TaskInstanceGroups?: EMRCluster_InstanceGroupConfig[];
|
|
95114
|
+
/** Specifies whether to lock the cluster to prevent the Amazon EC2 instances from being terminated by API call, user intervention, or in the event of a job-flow error. */
|
|
94339
95115
|
TerminationProtected?: boolean;
|
|
95116
|
+
/** Indicates whether Amazon EMR should gracefully replace core nodes that have degraded within the cluster. */
|
|
94340
95117
|
UnhealthyNodeReplacement?: boolean;
|
|
94341
95118
|
});
|
|
94342
95119
|
}
|
|
@@ -95316,10 +96093,15 @@ export declare class KendraSourceDetail {
|
|
|
95316
96093
|
|
|
95317
96094
|
export declare class KerberosAttributes {
|
|
95318
96095
|
constructor(props: {
|
|
96096
|
+
/** The password used within the cluster for the kadmin service on the cluster-dedicated KDC, which maintains Kerberos principals, password policies, and keytabs for the cluster. */
|
|
95319
96097
|
KdcAdminPassword: string;
|
|
96098
|
+
/** The name of the Kerberos realm to which all nodes in a cluster belong. For example, EC2.INTERNAL. */
|
|
95320
96099
|
Realm: string;
|
|
96100
|
+
/** The Active Directory password for ADDomainJoinUser. */
|
|
95321
96101
|
ADDomainJoinPassword?: string;
|
|
96102
|
+
/** Required only when establishing a cross-realm trust with an Active Directory domain. A user with sufficient privileges to join resources to the domain. */
|
|
95322
96103
|
ADDomainJoinUser?: string;
|
|
96104
|
+
/** Required only when establishing a cross-realm trust with a KDC in a different realm. The cross-realm principal password, which must be identical across realms. */
|
|
95323
96105
|
CrossRealmTrustPrincipalPassword?: string;
|
|
95324
96106
|
});
|
|
95325
96107
|
}
|
|
@@ -103104,6 +103886,12 @@ export declare class MediaLiveChannel_HlsWebdavSettings {
|
|
|
103104
103886
|
});
|
|
103105
103887
|
}
|
|
103106
103888
|
|
|
103889
|
+
export declare class MediaLiveChannel_InferenceSettings {
|
|
103890
|
+
constructor(props: {
|
|
103891
|
+
FeedArn?: string;
|
|
103892
|
+
});
|
|
103893
|
+
}
|
|
103894
|
+
|
|
103107
103895
|
export declare class MediaLiveChannel_InputAttachment {
|
|
103108
103896
|
constructor(props: {
|
|
103109
103897
|
AutomaticInputFailoverSettings?: MediaLiveChannel_AutomaticInputFailoverSettings;
|
|
@@ -111530,6 +112318,13 @@ export declare class OpenSearchServerlessCollection_EncryptionConfig {
|
|
|
111530
112318
|
});
|
|
111531
112319
|
}
|
|
111532
112320
|
|
|
112321
|
+
export declare class OpenSearchServerlessCollection_FipsEndpoints {
|
|
112322
|
+
constructor(props: {
|
|
112323
|
+
CollectionEndpoint?: string;
|
|
112324
|
+
DashboardEndpoint?: string;
|
|
112325
|
+
});
|
|
112326
|
+
}
|
|
112327
|
+
|
|
111533
112328
|
export declare class OpenSearchServerlessCollection_Tag {
|
|
111534
112329
|
constructor(props: {
|
|
111535
112330
|
/** The key in the key-value pair */
|
|
@@ -112309,7 +113104,8 @@ export declare class OrganizationCentralizationRule_LogsEncryptionConfiguration
|
|
|
112309
113104
|
export declare class OrganizationCentralizationRule_SourceLogsConfiguration {
|
|
112310
113105
|
constructor(props: {
|
|
112311
113106
|
EncryptedLogGroupStrategy: "ALLOW" | "SKIP";
|
|
112312
|
-
|
|
113107
|
+
DataSourceSelectionCriteria?: string;
|
|
113108
|
+
LogGroupSelectionCriteria?: string;
|
|
112313
113109
|
});
|
|
112314
113110
|
}
|
|
112315
113111
|
|
|
@@ -112739,6 +113535,7 @@ export declare class OriginGroups {
|
|
|
112739
113535
|
|
|
112740
113536
|
export declare class OriginMtlsConfig {
|
|
112741
113537
|
constructor(props: {
|
|
113538
|
+
/** The Amazon Resource Name (ARN) of the client certificate stored in AWS Certificate Manager (ACM) that CloudFront uses to authenticate with your origin using Mutual TLS. */
|
|
112742
113539
|
ClientCertificateArn: string;
|
|
112743
113540
|
});
|
|
112744
113541
|
}
|
|
@@ -114598,6 +115395,15 @@ export declare class PCSCluster_AuthKey {
|
|
|
114598
115395
|
});
|
|
114599
115396
|
}
|
|
114600
115397
|
|
|
115398
|
+
export declare class PCSCluster_CgroupCustomSetting {
|
|
115399
|
+
constructor(props: {
|
|
115400
|
+
/** The cgroup.conf parameter name. */
|
|
115401
|
+
ParameterName: string;
|
|
115402
|
+
/** The value for the cgroup.conf parameter. */
|
|
115403
|
+
ParameterValue: string;
|
|
115404
|
+
});
|
|
115405
|
+
}
|
|
115406
|
+
|
|
114601
115407
|
export declare class PCSCluster_Endpoint {
|
|
114602
115408
|
constructor(props: {
|
|
114603
115409
|
/** The endpoint's connection port number. */
|
|
@@ -114646,6 +115452,15 @@ export declare class PCSCluster_SlurmCustomSetting {
|
|
|
114646
115452
|
});
|
|
114647
115453
|
}
|
|
114648
115454
|
|
|
115455
|
+
export declare class PCSCluster_SlurmdbdCustomSetting {
|
|
115456
|
+
constructor(props: {
|
|
115457
|
+
/** The slurmdbd.conf parameter name. */
|
|
115458
|
+
ParameterName: string;
|
|
115459
|
+
/** The value for the slurmdbd.conf parameter. */
|
|
115460
|
+
ParameterValue: string;
|
|
115461
|
+
});
|
|
115462
|
+
}
|
|
115463
|
+
|
|
114649
115464
|
export declare class PCSCluster_SlurmRest {
|
|
114650
115465
|
constructor(props: {
|
|
114651
115466
|
/** The default value is `NONE`. A value of `STANDARD` means that Slurm Rest is enabled. */
|
|
@@ -116186,13 +117001,16 @@ export declare class PlacementGroup_Tag {
|
|
|
116186
117001
|
|
|
116187
117002
|
export declare class PlacementGroupConfig {
|
|
116188
117003
|
constructor(props: {
|
|
116189
|
-
|
|
116190
|
-
|
|
117004
|
+
/** Role of the instance in the cluster. */
|
|
117005
|
+
InstanceRole: "CORE" | "MASTER" | "TASK";
|
|
117006
|
+
/** Amazon EC2 Placement Group strategy associated with instance role. */
|
|
117007
|
+
PlacementStrategy?: "CLUSTER" | "NONE" | "PARTITION" | "SPREAD";
|
|
116191
117008
|
});
|
|
116192
117009
|
}
|
|
116193
117010
|
|
|
116194
117011
|
export declare class PlacementType {
|
|
116195
117012
|
constructor(props: {
|
|
117013
|
+
/** The Amazon EC2 Availability Zone for the cluster. AvailabilityZone is used for uniform instance groups, while AvailabilityZones (plural) is used for instance fleets. */
|
|
116196
117014
|
AvailabilityZone: string;
|
|
116197
117015
|
});
|
|
116198
117016
|
}
|
|
@@ -118299,13 +119117,6 @@ export declare class ProtocolDetails {
|
|
|
118299
119117
|
});
|
|
118300
119118
|
}
|
|
118301
119119
|
|
|
118302
|
-
export declare class Provider {
|
|
118303
|
-
constructor(props: {
|
|
118304
|
-
/** Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be symmetric, created in the same region as the cluster, and if the KMS key was created in a different account, the user must have access to the KMS key. */
|
|
118305
|
-
KeyArn?: string;
|
|
118306
|
-
});
|
|
118307
|
-
}
|
|
118308
|
-
|
|
118309
119120
|
export declare class ProvisionalConfiguration {
|
|
118310
119121
|
constructor(props: {
|
|
118311
119122
|
MaxTimeToLiveInMinutes: number;
|
|
@@ -130149,6 +130960,76 @@ export declare class RecommendationConfiguration {
|
|
|
130149
130960
|
});
|
|
130150
130961
|
}
|
|
130151
130962
|
|
|
130963
|
+
export declare class Recommender_EventParameters {
|
|
130964
|
+
constructor(props: {
|
|
130965
|
+
/** The type of event */
|
|
130966
|
+
EventType: string;
|
|
130967
|
+
/** The threshold of the event type. Only events with a value greater or equal to this threshold will be considered for solution creation. */
|
|
130968
|
+
EventValueThreshold?: number;
|
|
130969
|
+
});
|
|
130970
|
+
}
|
|
130971
|
+
|
|
130972
|
+
export declare class Recommender_EventsConfig {
|
|
130973
|
+
constructor(props: {
|
|
130974
|
+
/** List of event parameters with their value thresholds */
|
|
130975
|
+
EventParametersList: Recommender_EventParameters[];
|
|
130976
|
+
});
|
|
130977
|
+
}
|
|
130978
|
+
|
|
130979
|
+
export declare class Recommender_RecommenderConfig {
|
|
130980
|
+
constructor(props: {
|
|
130981
|
+
EventsConfig?: Recommender_EventsConfig;
|
|
130982
|
+
});
|
|
130983
|
+
}
|
|
130984
|
+
|
|
130985
|
+
export declare class Recommender_RecommenderUpdate {
|
|
130986
|
+
constructor(props: {
|
|
130987
|
+
/** The timestamp of when the update was created */
|
|
130988
|
+
CreationDateTime?: string;
|
|
130989
|
+
/** The reason for update failure */
|
|
130990
|
+
FailureReason?: string;
|
|
130991
|
+
/** The timestamp of when the update was last modified */
|
|
130992
|
+
LastUpdatedDateTime?: string;
|
|
130993
|
+
RecommenderConfig?: Recommender_RecommenderConfig;
|
|
130994
|
+
Status?: Recommender_RecommenderStatus;
|
|
130995
|
+
});
|
|
130996
|
+
}
|
|
130997
|
+
|
|
130998
|
+
export declare class Recommender_Tag {
|
|
130999
|
+
constructor(props: {
|
|
131000
|
+
Key: string;
|
|
131001
|
+
Value: string;
|
|
131002
|
+
});
|
|
131003
|
+
}
|
|
131004
|
+
|
|
131005
|
+
export declare class Recommender_TrainingMetrics {
|
|
131006
|
+
constructor(props: {
|
|
131007
|
+
/** Training metrics by type */
|
|
131008
|
+
Metrics?: Record<string, unknown>;
|
|
131009
|
+
/** Timestamp of the training metrics */
|
|
131010
|
+
Time?: string;
|
|
131011
|
+
});
|
|
131012
|
+
}
|
|
131013
|
+
|
|
131014
|
+
export declare class RecommenderConfig {
|
|
131015
|
+
constructor(props: {
|
|
131016
|
+
EventsConfig?: Recommender_EventsConfig;
|
|
131017
|
+
});
|
|
131018
|
+
}
|
|
131019
|
+
|
|
131020
|
+
export declare class RecommenderUpdate {
|
|
131021
|
+
constructor(props: {
|
|
131022
|
+
/** The timestamp of when the update was created */
|
|
131023
|
+
CreationDateTime?: string;
|
|
131024
|
+
/** The reason for update failure */
|
|
131025
|
+
FailureReason?: string;
|
|
131026
|
+
/** The timestamp of when the update was last modified */
|
|
131027
|
+
LastUpdatedDateTime?: string;
|
|
131028
|
+
RecommenderConfig?: Recommender_RecommenderConfig;
|
|
131029
|
+
Status?: Recommender_RecommenderStatus;
|
|
131030
|
+
});
|
|
131031
|
+
}
|
|
131032
|
+
|
|
130152
131033
|
export declare class RecordExpiration {
|
|
130153
131034
|
constructor(props: {
|
|
130154
131035
|
/** Specifies whether journal table record expiration is enabled or disabled. */
|
|
@@ -138097,7 +138978,9 @@ export declare class Script_Tag {
|
|
|
138097
138978
|
|
|
138098
138979
|
export declare class ScriptBootstrapActionConfig {
|
|
138099
138980
|
constructor(props: {
|
|
138981
|
+
/** Location in Amazon S3 of the script to run during a bootstrap action. */
|
|
138100
138982
|
Path: string;
|
|
138983
|
+
/** A list of command line arguments to pass to the bootstrap action script. */
|
|
138101
138984
|
Args?: string[];
|
|
138102
138985
|
});
|
|
138103
138986
|
}
|
|
@@ -141210,6 +142093,15 @@ export declare class SlotValueSelectionSetting {
|
|
|
141210
142093
|
});
|
|
141211
142094
|
}
|
|
141212
142095
|
|
|
142096
|
+
export declare class SlurmdbdCustomSetting {
|
|
142097
|
+
constructor(props: {
|
|
142098
|
+
/** The slurmdbd.conf parameter name. */
|
|
142099
|
+
ParameterName: string;
|
|
142100
|
+
/** The value for the slurmdbd.conf parameter. */
|
|
142101
|
+
ParameterValue: string;
|
|
142102
|
+
});
|
|
142103
|
+
}
|
|
142104
|
+
|
|
141213
142105
|
export declare class SlurmRest {
|
|
141214
142106
|
constructor(props: {
|
|
141215
142107
|
/** The default value is `NONE`. A value of `STANDARD` means that Slurm Rest is enabled. */
|
|
@@ -141861,7 +142753,8 @@ export declare class SourceLocation_Tag {
|
|
|
141861
142753
|
export declare class SourceLogsConfiguration {
|
|
141862
142754
|
constructor(props: {
|
|
141863
142755
|
EncryptedLogGroupStrategy: "ALLOW" | "SKIP";
|
|
141864
|
-
|
|
142756
|
+
DataSourceSelectionCriteria?: string;
|
|
142757
|
+
LogGroupSelectionCriteria?: string;
|
|
141865
142758
|
});
|
|
141866
142759
|
}
|
|
141867
142760
|
|
|
@@ -148628,6 +149521,15 @@ export declare class TrainingMetric {
|
|
|
148628
149521
|
});
|
|
148629
149522
|
}
|
|
148630
149523
|
|
|
149524
|
+
export declare class TrainingMetrics {
|
|
149525
|
+
constructor(props: {
|
|
149526
|
+
/** Training metrics by type */
|
|
149527
|
+
Metrics?: Record<string, unknown>;
|
|
149528
|
+
/** Timestamp of the training metrics */
|
|
149529
|
+
Time?: string;
|
|
149530
|
+
});
|
|
149531
|
+
}
|
|
149532
|
+
|
|
148631
149533
|
export declare class TranscriptConfiguration {
|
|
148632
149534
|
constructor(props: {
|
|
148633
149535
|
ChannelLabeling?: DataAutomationProject_ChannelLabelingConfiguration;
|
|
@@ -149331,8 +150233,11 @@ export declare class TrustedSigners {
|
|
|
149331
150233
|
|
|
149332
150234
|
export declare class TrustStoreConfig {
|
|
149333
150235
|
constructor(props: {
|
|
150236
|
+
/** The trust store ID. */
|
|
149334
150237
|
TrustStoreId: string;
|
|
150238
|
+
/** The configuration to use to advertise trust store CA names. */
|
|
149335
150239
|
AdvertiseTrustStoreCaNames?: boolean;
|
|
150240
|
+
/** The configuration to use to ignore certificate expiration. */
|
|
149336
150241
|
IgnoreCertificateExpiry?: boolean;
|
|
149337
150242
|
});
|
|
149338
150243
|
}
|
|
@@ -151251,7 +152156,9 @@ export declare class ViewerCertificate {
|
|
|
151251
152156
|
|
|
151252
152157
|
export declare class ViewerMtlsConfig {
|
|
151253
152158
|
constructor(props: {
|
|
152159
|
+
/** The viewer mTLS mode. */
|
|
151254
152160
|
Mode?: CfDistribution_ViewerMtlsMode;
|
|
152161
|
+
/** The trust store configuration associated with the viewer mTLS configuration. */
|
|
151255
152162
|
TrustStoreConfig?: CfDistribution_TrustStoreConfig;
|
|
151256
152163
|
});
|
|
151257
152164
|
}
|
|
@@ -152244,6 +153151,12 @@ export declare class VoiceSettings {
|
|
|
152244
153151
|
});
|
|
152245
153152
|
}
|
|
152246
153153
|
|
|
153154
|
+
export declare class VolumeConfig {
|
|
153155
|
+
constructor(props: {
|
|
153156
|
+
VolumeSizeInGb?: number;
|
|
153157
|
+
});
|
|
153158
|
+
}
|
|
153159
|
+
|
|
152247
153160
|
export declare class VolumeConfiguration {
|
|
152248
153161
|
constructor(props: {
|
|
152249
153162
|
Encrypted?: boolean;
|
|
@@ -152784,6 +153697,7 @@ export declare class VpcOriginConfig {
|
|
|
152784
153697
|
/** Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout*. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
152785
153698
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
152786
153699
|
OriginReadTimeout?: number;
|
|
153700
|
+
/** The account ID of the AWS-account that owns the VPC origin. */
|
|
152787
153701
|
OwnerAccountId?: string;
|
|
152788
153702
|
});
|
|
152789
153703
|
}
|
|
@@ -162124,6 +163038,16 @@ export type QuickSightTopic_TopicUserExperienceVersion = "LEGACY" | "NEW_READER_
|
|
|
162124
163038
|
|
|
162125
163039
|
export type QuickSightTopic_UndefinedSpecifiedValueType = "LEAST" | "MOST";
|
|
162126
163040
|
|
|
163041
|
+
export type Recommender_RecommenderStatus =
|
|
163042
|
+
| "ACTIVE"
|
|
163043
|
+
| "DELETING"
|
|
163044
|
+
| "FAILED"
|
|
163045
|
+
| "INACTIVE"
|
|
163046
|
+
| "IN_PROGRESS"
|
|
163047
|
+
| "PENDING"
|
|
163048
|
+
| "STARTING"
|
|
163049
|
+
| "STOPPING";
|
|
163050
|
+
|
|
162127
163051
|
export type RedshiftServerlessNamespace_LogExport =
|
|
162128
163052
|
| "connectionlog"
|
|
162129
163053
|
| "useractivitylog"
|
|
@@ -163061,6 +163985,14 @@ export type Space_RemoteAccess = "DISABLED" | "ENABLED";
|
|
|
163061
163985
|
|
|
163062
163986
|
export type Space_SpaceManagedResources = "DISABLED" | "ENABLED";
|
|
163063
163987
|
|
|
163988
|
+
export type SqlHaStandbyDetectedInstance_HaStatus =
|
|
163989
|
+
| "active"
|
|
163990
|
+
| "invalid"
|
|
163991
|
+
| "processing"
|
|
163992
|
+
| "standby";
|
|
163993
|
+
|
|
163994
|
+
export type SqlHaStandbyDetectedInstance_SqlServerLicenseUsage = "full" | "waived";
|
|
163995
|
+
|
|
163064
163996
|
export type StackSet_Capability =
|
|
163065
163997
|
| "CAPABILITY_AUTO_EXPAND"
|
|
163066
163998
|
| "CAPABILITY_IAM"
|