@intentius/chant-lexicon-aws 0.1.1 → 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 +705 -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 +956 -59
- package/package.json +2 -2
- package/src/composites/composites.test.ts +65 -0
- package/src/composites/ec2-instance-role.ts +39 -0
- package/src/composites/fargate-service.ts +9 -0
- package/src/composites/index.ts +6 -0
- package/src/composites/lambda-function.ts +2 -1
- package/src/composites/minimal-vpc.ts +71 -0
- package/src/composites/solr-fargate-service.ts +42 -0
- package/src/generated/index.d.ts +956 -59
- package/src/generated/index.ts +31 -5
- package/src/generated/lexicon-aws.json +705 -435
- package/src/index.ts +2 -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/dist/types/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;
|
|
@@ -23101,7 +23181,6 @@ export declare class OnlineEvaluationConfig {
|
|
|
23101
23181
|
UpdatedAt?: string;
|
|
23102
23182
|
}, attributes?: CFResourceAttributes);
|
|
23103
23183
|
readonly CreatedAt: string;
|
|
23104
|
-
readonly ExecutionStatus: OnlineEvaluationConfig_ExecutionStatus;
|
|
23105
23184
|
readonly OnlineEvaluationConfigArn: string;
|
|
23106
23185
|
readonly OnlineEvaluationConfigId: string;
|
|
23107
23186
|
readonly OutputConfig: OnlineEvaluationConfig_OutputConfig;
|
|
@@ -23143,6 +23222,7 @@ Contains between 3 and 32 characters
|
|
|
23143
23222
|
/** The description of the collection */
|
|
23144
23223
|
Description?: string;
|
|
23145
23224
|
EncryptionConfig?: OpenSearchServerlessCollection_EncryptionConfig;
|
|
23225
|
+
FipsEndpoints?: OpenSearchServerlessCollection_FipsEndpoints;
|
|
23146
23226
|
/** The identifier of the collection */
|
|
23147
23227
|
Id?: string;
|
|
23148
23228
|
/** Key Management Service key used to encrypt the collection. */
|
|
@@ -23156,6 +23236,7 @@ Contains between 3 and 32 characters
|
|
|
23156
23236
|
readonly Arn: string;
|
|
23157
23237
|
readonly CollectionEndpoint: string;
|
|
23158
23238
|
readonly DashboardEndpoint: string;
|
|
23239
|
+
readonly FipsEndpoints: OpenSearchServerlessCollection_FipsEndpoints;
|
|
23159
23240
|
readonly Id: string;
|
|
23160
23241
|
readonly KmsKeyArn: string;
|
|
23161
23242
|
}
|
|
@@ -26286,6 +26367,36 @@ export declare class Recipe {
|
|
|
26286
26367
|
}, attributes?: CFResourceAttributes);
|
|
26287
26368
|
}
|
|
26288
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
|
+
|
|
26289
26400
|
export declare class RecordingConfiguration {
|
|
26290
26401
|
constructor(props: {
|
|
26291
26402
|
DestinationConfiguration: RecordingConfiguration_DestinationConfiguration;
|
|
@@ -44031,23 +44142,31 @@ export declare class AnycastIpList_AnycastIpList {
|
|
|
44031
44142
|
Name: string;
|
|
44032
44143
|
/** The status of the Anycast static IP list. Valid values: ``Deployed``, ``Deploying``, or ``Failed``. */
|
|
44033
44144
|
Status: string;
|
|
44145
|
+
/** The IP address type for the Anycast static IP list. */
|
|
44034
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. */
|
|
44035
44148
|
IpamCidrConfigResults?: any;
|
|
44036
44149
|
});
|
|
44037
44150
|
}
|
|
44038
44151
|
|
|
44039
44152
|
export declare class AnycastIpList_IpamCidrConfig {
|
|
44040
44153
|
constructor(props: {
|
|
44154
|
+
/** The CIDR that specifies the IP address range for this IPAM configuration. */
|
|
44041
44155
|
Cidr: string;
|
|
44156
|
+
/** The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. */
|
|
44042
44157
|
IpamPoolArn: string;
|
|
44043
44158
|
});
|
|
44044
44159
|
}
|
|
44045
44160
|
|
|
44046
44161
|
export declare class AnycastIpList_IpamCidrConfigResult {
|
|
44047
44162
|
constructor(props: {
|
|
44163
|
+
/** The specified Anycast IP address allocated from the IPAM pool for this CIDR configuration. */
|
|
44048
44164
|
AnycastIp?: string;
|
|
44165
|
+
/** The CIDR that specifies the IP address range for this IPAM configuration. */
|
|
44049
44166
|
Cidr?: string;
|
|
44167
|
+
/** The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. */
|
|
44050
44168
|
IpamPoolArn?: string;
|
|
44169
|
+
/** The current status of the IPAM CIDR configuration. */
|
|
44051
44170
|
Status?: string;
|
|
44052
44171
|
});
|
|
44053
44172
|
}
|
|
@@ -48108,6 +48227,15 @@ export declare class AttachmentsSource {
|
|
|
48108
48227
|
});
|
|
48109
48228
|
}
|
|
48110
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
|
+
|
|
48111
48239
|
export declare class AttributeDetails {
|
|
48112
48240
|
constructor(props: {
|
|
48113
48241
|
Attributes: any;
|
|
@@ -49840,6 +49968,7 @@ export declare class AutoSubscriptionConfiguration {
|
|
|
49840
49968
|
|
|
49841
49969
|
export declare class AutoTerminationPolicy {
|
|
49842
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) */
|
|
49843
49972
|
IdleTimeout?: number;
|
|
49844
49973
|
});
|
|
49845
49974
|
}
|
|
@@ -52474,6 +52603,7 @@ export declare class BooleanOperands {
|
|
|
52474
52603
|
|
|
52475
52604
|
export declare class BootstrapActionConfig {
|
|
52476
52605
|
constructor(props: {
|
|
52606
|
+
/** The name of the bootstrap action. */
|
|
52477
52607
|
Name: string;
|
|
52478
52608
|
ScriptBootstrapAction: EMRCluster_ScriptBootstrapActionConfig;
|
|
52479
52609
|
});
|
|
@@ -54974,19 +55104,20 @@ export declare class CACertificate_Tag {
|
|
|
54974
55104
|
|
|
54975
55105
|
export declare class CaCertificatesBundleS3Location {
|
|
54976
55106
|
constructor(props: {
|
|
54977
|
-
/** The S3 bucket
|
|
55107
|
+
/** The S3 bucket. */
|
|
54978
55108
|
Bucket: string;
|
|
54979
|
-
/** The
|
|
55109
|
+
/** The location's key. */
|
|
54980
55110
|
Key: string;
|
|
54981
|
-
/** The
|
|
55111
|
+
/** The location's Region. */
|
|
54982
55112
|
Region: string;
|
|
54983
|
-
/** The
|
|
55113
|
+
/** The location's version. */
|
|
54984
55114
|
Version?: string;
|
|
54985
55115
|
});
|
|
54986
55116
|
}
|
|
54987
55117
|
|
|
54988
55118
|
export declare class CaCertificatesBundleSource {
|
|
54989
55119
|
constructor(props: {
|
|
55120
|
+
/** The CA certificates bundle location in Amazon S3. */
|
|
54990
55121
|
CaCertificatesBundleS3Location: CfTrustStore_CaCertificatesBundleS3Location;
|
|
54991
55122
|
});
|
|
54992
55123
|
}
|
|
@@ -55491,41 +55622,222 @@ export declare class Capabilities {
|
|
|
55491
55622
|
constructor(props: {
|
|
55492
55623
|
Action?: CustomPermissions_CapabilityState;
|
|
55493
55624
|
AddOrRunAnomalyDetectionForAnalyses?: CustomPermissions_CapabilityState;
|
|
55625
|
+
AmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
55626
|
+
AmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
55627
|
+
AmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
55628
|
+
AmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
55494
55629
|
Analysis?: CustomPermissions_CapabilityState;
|
|
55630
|
+
ApproveFlowShareRequests?: CustomPermissions_CapabilityState;
|
|
55631
|
+
AsanaAction?: CustomPermissions_CapabilityState;
|
|
55495
55632
|
Automate?: CustomPermissions_CapabilityState;
|
|
55633
|
+
BambooHRAction?: CustomPermissions_CapabilityState;
|
|
55634
|
+
BoxAgentAction?: CustomPermissions_CapabilityState;
|
|
55635
|
+
BuildCalculatedFieldWithQ?: CustomPermissions_CapabilityState;
|
|
55636
|
+
CanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
55496
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;
|
|
55497
55652
|
CreateAndUpdateDashboardEmailReports?: CustomPermissions_CapabilityState;
|
|
55498
55653
|
CreateAndUpdateDatasets?: CustomPermissions_CapabilityState;
|
|
55499
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;
|
|
55500
55687
|
CreateAndUpdateThemes?: CustomPermissions_CapabilityState;
|
|
55501
55688
|
CreateAndUpdateThresholdAlerts?: CustomPermissions_CapabilityState;
|
|
55689
|
+
CreateAndUpdateZendeskAction?: CustomPermissions_CapabilityState;
|
|
55502
55690
|
CreateChatAgents?: CustomPermissions_CapabilityState;
|
|
55691
|
+
CreateDashboardExecutiveSummaryWithQ?: CustomPermissions_CapabilityState;
|
|
55503
55692
|
CreateSharedFolders?: CustomPermissions_CapabilityState;
|
|
55504
55693
|
CreateSPICEDataset?: CustomPermissions_CapabilityState;
|
|
55505
55694
|
Dashboard?: CustomPermissions_CapabilityState;
|
|
55695
|
+
EditVisualWithQ?: CustomPermissions_CapabilityState;
|
|
55506
55696
|
ExportToCsv?: CustomPermissions_CapabilityState;
|
|
55507
55697
|
ExportToCsvInScheduledReports?: CustomPermissions_CapabilityState;
|
|
55508
55698
|
ExportToExcel?: CustomPermissions_CapabilityState;
|
|
55509
55699
|
ExportToExcelInScheduledReports?: CustomPermissions_CapabilityState;
|
|
55510
55700
|
ExportToPdf?: CustomPermissions_CapabilityState;
|
|
55511
55701
|
ExportToPdfInScheduledReports?: CustomPermissions_CapabilityState;
|
|
55702
|
+
Extension?: CustomPermissions_CapabilityState;
|
|
55703
|
+
FactSetAction?: CustomPermissions_CapabilityState;
|
|
55512
55704
|
Flow?: CustomPermissions_CapabilityState;
|
|
55705
|
+
GenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
55706
|
+
GithubAction?: CustomPermissions_CapabilityState;
|
|
55707
|
+
GoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
55708
|
+
HubspotAction?: CustomPermissions_CapabilityState;
|
|
55709
|
+
HuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
55513
55710
|
IncludeContentInScheduledReportsEmail?: CustomPermissions_CapabilityState;
|
|
55711
|
+
IntercomAction?: CustomPermissions_CapabilityState;
|
|
55712
|
+
JiraAction?: CustomPermissions_CapabilityState;
|
|
55514
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;
|
|
55515
55725
|
PerformFlowUiTask?: CustomPermissions_CapabilityState;
|
|
55516
55726
|
PrintReports?: CustomPermissions_CapabilityState;
|
|
55517
55727
|
PublishWithoutApproval?: CustomPermissions_CapabilityState;
|
|
55518
55728
|
RenameSharedFolders?: CustomPermissions_CapabilityState;
|
|
55519
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;
|
|
55520
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;
|
|
55521
55751
|
ShareDashboards?: CustomPermissions_CapabilityState;
|
|
55522
55752
|
ShareDatasets?: CustomPermissions_CapabilityState;
|
|
55523
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;
|
|
55524
55790
|
Space?: CustomPermissions_CapabilityState;
|
|
55525
55791
|
SubscribeDashboardEmailReports?: CustomPermissions_CapabilityState;
|
|
55792
|
+
TextractAction?: CustomPermissions_CapabilityState;
|
|
55793
|
+
Topic?: CustomPermissions_CapabilityState;
|
|
55526
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;
|
|
55527
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;
|
|
55528
55839
|
ViewAccountSPICECapacity?: CustomPermissions_CapabilityState;
|
|
55840
|
+
ZendeskAction?: CustomPermissions_CapabilityState;
|
|
55529
55841
|
});
|
|
55530
55842
|
}
|
|
55531
55843
|
|
|
@@ -56456,6 +56768,7 @@ export declare class CfDistribution_CacheBehavior {
|
|
|
56456
56768
|
|
|
56457
56769
|
export declare class CfDistribution_ConnectionFunctionAssociation {
|
|
56458
56770
|
constructor(props: {
|
|
56771
|
+
/** The association's ID. */
|
|
56459
56772
|
Id: string;
|
|
56460
56773
|
});
|
|
56461
56774
|
}
|
|
@@ -56518,6 +56831,7 @@ export declare class CfDistribution_CustomOriginConfig {
|
|
|
56518
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.
|
|
56519
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*. */
|
|
56520
56833
|
OriginKeepaliveTimeout?: number;
|
|
56834
|
+
/** Configures mutual TLS authentication between CloudFront and your origin server. */
|
|
56521
56835
|
OriginMtlsConfig?: CfDistribution_OriginMtlsConfig;
|
|
56522
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.
|
|
56523
56837
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
@@ -56624,6 +56938,7 @@ export declare class CfDistribution_DistributionConfig {
|
|
|
56624
56938
|
CNAMEs?: string[];
|
|
56625
56939
|
/** A comment to describe the distribution. The comment cannot be longer than 128 characters. */
|
|
56626
56940
|
Comment?: string;
|
|
56941
|
+
/** The distribution's connection function association. */
|
|
56627
56942
|
ConnectionFunctionAssociation?: CfDistribution_ConnectionFunctionAssociation;
|
|
56628
56943
|
/** This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants (tenant-only). */
|
|
56629
56944
|
ConnectionMode?: CfDistribution_ConnectionMode;
|
|
@@ -56687,6 +57002,7 @@ export declare class CfDistribution_DistributionConfig {
|
|
|
56687
57002
|
TenantConfig?: Record<string, unknown>;
|
|
56688
57003
|
/** A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers. */
|
|
56689
57004
|
ViewerCertificate?: CfDistribution_ViewerCertificate;
|
|
57005
|
+
/** The distribution's viewer mTLS configuration. */
|
|
56690
57006
|
ViewerMtlsConfig?: CfDistribution_ViewerMtlsConfig;
|
|
56691
57007
|
/** Multi-tenant distributions only support WAF V2 web ACLs.
|
|
56692
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``.
|
|
@@ -56904,6 +57220,7 @@ export declare class CfDistribution_OriginGroups {
|
|
|
56904
57220
|
|
|
56905
57221
|
export declare class CfDistribution_OriginMtlsConfig {
|
|
56906
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. */
|
|
56907
57224
|
ClientCertificateArn: string;
|
|
56908
57225
|
});
|
|
56909
57226
|
}
|
|
@@ -56975,8 +57292,11 @@ export declare class CfDistribution_Tag {
|
|
|
56975
57292
|
|
|
56976
57293
|
export declare class CfDistribution_TrustStoreConfig {
|
|
56977
57294
|
constructor(props: {
|
|
57295
|
+
/** The trust store ID. */
|
|
56978
57296
|
TrustStoreId: string;
|
|
57297
|
+
/** The configuration to use to advertise trust store CA names. */
|
|
56979
57298
|
AdvertiseTrustStoreCaNames?: boolean;
|
|
57299
|
+
/** The configuration to use to ignore certificate expiration. */
|
|
56980
57300
|
IgnoreCertificateExpiry?: boolean;
|
|
56981
57301
|
});
|
|
56982
57302
|
}
|
|
@@ -57020,7 +57340,9 @@ export declare class CfDistribution_ViewerCertificate {
|
|
|
57020
57340
|
|
|
57021
57341
|
export declare class CfDistribution_ViewerMtlsConfig {
|
|
57022
57342
|
constructor(props: {
|
|
57343
|
+
/** The viewer mTLS mode. */
|
|
57023
57344
|
Mode?: CfDistribution_ViewerMtlsMode;
|
|
57345
|
+
/** The trust store configuration associated with the viewer mTLS configuration. */
|
|
57024
57346
|
TrustStoreConfig?: CfDistribution_TrustStoreConfig;
|
|
57025
57347
|
});
|
|
57026
57348
|
}
|
|
@@ -57035,6 +57357,7 @@ export declare class CfDistribution_VpcOriginConfig {
|
|
|
57035
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.
|
|
57036
57358
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
57037
57359
|
OriginReadTimeout?: number;
|
|
57360
|
+
/** The account ID of the AWS-account that owns the VPC origin. */
|
|
57038
57361
|
OwnerAccountId?: string;
|
|
57039
57362
|
});
|
|
57040
57363
|
}
|
|
@@ -57192,30 +57515,44 @@ export declare class CfPublicKey_PublicKeyConfig {
|
|
|
57192
57515
|
|
|
57193
57516
|
export declare class CfTrustStore_CaCertificatesBundleS3Location {
|
|
57194
57517
|
constructor(props: {
|
|
57195
|
-
/** The S3 bucket
|
|
57518
|
+
/** The S3 bucket. */
|
|
57196
57519
|
Bucket: string;
|
|
57197
|
-
/** The
|
|
57520
|
+
/** The location's key. */
|
|
57198
57521
|
Key: string;
|
|
57199
|
-
/** The
|
|
57522
|
+
/** The location's Region. */
|
|
57200
57523
|
Region: string;
|
|
57201
|
-
/** The
|
|
57524
|
+
/** The location's version. */
|
|
57202
57525
|
Version?: string;
|
|
57203
57526
|
});
|
|
57204
57527
|
}
|
|
57205
57528
|
|
|
57206
57529
|
export declare class CfTrustStore_CaCertificatesBundleSource {
|
|
57207
57530
|
constructor(props: {
|
|
57531
|
+
/** The CA certificates bundle location in Amazon S3. */
|
|
57208
57532
|
CaCertificatesBundleS3Location: CfTrustStore_CaCertificatesBundleS3Location;
|
|
57209
57533
|
});
|
|
57210
57534
|
}
|
|
57211
57535
|
|
|
57212
57536
|
export declare class CfTrustStore_Tag {
|
|
57213
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 ``_ - . : / = + @``. */
|
|
57214
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 ``_ - . : / = + @``. */
|
|
57215
57543
|
Value: string;
|
|
57216
57544
|
});
|
|
57217
57545
|
}
|
|
57218
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
|
+
|
|
57219
57556
|
export declare class ChannelEngineVersionRequest {
|
|
57220
57557
|
constructor(props: {
|
|
57221
57558
|
Version?: string;
|
|
@@ -58030,6 +58367,21 @@ export declare class CloudWatchEncryption {
|
|
|
58030
58367
|
});
|
|
58031
58368
|
}
|
|
58032
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
|
+
|
|
58033
58385
|
export declare class CloudWatchLoggingOption {
|
|
58034
58386
|
constructor(props: {
|
|
58035
58387
|
LogStreamARN: string;
|
|
@@ -60307,10 +60659,15 @@ export declare class ComputeEnvironmentOrder {
|
|
|
60307
60659
|
|
|
60308
60660
|
export declare class ComputeLimits {
|
|
60309
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. */
|
|
60310
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. */
|
|
60311
60665
|
MinimumCapacityUnits: number;
|
|
60312
|
-
|
|
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. */
|
|
60313
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. */
|
|
60314
60671
|
MaximumOnDemandCapacityUnits?: number;
|
|
60315
60672
|
});
|
|
60316
60673
|
}
|
|
@@ -61934,35 +62291,47 @@ export declare class ConnectionDrainingPolicy {
|
|
|
61934
62291
|
|
|
61935
62292
|
export declare class ConnectionFunction_ConnectionFunctionConfig {
|
|
61936
62293
|
constructor(props: {
|
|
62294
|
+
/** A comment to describe the function. */
|
|
61937
62295
|
Comment: string;
|
|
62296
|
+
/** The function's runtime environment version. */
|
|
61938
62297
|
Runtime: "cloudfront-js-2.0";
|
|
62298
|
+
/** The configuration for the key value store associations. */
|
|
61939
62299
|
KeyValueStoreAssociations?: ConnectionFunction_KeyValueStoreAssociation[];
|
|
61940
62300
|
});
|
|
61941
62301
|
}
|
|
61942
62302
|
|
|
61943
62303
|
export declare class ConnectionFunction_KeyValueStoreAssociation {
|
|
61944
62304
|
constructor(props: {
|
|
62305
|
+
/** The Amazon Resource Name (ARN) of the key value store association. */
|
|
61945
62306
|
KeyValueStoreARN: string;
|
|
61946
62307
|
});
|
|
61947
62308
|
}
|
|
61948
62309
|
|
|
61949
62310
|
export declare class ConnectionFunction_Tag {
|
|
61950
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 ``_ - . : / = + @``. */
|
|
61951
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 ``_ - . : / = + @``. */
|
|
61952
62317
|
Value: string;
|
|
61953
62318
|
});
|
|
61954
62319
|
}
|
|
61955
62320
|
|
|
61956
62321
|
export declare class ConnectionFunctionAssociation {
|
|
61957
62322
|
constructor(props: {
|
|
62323
|
+
/** The association's ID. */
|
|
61958
62324
|
Id: string;
|
|
61959
62325
|
});
|
|
61960
62326
|
}
|
|
61961
62327
|
|
|
61962
62328
|
export declare class ConnectionFunctionConfig {
|
|
61963
62329
|
constructor(props: {
|
|
62330
|
+
/** A comment to describe the function. */
|
|
61964
62331
|
Comment: string;
|
|
62332
|
+
/** The function's runtime environment version. */
|
|
61965
62333
|
Runtime: "cloudfront-js-2.0";
|
|
62334
|
+
/** The configuration for the key value store associations. */
|
|
61966
62335
|
KeyValueStoreAssociations?: ConnectionFunction_KeyValueStoreAssociation[];
|
|
61967
62336
|
});
|
|
61968
62337
|
}
|
|
@@ -65621,6 +65990,7 @@ export declare class CustomOriginConfig {
|
|
|
65621
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.
|
|
65622
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*. */
|
|
65623
65992
|
OriginKeepaliveTimeout?: number;
|
|
65993
|
+
/** Configures mutual TLS authentication between CloudFront and your origin server. */
|
|
65624
65994
|
OriginMtlsConfig?: CfDistribution_OriginMtlsConfig;
|
|
65625
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.
|
|
65626
65996
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
@@ -65656,41 +66026,222 @@ export declare class CustomPermissions_Capabilities {
|
|
|
65656
66026
|
constructor(props: {
|
|
65657
66027
|
Action?: CustomPermissions_CapabilityState;
|
|
65658
66028
|
AddOrRunAnomalyDetectionForAnalyses?: CustomPermissions_CapabilityState;
|
|
66029
|
+
AmazonBedrockARSAction?: CustomPermissions_CapabilityState;
|
|
66030
|
+
AmazonBedrockFSAction?: CustomPermissions_CapabilityState;
|
|
66031
|
+
AmazonBedrockKRSAction?: CustomPermissions_CapabilityState;
|
|
66032
|
+
AmazonSThreeAction?: CustomPermissions_CapabilityState;
|
|
65659
66033
|
Analysis?: CustomPermissions_CapabilityState;
|
|
66034
|
+
ApproveFlowShareRequests?: CustomPermissions_CapabilityState;
|
|
66035
|
+
AsanaAction?: CustomPermissions_CapabilityState;
|
|
65660
66036
|
Automate?: CustomPermissions_CapabilityState;
|
|
66037
|
+
BambooHRAction?: CustomPermissions_CapabilityState;
|
|
66038
|
+
BoxAgentAction?: CustomPermissions_CapabilityState;
|
|
66039
|
+
BuildCalculatedFieldWithQ?: CustomPermissions_CapabilityState;
|
|
66040
|
+
CanvaAgentAction?: CustomPermissions_CapabilityState;
|
|
65661
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;
|
|
65662
66056
|
CreateAndUpdateDashboardEmailReports?: CustomPermissions_CapabilityState;
|
|
65663
66057
|
CreateAndUpdateDatasets?: CustomPermissions_CapabilityState;
|
|
65664
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;
|
|
65665
66091
|
CreateAndUpdateThemes?: CustomPermissions_CapabilityState;
|
|
65666
66092
|
CreateAndUpdateThresholdAlerts?: CustomPermissions_CapabilityState;
|
|
66093
|
+
CreateAndUpdateZendeskAction?: CustomPermissions_CapabilityState;
|
|
65667
66094
|
CreateChatAgents?: CustomPermissions_CapabilityState;
|
|
66095
|
+
CreateDashboardExecutiveSummaryWithQ?: CustomPermissions_CapabilityState;
|
|
65668
66096
|
CreateSharedFolders?: CustomPermissions_CapabilityState;
|
|
65669
66097
|
CreateSPICEDataset?: CustomPermissions_CapabilityState;
|
|
65670
66098
|
Dashboard?: CustomPermissions_CapabilityState;
|
|
66099
|
+
EditVisualWithQ?: CustomPermissions_CapabilityState;
|
|
65671
66100
|
ExportToCsv?: CustomPermissions_CapabilityState;
|
|
65672
66101
|
ExportToCsvInScheduledReports?: CustomPermissions_CapabilityState;
|
|
65673
66102
|
ExportToExcel?: CustomPermissions_CapabilityState;
|
|
65674
66103
|
ExportToExcelInScheduledReports?: CustomPermissions_CapabilityState;
|
|
65675
66104
|
ExportToPdf?: CustomPermissions_CapabilityState;
|
|
65676
66105
|
ExportToPdfInScheduledReports?: CustomPermissions_CapabilityState;
|
|
66106
|
+
Extension?: CustomPermissions_CapabilityState;
|
|
66107
|
+
FactSetAction?: CustomPermissions_CapabilityState;
|
|
65677
66108
|
Flow?: CustomPermissions_CapabilityState;
|
|
66109
|
+
GenericHTTPAction?: CustomPermissions_CapabilityState;
|
|
66110
|
+
GithubAction?: CustomPermissions_CapabilityState;
|
|
66111
|
+
GoogleCalendarAction?: CustomPermissions_CapabilityState;
|
|
66112
|
+
HubspotAction?: CustomPermissions_CapabilityState;
|
|
66113
|
+
HuggingFaceAction?: CustomPermissions_CapabilityState;
|
|
65678
66114
|
IncludeContentInScheduledReportsEmail?: CustomPermissions_CapabilityState;
|
|
66115
|
+
IntercomAction?: CustomPermissions_CapabilityState;
|
|
66116
|
+
JiraAction?: CustomPermissions_CapabilityState;
|
|
65679
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;
|
|
65680
66129
|
PerformFlowUiTask?: CustomPermissions_CapabilityState;
|
|
65681
66130
|
PrintReports?: CustomPermissions_CapabilityState;
|
|
65682
66131
|
PublishWithoutApproval?: CustomPermissions_CapabilityState;
|
|
65683
66132
|
RenameSharedFolders?: CustomPermissions_CapabilityState;
|
|
65684
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;
|
|
65685
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;
|
|
65686
66155
|
ShareDashboards?: CustomPermissions_CapabilityState;
|
|
65687
66156
|
ShareDatasets?: CustomPermissions_CapabilityState;
|
|
65688
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;
|
|
65689
66194
|
Space?: CustomPermissions_CapabilityState;
|
|
65690
66195
|
SubscribeDashboardEmailReports?: CustomPermissions_CapabilityState;
|
|
66196
|
+
TextractAction?: CustomPermissions_CapabilityState;
|
|
66197
|
+
Topic?: CustomPermissions_CapabilityState;
|
|
65691
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;
|
|
65692
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;
|
|
65693
66243
|
ViewAccountSPICECapacity?: CustomPermissions_CapabilityState;
|
|
66244
|
+
ZendeskAction?: CustomPermissions_CapabilityState;
|
|
65694
66245
|
});
|
|
65695
66246
|
}
|
|
65696
66247
|
|
|
@@ -73152,6 +73703,7 @@ export declare class DistributionConfig {
|
|
|
73152
73703
|
CNAMEs?: string[];
|
|
73153
73704
|
/** A comment to describe the distribution. The comment cannot be longer than 128 characters. */
|
|
73154
73705
|
Comment?: string;
|
|
73706
|
+
/** The distribution's connection function association. */
|
|
73155
73707
|
ConnectionFunctionAssociation?: CfDistribution_ConnectionFunctionAssociation;
|
|
73156
73708
|
/** This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants (tenant-only). */
|
|
73157
73709
|
ConnectionMode?: CfDistribution_ConnectionMode;
|
|
@@ -73215,6 +73767,7 @@ export declare class DistributionConfig {
|
|
|
73215
73767
|
TenantConfig?: Record<string, unknown>;
|
|
73216
73768
|
/** A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers. */
|
|
73217
73769
|
ViewerCertificate?: CfDistribution_ViewerCertificate;
|
|
73770
|
+
/** The distribution's viewer mTLS configuration. */
|
|
73218
73771
|
ViewerMtlsConfig?: CfDistribution_ViewerMtlsConfig;
|
|
73219
73772
|
/** Multi-tenant distributions only support WAF V2 web ACLs.
|
|
73220
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``.
|
|
@@ -75477,6 +76030,7 @@ export declare class ECSCapacityProvider_InstanceLaunchTemplate {
|
|
|
75477
76030
|
CapacityOptionType?: "ON_DEMAND" | "RESERVED" | "SPOT";
|
|
75478
76031
|
CapacityReservations?: ECSCapacityProvider_CapacityReservationRequest;
|
|
75479
76032
|
FipsEnabled?: boolean;
|
|
76033
|
+
InstanceMetadataTagsPropagation?: boolean;
|
|
75480
76034
|
InstanceRequirements?: ECSCapacityProvider_InstanceRequirementsRequest;
|
|
75481
76035
|
Monitoring?: ECSCapacityProvider_ManagedInstancesMonitoringOptions;
|
|
75482
76036
|
StorageConfiguration?: ECSCapacityProvider_ManagedInstancesStorageConfiguration;
|
|
@@ -77596,9 +78150,13 @@ export declare class EmergencyContact {
|
|
|
77596
78150
|
|
|
77597
78151
|
export declare class EMRCluster_Application {
|
|
77598
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. */
|
|
77599
78154
|
AdditionalInfo?: Record<string, unknown>;
|
|
78155
|
+
/** Arguments for Amazon EMR to pass to the application */
|
|
77600
78156
|
Args?: string[];
|
|
78157
|
+
/** The name of the application. */
|
|
77601
78158
|
Name?: string;
|
|
78159
|
+
/** The version of the application. */
|
|
77602
78160
|
Version?: string;
|
|
77603
78161
|
});
|
|
77604
78162
|
}
|
|
@@ -77612,12 +78170,14 @@ export declare class EMRCluster_AutoScalingPolicy {
|
|
|
77612
78170
|
|
|
77613
78171
|
export declare class EMRCluster_AutoTerminationPolicy {
|
|
77614
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) */
|
|
77615
78174
|
IdleTimeout?: number;
|
|
77616
78175
|
});
|
|
77617
78176
|
}
|
|
77618
78177
|
|
|
77619
78178
|
export declare class EMRCluster_BootstrapActionConfig {
|
|
77620
78179
|
constructor(props: {
|
|
78180
|
+
/** The name of the bootstrap action. */
|
|
77621
78181
|
Name: string;
|
|
77622
78182
|
ScriptBootstrapAction: EMRCluster_ScriptBootstrapActionConfig;
|
|
77623
78183
|
});
|
|
@@ -77625,39 +78185,60 @@ export declare class EMRCluster_BootstrapActionConfig {
|
|
|
77625
78185
|
|
|
77626
78186
|
export declare class EMRCluster_CloudWatchAlarmDefinition {
|
|
77627
78187
|
constructor(props: {
|
|
77628
|
-
|
|
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. */
|
|
77629
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. */
|
|
77630
78193
|
Period: number;
|
|
78194
|
+
/** The value against which the specified statistic is compared. */
|
|
77631
78195
|
Threshold: number;
|
|
77632
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. */
|
|
77633
78198
|
EvaluationPeriods?: number;
|
|
78199
|
+
/** The namespace for the CloudWatch metric. The default is AWS/ElasticMapReduce. */
|
|
77634
78200
|
Namespace?: string;
|
|
77635
|
-
|
|
77636
|
-
|
|
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>;
|
|
77637
78220
|
});
|
|
77638
78221
|
}
|
|
77639
78222
|
|
|
77640
78223
|
export declare class EMRCluster_ComputeLimits {
|
|
77641
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. */
|
|
77642
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. */
|
|
77643
78228
|
MinimumCapacityUnits: number;
|
|
77644
|
-
|
|
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. */
|
|
77645
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. */
|
|
77646
78234
|
MaximumOnDemandCapacityUnits?: number;
|
|
77647
78235
|
});
|
|
77648
78236
|
}
|
|
77649
78237
|
|
|
77650
|
-
export declare class EMRCluster_Configuration {
|
|
77651
|
-
constructor(props: {
|
|
77652
|
-
Classification?: string;
|
|
77653
|
-
ConfigurationProperties?: Record<string, unknown>;
|
|
77654
|
-
Configurations?: EMRCluster_Configuration[];
|
|
77655
|
-
});
|
|
77656
|
-
}
|
|
77657
|
-
|
|
77658
78238
|
export declare class EMRCluster_EbsBlockDeviceConfig {
|
|
77659
78239
|
constructor(props: {
|
|
77660
78240
|
VolumeSpecification: EMRCluster_VolumeSpecification;
|
|
78241
|
+
/** Number of EBS volumes with a specific volume configuration that are associated with every instance in the instance group */
|
|
77661
78242
|
VolumesPerInstance?: number;
|
|
77662
78243
|
});
|
|
77663
78244
|
}
|
|
@@ -77665,15 +78246,28 @@ export declare class EMRCluster_EbsBlockDeviceConfig {
|
|
|
77665
78246
|
export declare class EMRCluster_EbsConfiguration {
|
|
77666
78247
|
constructor(props: {
|
|
77667
78248
|
EbsBlockDeviceConfigs?: EMRCluster_EbsBlockDeviceConfig[];
|
|
78249
|
+
/** Indicates whether an Amazon EBS volume is EBS-optimized. */
|
|
77668
78250
|
EbsOptimized?: boolean;
|
|
77669
78251
|
});
|
|
77670
78252
|
}
|
|
77671
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
|
+
|
|
77672
78263
|
export declare class EMRCluster_HadoopJarStepConfig {
|
|
77673
78264
|
constructor(props: {
|
|
78265
|
+
/** A path to a JAR file run during the step. */
|
|
77674
78266
|
Jar: string;
|
|
77675
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. */
|
|
77676
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. */
|
|
77677
78271
|
StepProperties?: EMRCluster_KeyValue[];
|
|
77678
78272
|
});
|
|
77679
78273
|
}
|
|
@@ -77682,9 +78276,12 @@ export declare class EMRCluster_InstanceFleetConfig {
|
|
|
77682
78276
|
constructor(props: {
|
|
77683
78277
|
InstanceTypeConfigs?: EMRCluster_InstanceTypeConfig[];
|
|
77684
78278
|
LaunchSpecifications?: EMRCluster_InstanceFleetProvisioningSpecifications;
|
|
78279
|
+
/** The friendly name of the instance fleet. */
|
|
77685
78280
|
Name?: string;
|
|
77686
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 */
|
|
77687
78283
|
TargetOnDemandCapacity?: number;
|
|
78284
|
+
/** The target capacity of Spot units for the instance fleet, which determines how many Spot Instances to provision. */
|
|
77688
78285
|
TargetSpotCapacity?: number;
|
|
77689
78286
|
});
|
|
77690
78287
|
}
|
|
@@ -77705,61 +78302,99 @@ export declare class EMRCluster_InstanceFleetResizingSpecifications {
|
|
|
77705
78302
|
|
|
77706
78303
|
export declare class EMRCluster_InstanceGroupConfig {
|
|
77707
78304
|
constructor(props: {
|
|
78305
|
+
/** Target number of instances for the instance group. */
|
|
77708
78306
|
InstanceCount: number;
|
|
78307
|
+
/** The EC2 instance type for all instances in the instance group. */
|
|
77709
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. */
|
|
77710
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. */
|
|
77711
78312
|
BidPrice?: string;
|
|
77712
|
-
|
|
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. */
|
|
77713
78316
|
CustomAmiId?: string;
|
|
78317
|
+
/** EBS configurations that will be attached to each EC2 instance in the instance group. */
|
|
77714
78318
|
EbsConfiguration?: EMRCluster_EbsConfiguration;
|
|
77715
|
-
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. */
|
|
77716
78322
|
Name?: string;
|
|
77717
78323
|
});
|
|
77718
78324
|
}
|
|
77719
78325
|
|
|
77720
78326
|
export declare class EMRCluster_InstanceTypeConfig {
|
|
77721
78327
|
constructor(props: {
|
|
78328
|
+
/** An EC2 instance type, such as m3.xlarge. */
|
|
77722
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%. */
|
|
77723
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%. */
|
|
77724
78333
|
BidPriceAsPercentageOfOnDemandPrice?: number;
|
|
77725
|
-
|
|
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. */
|
|
77726
78337
|
CustomAmiId?: string;
|
|
78338
|
+
/** The configuration of Amazon Elastic Block Store (Amazon EBS) attached to each instance as defined by InstanceType. */
|
|
77727
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. */
|
|
77728
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. */
|
|
77729
78343
|
WeightedCapacity?: number;
|
|
77730
78344
|
});
|
|
77731
78345
|
}
|
|
77732
78346
|
|
|
77733
78347
|
export declare class EMRCluster_JobFlowInstancesConfig {
|
|
77734
78348
|
constructor(props: {
|
|
78349
|
+
/** A list of additional Amazon EC2 security group IDs for the master node. */
|
|
77735
78350
|
AdditionalMasterSecurityGroups?: string[];
|
|
78351
|
+
/** A list of additional Amazon EC2 security group IDs for the core and task nodes. */
|
|
77736
78352
|
AdditionalSlaveSecurityGroups?: string[];
|
|
77737
78353
|
CoreInstanceFleet?: EMRCluster_InstanceFleetConfig;
|
|
78354
|
+
/** Configuration for the instance groups in a cluster. */
|
|
77738
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'. */
|
|
77739
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. */
|
|
77740
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. */
|
|
77741
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. */
|
|
77742
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. */
|
|
77743
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. */
|
|
77744
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. */
|
|
77745
78369
|
KeepJobFlowAliveWhenNoSteps?: boolean;
|
|
77746
78370
|
MasterInstanceFleet?: EMRCluster_InstanceFleetConfig;
|
|
78371
|
+
/** Configuration for the instance groups in a cluster. */
|
|
77747
78372
|
MasterInstanceGroup?: EMRCluster_InstanceGroupConfig;
|
|
78373
|
+
/** The Availability Zone in which the cluster runs. */
|
|
77748
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. */
|
|
77749
78376
|
ServiceAccessSecurityGroup?: string;
|
|
77750
78377
|
TaskInstanceFleets?: EMRCluster_InstanceFleetConfig[];
|
|
78378
|
+
/** Configuration for the instance groups in a cluster. */
|
|
77751
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. */
|
|
77752
78381
|
TerminationProtected?: boolean;
|
|
78382
|
+
/** Indicates whether Amazon EMR should gracefully replace core nodes that have degraded within the cluster. */
|
|
77753
78383
|
UnhealthyNodeReplacement?: boolean;
|
|
77754
78384
|
});
|
|
77755
78385
|
}
|
|
77756
78386
|
|
|
77757
78387
|
export declare class EMRCluster_KerberosAttributes {
|
|
77758
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. */
|
|
77759
78390
|
KdcAdminPassword: string;
|
|
78391
|
+
/** The name of the Kerberos realm to which all nodes in a cluster belong. For example, EC2.INTERNAL. */
|
|
77760
78392
|
Realm: string;
|
|
78393
|
+
/** The Active Directory password for ADDomainJoinUser. */
|
|
77761
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. */
|
|
77762
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. */
|
|
77763
78398
|
CrossRealmTrustPrincipalPassword?: string;
|
|
77764
78399
|
});
|
|
77765
78400
|
}
|
|
@@ -77786,16 +78421,25 @@ export declare class EMRCluster_MetricDimension {
|
|
|
77786
78421
|
});
|
|
77787
78422
|
}
|
|
77788
78423
|
|
|
78424
|
+
export declare class EMRCluster_MonitoringConfiguration {
|
|
78425
|
+
constructor(props: {
|
|
78426
|
+
CloudWatchLogConfiguration?: EMRCluster_CloudWatchLogConfiguration;
|
|
78427
|
+
});
|
|
78428
|
+
}
|
|
78429
|
+
|
|
77789
78430
|
export declare class EMRCluster_OnDemandCapacityReservationOptions {
|
|
77790
78431
|
constructor(props: {
|
|
78432
|
+
/** Supported values: none, open */
|
|
77791
78433
|
CapacityReservationPreference?: string;
|
|
77792
78434
|
CapacityReservationResourceGroupArn?: string;
|
|
78435
|
+
/** Supported values: use-capacity-reservations-first */
|
|
77793
78436
|
UsageStrategy?: string;
|
|
77794
78437
|
});
|
|
77795
78438
|
}
|
|
77796
78439
|
|
|
77797
78440
|
export declare class EMRCluster_OnDemandProvisioningSpecification {
|
|
77798
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. */
|
|
77799
78443
|
AllocationStrategy: string;
|
|
77800
78444
|
CapacityReservationOptions?: EMRCluster_OnDemandCapacityReservationOptions;
|
|
77801
78445
|
});
|
|
@@ -77811,66 +78455,87 @@ export declare class EMRCluster_OnDemandResizingSpecification {
|
|
|
77811
78455
|
|
|
77812
78456
|
export declare class EMRCluster_PlacementGroupConfig {
|
|
77813
78457
|
constructor(props: {
|
|
77814
|
-
|
|
77815
|
-
|
|
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";
|
|
77816
78462
|
});
|
|
77817
78463
|
}
|
|
77818
78464
|
|
|
77819
78465
|
export declare class EMRCluster_PlacementType {
|
|
77820
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. */
|
|
77821
78468
|
AvailabilityZone: string;
|
|
77822
78469
|
});
|
|
77823
78470
|
}
|
|
77824
78471
|
|
|
77825
78472
|
export declare class EMRCluster_ScalingAction {
|
|
77826
78473
|
constructor(props: {
|
|
78474
|
+
/** The type of adjustment the automatic scaling activity makes when triggered, and the periodicity of the adjustment. */
|
|
77827
78475
|
SimpleScalingPolicyConfiguration: EMRCluster_SimpleScalingPolicyConfiguration;
|
|
77828
|
-
|
|
78476
|
+
/** Not available for instance groups. Instance groups use the market type specified for the group. */
|
|
78477
|
+
Market?: "ON_DEMAND" | "SPOT";
|
|
77829
78478
|
});
|
|
77830
78479
|
}
|
|
77831
78480
|
|
|
77832
78481
|
export declare class EMRCluster_ScalingConstraints {
|
|
77833
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. */
|
|
77834
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. */
|
|
77835
78486
|
MinCapacity: number;
|
|
77836
78487
|
});
|
|
77837
78488
|
}
|
|
77838
78489
|
|
|
77839
78490
|
export declare class EMRCluster_ScalingRule {
|
|
77840
78491
|
constructor(props: {
|
|
78492
|
+
/** The conditions that trigger an automatic scaling activity. */
|
|
77841
78493
|
Action: EMRCluster_ScalingAction;
|
|
78494
|
+
/** The name used to identify an automatic scaling rule. Rule names must be unique within a scaling policy. */
|
|
77842
78495
|
Name: string;
|
|
78496
|
+
/** The CloudWatch alarm definition that determines when automatic scaling activity is triggered. */
|
|
77843
78497
|
Trigger: EMRCluster_ScalingTrigger;
|
|
78498
|
+
/** A friendly, more verbose description of the automatic scaling rule. */
|
|
77844
78499
|
Description?: string;
|
|
77845
78500
|
});
|
|
77846
78501
|
}
|
|
77847
78502
|
|
|
77848
78503
|
export declare class EMRCluster_ScalingTrigger {
|
|
77849
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. */
|
|
77850
78506
|
CloudWatchAlarmDefinition: EMRCluster_CloudWatchAlarmDefinition;
|
|
77851
78507
|
});
|
|
77852
78508
|
}
|
|
77853
78509
|
|
|
77854
78510
|
export declare class EMRCluster_ScriptBootstrapActionConfig {
|
|
77855
78511
|
constructor(props: {
|
|
78512
|
+
/** Location in Amazon S3 of the script to run during a bootstrap action. */
|
|
77856
78513
|
Path: string;
|
|
78514
|
+
/** A list of command line arguments to pass to the bootstrap action script. */
|
|
77857
78515
|
Args?: string[];
|
|
77858
78516
|
});
|
|
77859
78517
|
}
|
|
77860
78518
|
|
|
77861
78519
|
export declare class EMRCluster_SimpleScalingPolicyConfiguration {
|
|
77862
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. */
|
|
77863
78522
|
ScalingAdjustment: number;
|
|
77864
|
-
|
|
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. */
|
|
77865
78526
|
CoolDown?: number;
|
|
77866
78527
|
});
|
|
77867
78528
|
}
|
|
77868
78529
|
|
|
77869
78530
|
export declare class EMRCluster_SpotProvisioningSpecification {
|
|
77870
78531
|
constructor(props: {
|
|
77871
|
-
|
|
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. */
|
|
77872
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. */
|
|
77873
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. */
|
|
77874
78539
|
BlockDurationMinutes?: number;
|
|
77875
78540
|
});
|
|
77876
78541
|
}
|
|
@@ -77884,28 +78549,57 @@ export declare class EMRCluster_SpotResizingSpecification {
|
|
|
77884
78549
|
|
|
77885
78550
|
export declare class EMRCluster_StepConfig {
|
|
77886
78551
|
constructor(props: {
|
|
78552
|
+
/** The JAR file used for the step. */
|
|
77887
78553
|
HadoopJarStep: EMRCluster_HadoopJarStepConfig;
|
|
78554
|
+
/** The name of the step. */
|
|
77888
78555
|
Name: string;
|
|
77889
|
-
|
|
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";
|
|
77890
78569
|
});
|
|
77891
78570
|
}
|
|
77892
78571
|
|
|
77893
78572
|
export declare class EMRCluster_Tag {
|
|
77894
78573
|
constructor(props: {
|
|
78574
|
+
/** A user-defined key, which is the minimum required information for a valid tag. For more information. */
|
|
77895
78575
|
Key: string;
|
|
78576
|
+
/** A user-defined value, which is optional in a tag. For more information */
|
|
77896
78577
|
Value: string;
|
|
77897
78578
|
});
|
|
77898
78579
|
}
|
|
77899
78580
|
|
|
77900
78581
|
export declare class EMRCluster_VolumeSpecification {
|
|
77901
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. */
|
|
77902
78584
|
SizeInGB: number;
|
|
78585
|
+
/** The volume type. Volume types supported are gp3, gp2, io1, st1, sc1, and standard. */
|
|
77903
78586
|
VolumeType: string;
|
|
78587
|
+
/** The number of I/O operations per second (IOPS) that the volume supports. */
|
|
77904
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. */
|
|
77905
78590
|
Throughput?: number;
|
|
77906
78591
|
});
|
|
77907
78592
|
}
|
|
77908
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
|
+
|
|
77909
78603
|
export declare class EMRContainersEndpoint_Certificate {
|
|
77910
78604
|
constructor(props: {
|
|
77911
78605
|
CertificateArn?: string;
|
|
@@ -80329,14 +81023,6 @@ export declare class EventLogConfig {
|
|
|
80329
81023
|
});
|
|
80330
81024
|
}
|
|
80331
81025
|
|
|
80332
|
-
export declare class EventParameters {
|
|
80333
|
-
constructor(props: {
|
|
80334
|
-
EventType: string;
|
|
80335
|
-
SnapshotOwner: string[];
|
|
80336
|
-
DescriptionRegex?: string;
|
|
80337
|
-
});
|
|
80338
|
-
}
|
|
80339
|
-
|
|
80340
81026
|
export declare class EventRule_AppSyncParameters {
|
|
80341
81027
|
constructor(props: {
|
|
80342
81028
|
GraphQLOperation: string;
|
|
@@ -80547,6 +81233,13 @@ export declare class EventSchemasSchema_TagsEntry {
|
|
|
80547
81233
|
});
|
|
80548
81234
|
}
|
|
80549
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
|
+
|
|
80550
81243
|
export declare class EventsConnection_ApiKeyAuthParameters {
|
|
80551
81244
|
constructor(props: {
|
|
80552
81245
|
ApiKeyName: string;
|
|
@@ -82625,6 +83318,13 @@ export declare class FinSpaceEnvironment_Tag {
|
|
|
82625
83318
|
});
|
|
82626
83319
|
}
|
|
82627
83320
|
|
|
83321
|
+
export declare class FipsEndpoints {
|
|
83322
|
+
constructor(props: {
|
|
83323
|
+
CollectionEndpoint?: string;
|
|
83324
|
+
DashboardEndpoint?: string;
|
|
83325
|
+
});
|
|
83326
|
+
}
|
|
83327
|
+
|
|
82628
83328
|
export declare class FirehoseAction {
|
|
82629
83329
|
constructor(props: {
|
|
82630
83330
|
DeliveryStreamName: string;
|
|
@@ -89409,6 +90109,12 @@ export declare class ImageBuilder_Tag {
|
|
|
89409
90109
|
});
|
|
89410
90110
|
}
|
|
89411
90111
|
|
|
90112
|
+
export declare class ImageBuilder_VolumeConfig {
|
|
90113
|
+
constructor(props: {
|
|
90114
|
+
VolumeSizeInGb?: number;
|
|
90115
|
+
});
|
|
90116
|
+
}
|
|
90117
|
+
|
|
89412
90118
|
export declare class ImageBuilder_VpcConfig {
|
|
89413
90119
|
constructor(props: {
|
|
89414
90120
|
SecurityGroupIds?: string[];
|
|
@@ -91830,6 +92536,7 @@ export declare class InstanceLaunchTemplate {
|
|
|
91830
92536
|
CapacityOptionType?: "ON_DEMAND" | "RESERVED" | "SPOT";
|
|
91831
92537
|
CapacityReservations?: ECSCapacityProvider_CapacityReservationRequest;
|
|
91832
92538
|
FipsEnabled?: boolean;
|
|
92539
|
+
InstanceMetadataTagsPropagation?: boolean;
|
|
91833
92540
|
InstanceRequirements?: ECSCapacityProvider_InstanceRequirementsRequest;
|
|
91834
92541
|
Monitoring?: ECSCapacityProvider_ManagedInstancesMonitoringOptions;
|
|
91835
92542
|
StorageConfiguration?: ECSCapacityProvider_ManagedInstancesStorageConfiguration;
|
|
@@ -92194,6 +92901,33 @@ export declare class InterceptorInputConfiguration {
|
|
|
92194
92901
|
});
|
|
92195
92902
|
}
|
|
92196
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
|
+
|
|
92197
92931
|
export declare class InterfaceMapping {
|
|
92198
92932
|
constructor(props: {
|
|
92199
92933
|
/** logical interface name, unique in the list */
|
|
@@ -93477,16 +94211,22 @@ export declare class IPAM_Tag {
|
|
|
93477
94211
|
|
|
93478
94212
|
export declare class IpamCidrConfig {
|
|
93479
94213
|
constructor(props: {
|
|
94214
|
+
/** The CIDR that specifies the IP address range for this IPAM configuration. */
|
|
93480
94215
|
Cidr: string;
|
|
94216
|
+
/** The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. */
|
|
93481
94217
|
IpamPoolArn: string;
|
|
93482
94218
|
});
|
|
93483
94219
|
}
|
|
93484
94220
|
|
|
93485
94221
|
export declare class IpamCidrConfigResult {
|
|
93486
94222
|
constructor(props: {
|
|
94223
|
+
/** The specified Anycast IP address allocated from the IPAM pool for this CIDR configuration. */
|
|
93487
94224
|
AnycastIp?: string;
|
|
94225
|
+
/** The CIDR that specifies the IP address range for this IPAM configuration. */
|
|
93488
94226
|
Cidr?: string;
|
|
94227
|
+
/** The Amazon Resource Name (ARN) of the IPAM pool that the CIDR block is assigned to. */
|
|
93489
94228
|
IpamPoolArn?: string;
|
|
94229
|
+
/** The current status of the IPAM CIDR configuration. */
|
|
93490
94230
|
Status?: string;
|
|
93491
94231
|
});
|
|
93492
94232
|
}
|
|
@@ -94340,24 +95080,40 @@ export declare class JobDefinition_Volume {
|
|
|
94340
95080
|
|
|
94341
95081
|
export declare class JobFlowInstancesConfig {
|
|
94342
95082
|
constructor(props: {
|
|
95083
|
+
/** A list of additional Amazon EC2 security group IDs for the master node. */
|
|
94343
95084
|
AdditionalMasterSecurityGroups?: string[];
|
|
95085
|
+
/** A list of additional Amazon EC2 security group IDs for the core and task nodes. */
|
|
94344
95086
|
AdditionalSlaveSecurityGroups?: string[];
|
|
94345
95087
|
CoreInstanceFleet?: EMRCluster_InstanceFleetConfig;
|
|
95088
|
+
/** Configuration for the instance groups in a cluster. */
|
|
94346
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'. */
|
|
94347
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. */
|
|
94348
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. */
|
|
94349
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. */
|
|
94350
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. */
|
|
94351
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. */
|
|
94352
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. */
|
|
94353
95103
|
KeepJobFlowAliveWhenNoSteps?: boolean;
|
|
94354
95104
|
MasterInstanceFleet?: EMRCluster_InstanceFleetConfig;
|
|
95105
|
+
/** Configuration for the instance groups in a cluster. */
|
|
94355
95106
|
MasterInstanceGroup?: EMRCluster_InstanceGroupConfig;
|
|
95107
|
+
/** The Availability Zone in which the cluster runs. */
|
|
94356
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. */
|
|
94357
95110
|
ServiceAccessSecurityGroup?: string;
|
|
94358
95111
|
TaskInstanceFleets?: EMRCluster_InstanceFleetConfig[];
|
|
95112
|
+
/** Configuration for the instance groups in a cluster. */
|
|
94359
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. */
|
|
94360
95115
|
TerminationProtected?: boolean;
|
|
95116
|
+
/** Indicates whether Amazon EMR should gracefully replace core nodes that have degraded within the cluster. */
|
|
94361
95117
|
UnhealthyNodeReplacement?: boolean;
|
|
94362
95118
|
});
|
|
94363
95119
|
}
|
|
@@ -95337,10 +96093,15 @@ export declare class KendraSourceDetail {
|
|
|
95337
96093
|
|
|
95338
96094
|
export declare class KerberosAttributes {
|
|
95339
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. */
|
|
95340
96097
|
KdcAdminPassword: string;
|
|
96098
|
+
/** The name of the Kerberos realm to which all nodes in a cluster belong. For example, EC2.INTERNAL. */
|
|
95341
96099
|
Realm: string;
|
|
96100
|
+
/** The Active Directory password for ADDomainJoinUser. */
|
|
95342
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. */
|
|
95343
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. */
|
|
95344
96105
|
CrossRealmTrustPrincipalPassword?: string;
|
|
95345
96106
|
});
|
|
95346
96107
|
}
|
|
@@ -111557,6 +112318,13 @@ export declare class OpenSearchServerlessCollection_EncryptionConfig {
|
|
|
111557
112318
|
});
|
|
111558
112319
|
}
|
|
111559
112320
|
|
|
112321
|
+
export declare class OpenSearchServerlessCollection_FipsEndpoints {
|
|
112322
|
+
constructor(props: {
|
|
112323
|
+
CollectionEndpoint?: string;
|
|
112324
|
+
DashboardEndpoint?: string;
|
|
112325
|
+
});
|
|
112326
|
+
}
|
|
112327
|
+
|
|
111560
112328
|
export declare class OpenSearchServerlessCollection_Tag {
|
|
111561
112329
|
constructor(props: {
|
|
111562
112330
|
/** The key in the key-value pair */
|
|
@@ -112336,7 +113104,8 @@ export declare class OrganizationCentralizationRule_LogsEncryptionConfiguration
|
|
|
112336
113104
|
export declare class OrganizationCentralizationRule_SourceLogsConfiguration {
|
|
112337
113105
|
constructor(props: {
|
|
112338
113106
|
EncryptedLogGroupStrategy: "ALLOW" | "SKIP";
|
|
112339
|
-
|
|
113107
|
+
DataSourceSelectionCriteria?: string;
|
|
113108
|
+
LogGroupSelectionCriteria?: string;
|
|
112340
113109
|
});
|
|
112341
113110
|
}
|
|
112342
113111
|
|
|
@@ -112766,6 +113535,7 @@ export declare class OriginGroups {
|
|
|
112766
113535
|
|
|
112767
113536
|
export declare class OriginMtlsConfig {
|
|
112768
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. */
|
|
112769
113539
|
ClientCertificateArn: string;
|
|
112770
113540
|
});
|
|
112771
113541
|
}
|
|
@@ -114625,6 +115395,15 @@ export declare class PCSCluster_AuthKey {
|
|
|
114625
115395
|
});
|
|
114626
115396
|
}
|
|
114627
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
|
+
|
|
114628
115407
|
export declare class PCSCluster_Endpoint {
|
|
114629
115408
|
constructor(props: {
|
|
114630
115409
|
/** The endpoint's connection port number. */
|
|
@@ -114673,6 +115452,15 @@ export declare class PCSCluster_SlurmCustomSetting {
|
|
|
114673
115452
|
});
|
|
114674
115453
|
}
|
|
114675
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
|
+
|
|
114676
115464
|
export declare class PCSCluster_SlurmRest {
|
|
114677
115465
|
constructor(props: {
|
|
114678
115466
|
/** The default value is `NONE`. A value of `STANDARD` means that Slurm Rest is enabled. */
|
|
@@ -116213,13 +117001,16 @@ export declare class PlacementGroup_Tag {
|
|
|
116213
117001
|
|
|
116214
117002
|
export declare class PlacementGroupConfig {
|
|
116215
117003
|
constructor(props: {
|
|
116216
|
-
|
|
116217
|
-
|
|
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";
|
|
116218
117008
|
});
|
|
116219
117009
|
}
|
|
116220
117010
|
|
|
116221
117011
|
export declare class PlacementType {
|
|
116222
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. */
|
|
116223
117014
|
AvailabilityZone: string;
|
|
116224
117015
|
});
|
|
116225
117016
|
}
|
|
@@ -118326,13 +119117,6 @@ export declare class ProtocolDetails {
|
|
|
118326
119117
|
});
|
|
118327
119118
|
}
|
|
118328
119119
|
|
|
118329
|
-
export declare class Provider {
|
|
118330
|
-
constructor(props: {
|
|
118331
|
-
/** 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. */
|
|
118332
|
-
KeyArn?: string;
|
|
118333
|
-
});
|
|
118334
|
-
}
|
|
118335
|
-
|
|
118336
119120
|
export declare class ProvisionalConfiguration {
|
|
118337
119121
|
constructor(props: {
|
|
118338
119122
|
MaxTimeToLiveInMinutes: number;
|
|
@@ -130176,6 +130960,76 @@ export declare class RecommendationConfiguration {
|
|
|
130176
130960
|
});
|
|
130177
130961
|
}
|
|
130178
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
|
+
|
|
130179
131033
|
export declare class RecordExpiration {
|
|
130180
131034
|
constructor(props: {
|
|
130181
131035
|
/** Specifies whether journal table record expiration is enabled or disabled. */
|
|
@@ -138124,7 +138978,9 @@ export declare class Script_Tag {
|
|
|
138124
138978
|
|
|
138125
138979
|
export declare class ScriptBootstrapActionConfig {
|
|
138126
138980
|
constructor(props: {
|
|
138981
|
+
/** Location in Amazon S3 of the script to run during a bootstrap action. */
|
|
138127
138982
|
Path: string;
|
|
138983
|
+
/** A list of command line arguments to pass to the bootstrap action script. */
|
|
138128
138984
|
Args?: string[];
|
|
138129
138985
|
});
|
|
138130
138986
|
}
|
|
@@ -141237,6 +142093,15 @@ export declare class SlotValueSelectionSetting {
|
|
|
141237
142093
|
});
|
|
141238
142094
|
}
|
|
141239
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
|
+
|
|
141240
142105
|
export declare class SlurmRest {
|
|
141241
142106
|
constructor(props: {
|
|
141242
142107
|
/** The default value is `NONE`. A value of `STANDARD` means that Slurm Rest is enabled. */
|
|
@@ -141888,7 +142753,8 @@ export declare class SourceLocation_Tag {
|
|
|
141888
142753
|
export declare class SourceLogsConfiguration {
|
|
141889
142754
|
constructor(props: {
|
|
141890
142755
|
EncryptedLogGroupStrategy: "ALLOW" | "SKIP";
|
|
141891
|
-
|
|
142756
|
+
DataSourceSelectionCriteria?: string;
|
|
142757
|
+
LogGroupSelectionCriteria?: string;
|
|
141892
142758
|
});
|
|
141893
142759
|
}
|
|
141894
142760
|
|
|
@@ -148655,6 +149521,15 @@ export declare class TrainingMetric {
|
|
|
148655
149521
|
});
|
|
148656
149522
|
}
|
|
148657
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
|
+
|
|
148658
149533
|
export declare class TranscriptConfiguration {
|
|
148659
149534
|
constructor(props: {
|
|
148660
149535
|
ChannelLabeling?: DataAutomationProject_ChannelLabelingConfiguration;
|
|
@@ -149358,8 +150233,11 @@ export declare class TrustedSigners {
|
|
|
149358
150233
|
|
|
149359
150234
|
export declare class TrustStoreConfig {
|
|
149360
150235
|
constructor(props: {
|
|
150236
|
+
/** The trust store ID. */
|
|
149361
150237
|
TrustStoreId: string;
|
|
150238
|
+
/** The configuration to use to advertise trust store CA names. */
|
|
149362
150239
|
AdvertiseTrustStoreCaNames?: boolean;
|
|
150240
|
+
/** The configuration to use to ignore certificate expiration. */
|
|
149363
150241
|
IgnoreCertificateExpiry?: boolean;
|
|
149364
150242
|
});
|
|
149365
150243
|
}
|
|
@@ -151278,7 +152156,9 @@ export declare class ViewerCertificate {
|
|
|
151278
152156
|
|
|
151279
152157
|
export declare class ViewerMtlsConfig {
|
|
151280
152158
|
constructor(props: {
|
|
152159
|
+
/** The viewer mTLS mode. */
|
|
151281
152160
|
Mode?: CfDistribution_ViewerMtlsMode;
|
|
152161
|
+
/** The trust store configuration associated with the viewer mTLS configuration. */
|
|
151282
152162
|
TrustStoreConfig?: CfDistribution_TrustStoreConfig;
|
|
151283
152163
|
});
|
|
151284
152164
|
}
|
|
@@ -152271,6 +153151,12 @@ export declare class VoiceSettings {
|
|
|
152271
153151
|
});
|
|
152272
153152
|
}
|
|
152273
153153
|
|
|
153154
|
+
export declare class VolumeConfig {
|
|
153155
|
+
constructor(props: {
|
|
153156
|
+
VolumeSizeInGb?: number;
|
|
153157
|
+
});
|
|
153158
|
+
}
|
|
153159
|
+
|
|
152274
153160
|
export declare class VolumeConfiguration {
|
|
152275
153161
|
constructor(props: {
|
|
152276
153162
|
Encrypted?: boolean;
|
|
@@ -152811,6 +153697,7 @@ export declare class VpcOriginConfig {
|
|
|
152811
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.
|
|
152812
153698
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*. */
|
|
152813
153699
|
OriginReadTimeout?: number;
|
|
153700
|
+
/** The account ID of the AWS-account that owns the VPC origin. */
|
|
152814
153701
|
OwnerAccountId?: string;
|
|
152815
153702
|
});
|
|
152816
153703
|
}
|
|
@@ -162151,6 +163038,16 @@ export type QuickSightTopic_TopicUserExperienceVersion = "LEGACY" | "NEW_READER_
|
|
|
162151
163038
|
|
|
162152
163039
|
export type QuickSightTopic_UndefinedSpecifiedValueType = "LEAST" | "MOST";
|
|
162153
163040
|
|
|
163041
|
+
export type Recommender_RecommenderStatus =
|
|
163042
|
+
| "ACTIVE"
|
|
163043
|
+
| "DELETING"
|
|
163044
|
+
| "FAILED"
|
|
163045
|
+
| "INACTIVE"
|
|
163046
|
+
| "IN_PROGRESS"
|
|
163047
|
+
| "PENDING"
|
|
163048
|
+
| "STARTING"
|
|
163049
|
+
| "STOPPING";
|
|
163050
|
+
|
|
162154
163051
|
export type RedshiftServerlessNamespace_LogExport =
|
|
162155
163052
|
| "connectionlog"
|
|
162156
163053
|
| "useractivitylog"
|