@intentius/chant-lexicon-aws 0.32.0 → 0.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generated/index.d.ts +24 -15
- package/dist/generated/index.d.ts.map +1 -1
- package/dist/integrity.json +4 -4
- package/dist/manifest.json +1 -1
- package/dist/meta.json +249 -151
- package/dist/plugin.d.ts +0 -6
- package/dist/plugin.d.ts.map +1 -1
- package/dist/types/index.d.ts +316 -203
- package/package.json +2 -2
- package/src/generated/index.d.ts +316 -203
- package/src/generated/index.ts +24 -15
- package/src/generated/lexicon-aws.json +249 -151
- package/src/plugin.ts +89 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -14176,7 +14176,7 @@ export declare class EventSourceMapping {
|
|
|
14176
14176
|
/** (Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry. The default value is false.
|
|
14177
14177
|
When using ``BisectBatchOnFunctionError``, check the ``BatchSize`` parameter in the ``OnFailure`` destination message's metadata. The ``BatchSize`` could be greater than 1 since LAM consolidates failed messages metadata when writing to the ``OnFailure`` destination. */
|
|
14178
14178
|
BisectBatchOnFunctionError?: boolean;
|
|
14179
|
-
/** (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka
|
|
14179
|
+
/** (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka) A configuration object that specifies the destination of an event after Lambda processes it. */
|
|
14180
14180
|
DestinationConfig?: EventSourceMapping_DestinationConfig;
|
|
14181
14181
|
/** Specific configuration settings for a DocumentDB event source. */
|
|
14182
14182
|
DocumentDBEventSourceConfig?: EventSourceMapping_DocumentDBEventSourceConfig;
|
|
@@ -14200,17 +14200,17 @@ export declare class EventSourceMapping {
|
|
|
14200
14200
|
Id?: string;
|
|
14201
14201
|
/** The ARN of the KMSlong (KMS) customer managed key that Lambda uses to encrypt your function's [filter criteria](https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics). */
|
|
14202
14202
|
KmsKeyArn?: string;
|
|
14203
|
-
/**
|
|
14203
|
+
/** (Amazon MSK, and self-managed Apache Kafka only) The logging configuration for your event source. For more information, see [Event source mapping logging](https://docs.aws.amazon.com/lambda/latest/dg/esm-logging.html). */
|
|
14204
14204
|
LoggingConfig?: EventSourceMapping_LoggingConfig;
|
|
14205
14205
|
/** The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.
|
|
14206
14206
|
*Default (, , event sources)*: 0
|
|
14207
14207
|
*Default (, Kafka, , event sources)*: 500 ms
|
|
14208
14208
|
*Related setting:* For SQS event sources, when you set ``BatchSize`` to a value greater than 10, you must set ``MaximumBatchingWindowInSeconds`` to at least 1. */
|
|
14209
14209
|
MaximumBatchingWindowInSeconds?: number;
|
|
14210
|
-
/** (Kinesis
|
|
14210
|
+
/** (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite. When the value is set to infinite, Lambda never discards old records.
|
|
14211
14211
|
The minimum valid value for maximum record age is 60s. Although values less than 60 and greater than -1 fall within the parameter's absolute range, they are not allowed */
|
|
14212
14212
|
MaximumRecordAgeInSeconds?: number;
|
|
14213
|
-
/** (Kinesis
|
|
14213
|
+
/** (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, Lambda retries failed records until the record expires in the event source. */
|
|
14214
14214
|
MaximumRetryAttempts?: number;
|
|
14215
14215
|
/** The metrics configuration for your event source. For more information, see [Event source mapping metrics](https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics). */
|
|
14216
14216
|
MetricsConfig?: EventSourceMapping_MetricsConfig;
|
|
@@ -16424,6 +16424,8 @@ export declare class GrafanaWorkspace {
|
|
|
16424
16424
|
/** The name of the AWS CloudFormation stack set to use to generate IAM roles to be used for this workspace. */
|
|
16425
16425
|
StackSetName?: string;
|
|
16426
16426
|
Status?: GrafanaWorkspace_WorkspaceStatus;
|
|
16427
|
+
/** The list of tags associated with the workspace. */
|
|
16428
|
+
Tags?: Record<string, unknown>[];
|
|
16427
16429
|
VpcConfiguration?: GrafanaWorkspace_VpcConfiguration;
|
|
16428
16430
|
}, attributes?: CFResourceAttributes);
|
|
16429
16431
|
readonly CreationTimestamp: string;
|
|
@@ -28328,12 +28330,12 @@ export declare class QuickConnect {
|
|
|
28328
28330
|
/** The Amazon Resource Name (ARN) for the quick connect. */
|
|
28329
28331
|
QuickConnectArn?: string;
|
|
28330
28332
|
/** The type of quick connect. In the Amazon Connect console, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE). */
|
|
28331
|
-
QuickConnectType?: "PHONE_NUMBER" | "QUEUE" | "USER";
|
|
28333
|
+
QuickConnectType?: "FLOW" | "PHONE_NUMBER" | "QUEUE" | "USER";
|
|
28332
28334
|
/** One or more tags. */
|
|
28333
28335
|
Tags?: QuickConnect_Tag[];
|
|
28334
28336
|
}, attributes?: CFResourceAttributes);
|
|
28335
28337
|
readonly QuickConnectArn: string;
|
|
28336
|
-
readonly QuickConnectType: "PHONE_NUMBER" | "QUEUE" | "USER";
|
|
28338
|
+
readonly QuickConnectType: "FLOW" | "PHONE_NUMBER" | "QUEUE" | "USER";
|
|
28337
28339
|
}
|
|
28338
28340
|
|
|
28339
28341
|
export declare class QuickResponse {
|
|
@@ -28548,6 +28550,37 @@ export declare class QuickSightKnowledgeBase {
|
|
|
28548
28550
|
readonly UpdatedAt: string;
|
|
28549
28551
|
}
|
|
28550
28552
|
|
|
28553
|
+
export declare class QuickSightSpace {
|
|
28554
|
+
constructor(props: {
|
|
28555
|
+
/** The ID of the Amazon Web Services account where the space is being created. */
|
|
28556
|
+
AwsAccountId: string;
|
|
28557
|
+
/** The display name of the space. */
|
|
28558
|
+
Name: string;
|
|
28559
|
+
/** The unique identifier for the space. */
|
|
28560
|
+
SpaceId: string;
|
|
28561
|
+
/** The Amazon Resource Name (ARN) of the space. */
|
|
28562
|
+
Arn?: string;
|
|
28563
|
+
/** The date and time the space was created. */
|
|
28564
|
+
CreatedAt?: string;
|
|
28565
|
+
/** The user name of the principal who created the space. */
|
|
28566
|
+
CreatedBy?: string;
|
|
28567
|
+
/** A description of the space. */
|
|
28568
|
+
Description?: string;
|
|
28569
|
+
/** A list of permissions granted on the space. */
|
|
28570
|
+
Permissions?: QuickSightSpace_ResourcePermission[];
|
|
28571
|
+
/** A list of QuickSight resources attached to the space. */
|
|
28572
|
+
Resources?: QuickSightSpace_SpaceResource[];
|
|
28573
|
+
/** A list of key-value pairs to associate with the space resource. */
|
|
28574
|
+
Tags?: QuickSightSpace_Tag[];
|
|
28575
|
+
/** The date and time the space was last updated. */
|
|
28576
|
+
UpdatedAt?: string;
|
|
28577
|
+
}, attributes?: CFResourceAttributes);
|
|
28578
|
+
readonly Arn: string;
|
|
28579
|
+
readonly CreatedAt: string;
|
|
28580
|
+
readonly CreatedBy: string;
|
|
28581
|
+
readonly UpdatedAt: string;
|
|
28582
|
+
}
|
|
28583
|
+
|
|
28551
28584
|
export declare class QuickSightTemplate {
|
|
28552
28585
|
constructor(props: {
|
|
28553
28586
|
AwsAccountId: string;
|
|
@@ -32464,6 +32497,27 @@ export declare class SageMakerProject {
|
|
|
32464
32497
|
readonly ProjectStatus: "CreateCompleted" | "CreateFailed" | "CreateInProgress" | "DeleteCompleted" | "DeleteFailed" | "DeleteInProgress" | "Pending";
|
|
32465
32498
|
}
|
|
32466
32499
|
|
|
32500
|
+
export declare class SageMakerSpace {
|
|
32501
|
+
constructor(props: {
|
|
32502
|
+
/** The ID of the associated Domain. */
|
|
32503
|
+
DomainId: string;
|
|
32504
|
+
/** A name for the Space. */
|
|
32505
|
+
SpaceName: string;
|
|
32506
|
+
OwnershipSettings?: SageMakerSpace_OwnershipSettings;
|
|
32507
|
+
/** The space Amazon Resource Name (ARN). */
|
|
32508
|
+
SpaceArn?: string;
|
|
32509
|
+
SpaceDisplayName?: string;
|
|
32510
|
+
/** A collection of settings. */
|
|
32511
|
+
SpaceSettings?: SageMakerSpace_SpaceSettings;
|
|
32512
|
+
SpaceSharingSettings?: SageMakerSpace_SpaceSharingSettings;
|
|
32513
|
+
/** A list of tags to apply to the space. */
|
|
32514
|
+
Tags?: SageMakerSpace_Tag[];
|
|
32515
|
+
Url?: string;
|
|
32516
|
+
}, attributes?: CFResourceAttributes);
|
|
32517
|
+
readonly SpaceArn: string;
|
|
32518
|
+
readonly Url: string;
|
|
32519
|
+
}
|
|
32520
|
+
|
|
32467
32521
|
export declare class SageMakerUserProfile {
|
|
32468
32522
|
constructor(props: {
|
|
32469
32523
|
/** The ID of the associated Domain. */
|
|
@@ -33175,29 +33229,20 @@ export declare class SecurityHubAutomationRule {
|
|
|
33175
33229
|
|
|
33176
33230
|
export declare class SecurityHubConnector {
|
|
33177
33231
|
constructor(props: {
|
|
33178
|
-
/** The name of the connector */
|
|
33232
|
+
/** The name of the connector. */
|
|
33179
33233
|
Name: string;
|
|
33180
33234
|
Provider: SecurityHubConnector_Provider;
|
|
33181
|
-
/** The ARN of the connector */
|
|
33182
33235
|
ConnectorArn?: string;
|
|
33183
|
-
/** The ID of the connector */
|
|
33184
33236
|
ConnectorId?: string;
|
|
33185
33237
|
ConnectorStatus?: string;
|
|
33186
|
-
/** The date and time for createdAt in UTC and ISO 8601 format. */
|
|
33187
33238
|
CreatedAt?: string;
|
|
33188
|
-
/** The principal that created the connector */
|
|
33189
33239
|
CreatedBy?: string;
|
|
33190
|
-
/**
|
|
33240
|
+
/** The description of the connector. */
|
|
33191
33241
|
Description?: string;
|
|
33192
|
-
/** The enablement status of the connector */
|
|
33193
33242
|
EnablementStatus?: string;
|
|
33194
|
-
/** The list of health issues associated with the connector */
|
|
33195
33243
|
Issues?: SecurityHubConnector_HealthIssue[];
|
|
33196
|
-
/** The date and time for lastCheckedAt in UTC and ISO 8601 format. */
|
|
33197
33244
|
LastCheckedAt?: string;
|
|
33198
|
-
/** The date and time for lastUpdatedAt in UTC and ISO 8601 format. */
|
|
33199
33245
|
LastUpdatedAt?: string;
|
|
33200
|
-
/** The message associated with the connector status change */
|
|
33201
33246
|
Message?: string;
|
|
33202
33247
|
Tags?: Record<string, unknown>;
|
|
33203
33248
|
}, attributes?: CFResourceAttributes);
|
|
@@ -34597,27 +34642,6 @@ export declare class SourceLocation {
|
|
|
34597
34642
|
readonly Arn: string;
|
|
34598
34643
|
}
|
|
34599
34644
|
|
|
34600
|
-
export declare class Space {
|
|
34601
|
-
constructor(props: {
|
|
34602
|
-
/** The ID of the associated Domain. */
|
|
34603
|
-
DomainId: string;
|
|
34604
|
-
/** A name for the Space. */
|
|
34605
|
-
SpaceName: string;
|
|
34606
|
-
OwnershipSettings?: Space_OwnershipSettings;
|
|
34607
|
-
/** The space Amazon Resource Name (ARN). */
|
|
34608
|
-
SpaceArn?: string;
|
|
34609
|
-
SpaceDisplayName?: string;
|
|
34610
|
-
/** A collection of settings. */
|
|
34611
|
-
SpaceSettings?: Space_SpaceSettings;
|
|
34612
|
-
SpaceSharingSettings?: Space_SpaceSharingSettings;
|
|
34613
|
-
/** A list of tags to apply to the space. */
|
|
34614
|
-
Tags?: Space_Tag[];
|
|
34615
|
-
Url?: string;
|
|
34616
|
-
}, attributes?: CFResourceAttributes);
|
|
34617
|
-
readonly SpaceArn: string;
|
|
34618
|
-
readonly Url: string;
|
|
34619
|
-
}
|
|
34620
|
-
|
|
34621
34645
|
export declare class SpendingLimit {
|
|
34622
34646
|
constructor(props: {
|
|
34623
34647
|
/** The Amazon Resource Name (ARN) of the quantum device to apply the spending limit to. */
|
|
@@ -47989,19 +48013,20 @@ export declare class AzureConnectorConfiguration {
|
|
|
47989
48013
|
|
|
47990
48014
|
export declare class AzureProviderConfiguration {
|
|
47991
48015
|
constructor(props: {
|
|
47992
|
-
/** The ARN of the
|
|
48016
|
+
/** The ARN of the multi-cloud configuration connector used to establish the connection to Azure. */
|
|
47993
48017
|
AWSConfigConnectorArn: string;
|
|
47994
|
-
/** The list of Azure regions to
|
|
48018
|
+
/** The list of Azure regions to monitor. */
|
|
47995
48019
|
AzureRegions: string[];
|
|
48020
|
+
/** The scope configuration that defines which Azure resources are monitored. */
|
|
47996
48021
|
ScopeConfiguration: SecurityHubConnector_AzureScopeConfiguration;
|
|
47997
48022
|
});
|
|
47998
48023
|
}
|
|
47999
48024
|
|
|
48000
48025
|
export declare class AzureScopeConfiguration {
|
|
48001
48026
|
constructor(props: {
|
|
48002
|
-
/** The scope
|
|
48027
|
+
/** The type of scope. Valid values are ``tenant`` and ``subscription``. */
|
|
48003
48028
|
ScopeType: "SUBSCRIPTION" | "TENANT";
|
|
48004
|
-
/** The list of scope values
|
|
48029
|
+
/** The list of scope values, such as subscription IDs, when the scope type is ``subscription``. */
|
|
48005
48030
|
ScopeValues?: string[];
|
|
48006
48031
|
});
|
|
48007
48032
|
}
|
|
@@ -71245,6 +71270,18 @@ export declare class EtcdPlacement {
|
|
|
71245
71270
|
});
|
|
71246
71271
|
}
|
|
71247
71272
|
|
|
71273
|
+
export declare class EumsSmsConfiguration {
|
|
71274
|
+
constructor(props: {
|
|
71275
|
+
CallerArn: string;
|
|
71276
|
+
ConfigurationSetName?: string;
|
|
71277
|
+
ExternalId?: string;
|
|
71278
|
+
InEntityId?: string;
|
|
71279
|
+
InTemplateId?: string;
|
|
71280
|
+
OriginationIdentity?: string;
|
|
71281
|
+
Region?: string;
|
|
71282
|
+
});
|
|
71283
|
+
}
|
|
71284
|
+
|
|
71248
71285
|
export declare class EvaluateOnExit {
|
|
71249
71286
|
constructor(props: {
|
|
71250
71287
|
Action: string;
|
|
@@ -72127,7 +72164,12 @@ export declare class EventSourceMapping_LoggingConfig {
|
|
|
72127
72164
|
|
|
72128
72165
|
export declare class EventSourceMapping_MetricsConfig {
|
|
72129
72166
|
constructor(props: {
|
|
72130
|
-
/** The metrics you want your event source mapping to produce
|
|
72167
|
+
/** The metrics you want your event source mapping to produce, including ``EventCount``, ``ErrorCount``, ``KafkaMetrics``.
|
|
72168
|
+
+ ``EventCount`` to receive metrics related to the number of events processed by your event source mapping.
|
|
72169
|
+
+ ``ErrorCount`` (Amazon MSK and self-managed Apache Kafka) to receive metrics related to the number of errors in your event source mapping processing.
|
|
72170
|
+
+ ``KafkaMetrics`` (Amazon MSK and self-managed Apache Kafka) to receive metrics related to the Kafka consumers from your event source mapping.
|
|
72171
|
+
|
|
72172
|
+
For more information about these metrics, see [Event source mapping metrics](https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics). */
|
|
72131
72173
|
Metrics?: "ErrorCount" | "EventCount" | "KafkaMetrics"[];
|
|
72132
72174
|
});
|
|
72133
72175
|
}
|
|
@@ -72135,7 +72177,7 @@ export declare class EventSourceMapping_MetricsConfig {
|
|
|
72135
72177
|
export declare class EventSourceMapping_OnFailure {
|
|
72136
72178
|
constructor(props: {
|
|
72137
72179
|
/** The Amazon Resource Name (ARN) of the destination resource.
|
|
72138
|
-
To retain records of
|
|
72180
|
+
To retain records of failed invocations from [Kinesis](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html), [DynamoDB](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html), [self-managed Apache Kafka](https://docs.aws.amazon.com/lambda/latest/dg/kafka-on-failure.html), or [Amazon MSK](https://docs.aws.amazon.com/lambda/latest/dg/kafka-on-failure.html), you can configure an Amazon SNS topic, Amazon SQS queue, Amazon S3 bucket, or Kafka topic as the destination.
|
|
72139
72181
|
Amazon SNS destinations have a message size limit of 256 KB. If the combined size of the function request and response payload exceeds the limit, Lambda will drop the payload when sending ``OnFailure`` event to the destination. For details on this behavior, refer to [Retaining records of asynchronous invocations](https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html).
|
|
72140
72182
|
To retain records of failed invocations from [Kinesis](https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html), [DynamoDB](https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html), [self-managed Kafka](https://docs.aws.amazon.com/lambda/latest/dg/with-kafka.html#services-smaa-onfailure-destination) or [Amazon MSK](https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-onfailure-destination), you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination. */
|
|
72141
72183
|
Destination?: string;
|
|
@@ -72148,6 +72190,7 @@ export declare class EventSourceMapping_ProvisionedPollerConfig {
|
|
|
72148
72190
|
MaximumPollers?: number;
|
|
72149
72191
|
/** The minimum number of event pollers this event source can scale down to. For Amazon SQS events source mappings, default is 2, and minimum 2 required. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 1. */
|
|
72150
72192
|
MinimumPollers?: number;
|
|
72193
|
+
/** (Amazon MSK and self-managed Apache Kafka) The name of the provisioned poller group. Use this option to group multiple ESMs within the event source's VPC to share Event Poller Unit (EPU) capacity. You can use this option to optimize Provisioned mode costs for your ESMs. You can group up to 100 ESMs per poller group and aggregate maximum pollers across all ESMs in a group cannot exceed 2000. */
|
|
72151
72194
|
PollerGroupName?: string;
|
|
72152
72195
|
});
|
|
72153
72196
|
}
|
|
@@ -74051,6 +74094,12 @@ export declare class FlowOutput_VpcInterfaceAttachment {
|
|
|
74051
74094
|
});
|
|
74052
74095
|
}
|
|
74053
74096
|
|
|
74097
|
+
export declare class FlowQuickConnectConfig {
|
|
74098
|
+
constructor(props: {
|
|
74099
|
+
ContactFlowArn: string;
|
|
74100
|
+
});
|
|
74101
|
+
}
|
|
74102
|
+
|
|
74054
74103
|
export declare class FlowSource_Encryption {
|
|
74055
74104
|
constructor(props: {
|
|
74056
74105
|
/** The ARN of the role that you created during setup (when you set up AWS Elemental MediaConnect as a trusted entity). */
|
|
@@ -92666,7 +92715,12 @@ export declare class MetricsCollection {
|
|
|
92666
92715
|
|
|
92667
92716
|
export declare class MetricsConfig {
|
|
92668
92717
|
constructor(props: {
|
|
92669
|
-
/** The metrics you want your event source mapping to produce
|
|
92718
|
+
/** The metrics you want your event source mapping to produce, including ``EventCount``, ``ErrorCount``, ``KafkaMetrics``.
|
|
92719
|
+
+ ``EventCount`` to receive metrics related to the number of events processed by your event source mapping.
|
|
92720
|
+
+ ``ErrorCount`` (Amazon MSK and self-managed Apache Kafka) to receive metrics related to the number of errors in your event source mapping processing.
|
|
92721
|
+
+ ``KafkaMetrics`` (Amazon MSK and self-managed Apache Kafka) to receive metrics related to the Kafka consumers from your event source mapping.
|
|
92722
|
+
|
|
92723
|
+
For more information about these metrics, see [Event source mapping metrics](https://docs.aws.amazon.com/lambda/latest/dg/monitoring-metrics-types.html#event-source-mapping-metrics). */
|
|
92670
92724
|
Metrics?: "ErrorCount" | "EventCount" | "KafkaMetrics"[];
|
|
92671
92725
|
});
|
|
92672
92726
|
}
|
|
@@ -103180,6 +103234,7 @@ export declare class ProvisionedPollerConfig {
|
|
|
103180
103234
|
MaximumPollers?: number;
|
|
103181
103235
|
/** The minimum number of event pollers this event source can scale down to. For Amazon SQS events source mappings, default is 2, and minimum 2 required. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 1. */
|
|
103182
103236
|
MinimumPollers?: number;
|
|
103237
|
+
/** (Amazon MSK and self-managed Apache Kafka) The name of the provisioned poller group. Use this option to group multiple ESMs within the event source's VPC to share Event Poller Unit (EPU) capacity. You can use this option to optimize Provisioned mode costs for your ESMs. You can group up to 100 ESMs per poller group and aggregate maximum pollers across all ESMs in a group cannot exceed 2000. */
|
|
103183
103238
|
PollerGroupName?: string;
|
|
103184
103239
|
});
|
|
103185
103240
|
}
|
|
@@ -103792,6 +103847,12 @@ export declare class QueueQuickConnectConfig {
|
|
|
103792
103847
|
});
|
|
103793
103848
|
}
|
|
103794
103849
|
|
|
103850
|
+
export declare class QuickConnect_FlowQuickConnectConfig {
|
|
103851
|
+
constructor(props: {
|
|
103852
|
+
ContactFlowArn: string;
|
|
103853
|
+
});
|
|
103854
|
+
}
|
|
103855
|
+
|
|
103795
103856
|
export declare class QuickConnect_PhoneNumberQuickConnectConfig {
|
|
103796
103857
|
constructor(props: {
|
|
103797
103858
|
PhoneNumber: string;
|
|
@@ -103808,6 +103869,7 @@ export declare class QuickConnect_QueueQuickConnectConfig {
|
|
|
103808
103869
|
export declare class QuickConnect_QuickConnectConfig {
|
|
103809
103870
|
constructor(props: {
|
|
103810
103871
|
QuickConnectType: QuickConnect_QuickConnectType;
|
|
103872
|
+
FlowConfig?: QuickConnect_FlowQuickConnectConfig;
|
|
103811
103873
|
PhoneConfig?: QuickConnect_PhoneNumberQuickConnectConfig;
|
|
103812
103874
|
QueueConfig?: QuickConnect_QueueQuickConnectConfig;
|
|
103813
103875
|
UserConfig?: QuickConnect_UserQuickConnectConfig;
|
|
@@ -103833,6 +103895,7 @@ export declare class QuickConnect_UserQuickConnectConfig {
|
|
|
103833
103895
|
export declare class QuickConnectConfig {
|
|
103834
103896
|
constructor(props: {
|
|
103835
103897
|
QuickConnectType: QuickConnect_QuickConnectType;
|
|
103898
|
+
FlowConfig?: QuickConnect_FlowQuickConnectConfig;
|
|
103836
103899
|
PhoneConfig?: QuickConnect_PhoneNumberQuickConnectConfig;
|
|
103837
103900
|
QueueConfig?: QuickConnect_QueueQuickConnectConfig;
|
|
103838
103901
|
UserConfig?: QuickConnect_UserQuickConnectConfig;
|
|
@@ -104999,6 +105062,33 @@ export declare class QuickSightKnowledgeBase_VideoExtractionConfiguration {
|
|
|
104999
105062
|
});
|
|
105000
105063
|
}
|
|
105001
105064
|
|
|
105065
|
+
export declare class QuickSightSpace_ResourcePermission {
|
|
105066
|
+
constructor(props: {
|
|
105067
|
+
/** The list of actions granted to the principal. */
|
|
105068
|
+
Actions: string[];
|
|
105069
|
+
/** The ARN of the principal (user or group) receiving the permission. */
|
|
105070
|
+
Principal: string;
|
|
105071
|
+
});
|
|
105072
|
+
}
|
|
105073
|
+
|
|
105074
|
+
export declare class QuickSightSpace_SpaceResource {
|
|
105075
|
+
constructor(props: {
|
|
105076
|
+
/** The ARN of the QuickSight resource. */
|
|
105077
|
+
ResourceArn: string;
|
|
105078
|
+
/** The type of QuickSight resource. */
|
|
105079
|
+
ResourceType: "ACTION_CONNECTOR" | "DASHBOARD" | "DATA_SET" | "KNOWLEDGE_BASE" | "TOPIC";
|
|
105080
|
+
});
|
|
105081
|
+
}
|
|
105082
|
+
|
|
105083
|
+
export declare class QuickSightSpace_Tag {
|
|
105084
|
+
constructor(props: {
|
|
105085
|
+
/** The key name of the tag. */
|
|
105086
|
+
Key: string;
|
|
105087
|
+
/** The value for the tag. */
|
|
105088
|
+
Value: string;
|
|
105089
|
+
});
|
|
105090
|
+
}
|
|
105091
|
+
|
|
105002
105092
|
export declare class QuickSightTemplate_AnalysisDefaults {
|
|
105003
105093
|
constructor(props: {
|
|
105004
105094
|
DefaultNewSheetConfiguration: QuickSightTemplate_DefaultNewSheetConfiguration;
|
|
@@ -111774,6 +111864,131 @@ export declare class SageMakerProject_TemplateProviderDetail {
|
|
|
111774
111864
|
});
|
|
111775
111865
|
}
|
|
111776
111866
|
|
|
111867
|
+
export declare class SageMakerSpace_CodeRepository {
|
|
111868
|
+
constructor(props: {
|
|
111869
|
+
/** A CodeRepository (valid URL) to be used within Jupyter's Git extension. */
|
|
111870
|
+
RepositoryUrl: string;
|
|
111871
|
+
});
|
|
111872
|
+
}
|
|
111873
|
+
|
|
111874
|
+
export declare class SageMakerSpace_CustomImage {
|
|
111875
|
+
constructor(props: {
|
|
111876
|
+
/** The Name of the AppImageConfig. */
|
|
111877
|
+
AppImageConfigName: string;
|
|
111878
|
+
/** The name of the CustomImage. Must be unique to your account. */
|
|
111879
|
+
ImageName: string;
|
|
111880
|
+
/** The version number of the CustomImage. */
|
|
111881
|
+
ImageVersionNumber?: number;
|
|
111882
|
+
});
|
|
111883
|
+
}
|
|
111884
|
+
|
|
111885
|
+
export declare class SageMakerSpace_EbsStorageSettings {
|
|
111886
|
+
constructor(props: {
|
|
111887
|
+
/** Size of the Amazon EBS volume in Gb */
|
|
111888
|
+
EbsVolumeSizeInGb: number;
|
|
111889
|
+
});
|
|
111890
|
+
}
|
|
111891
|
+
|
|
111892
|
+
export declare class SageMakerSpace_JupyterServerAppSettings {
|
|
111893
|
+
constructor(props: {
|
|
111894
|
+
DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
|
|
111895
|
+
/** A list of LifecycleConfigArns available for use with JupyterServer apps. */
|
|
111896
|
+
LifecycleConfigArns?: string[];
|
|
111897
|
+
});
|
|
111898
|
+
}
|
|
111899
|
+
|
|
111900
|
+
export declare class SageMakerSpace_KernelGatewayAppSettings {
|
|
111901
|
+
constructor(props: {
|
|
111902
|
+
/** A list of custom SageMaker images that are configured to run as a KernelGateway app. */
|
|
111903
|
+
CustomImages?: SageMakerSpace_CustomImage[];
|
|
111904
|
+
/** The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app. */
|
|
111905
|
+
DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
|
|
111906
|
+
/** A list of LifecycleConfigArns available for use with KernelGateway apps. */
|
|
111907
|
+
LifecycleConfigArns?: string[];
|
|
111908
|
+
});
|
|
111909
|
+
}
|
|
111910
|
+
|
|
111911
|
+
export declare class SageMakerSpace_OwnershipSettings {
|
|
111912
|
+
constructor(props: {
|
|
111913
|
+
OwnerUserProfileName: string;
|
|
111914
|
+
});
|
|
111915
|
+
}
|
|
111916
|
+
|
|
111917
|
+
export declare class SageMakerSpace_ResourceSpec {
|
|
111918
|
+
constructor(props: {
|
|
111919
|
+
/** The instance type that the image version runs on. */
|
|
111920
|
+
InstanceType?: "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.2xlarge" | "ml.g5.48xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.xlarge" | "ml.geospatial.interactive" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.p3.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3dn.24xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.t3.2xlarge" | "ml.t3.large" | "ml.t3.medium" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "system";
|
|
111921
|
+
/** The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource. */
|
|
111922
|
+
LifecycleConfigArn?: string;
|
|
111923
|
+
/** The ARN of the SageMaker image that the image version belongs to. */
|
|
111924
|
+
SageMakerImageArn?: string;
|
|
111925
|
+
/** The ARN of the image version created on the instance. */
|
|
111926
|
+
SageMakerImageVersionArn?: string;
|
|
111927
|
+
});
|
|
111928
|
+
}
|
|
111929
|
+
|
|
111930
|
+
export declare class SageMakerSpace_SpaceAppLifecycleManagement {
|
|
111931
|
+
constructor(props: {
|
|
111932
|
+
IdleSettings?: Record<string, unknown>;
|
|
111933
|
+
});
|
|
111934
|
+
}
|
|
111935
|
+
|
|
111936
|
+
export declare class SageMakerSpace_SpaceCodeEditorAppSettings {
|
|
111937
|
+
constructor(props: {
|
|
111938
|
+
AppLifecycleManagement?: SageMakerSpace_SpaceAppLifecycleManagement;
|
|
111939
|
+
DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
|
|
111940
|
+
});
|
|
111941
|
+
}
|
|
111942
|
+
|
|
111943
|
+
export declare class SageMakerSpace_SpaceJupyterLabAppSettings {
|
|
111944
|
+
constructor(props: {
|
|
111945
|
+
AppLifecycleManagement?: SageMakerSpace_SpaceAppLifecycleManagement;
|
|
111946
|
+
/** A list of CodeRepositories available for use with JupyterLab apps. */
|
|
111947
|
+
CodeRepositories?: SageMakerSpace_CodeRepository[];
|
|
111948
|
+
DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
|
|
111949
|
+
});
|
|
111950
|
+
}
|
|
111951
|
+
|
|
111952
|
+
export declare class SageMakerSpace_SpaceSettings {
|
|
111953
|
+
constructor(props: {
|
|
111954
|
+
AppType?: SageMakerSpace_AppType;
|
|
111955
|
+
/** The CodeEditor app settings. */
|
|
111956
|
+
CodeEditorAppSettings?: SageMakerSpace_SpaceCodeEditorAppSettings;
|
|
111957
|
+
CustomFileSystems?: any;
|
|
111958
|
+
/** The JupyterLab app settings. */
|
|
111959
|
+
JupyterLabAppSettings?: SageMakerSpace_SpaceJupyterLabAppSettings;
|
|
111960
|
+
/** The Jupyter server's app settings. */
|
|
111961
|
+
JupyterServerAppSettings?: SageMakerSpace_JupyterServerAppSettings;
|
|
111962
|
+
/** The kernel gateway app settings. */
|
|
111963
|
+
KernelGatewayAppSettings?: SageMakerSpace_KernelGatewayAppSettings;
|
|
111964
|
+
/** This is a flag used to indicate if remote access is enabled. */
|
|
111965
|
+
RemoteAccess?: SageMakerSpace_RemoteAccess;
|
|
111966
|
+
/** This is a flag used to indicate if space managed resources needs to be created. */
|
|
111967
|
+
SpaceManagedResources?: SageMakerSpace_SpaceManagedResources;
|
|
111968
|
+
/** Default storage settings for a space. */
|
|
111969
|
+
SpaceStorageSettings?: SageMakerSpace_SpaceStorageSettings;
|
|
111970
|
+
});
|
|
111971
|
+
}
|
|
111972
|
+
|
|
111973
|
+
export declare class SageMakerSpace_SpaceSharingSettings {
|
|
111974
|
+
constructor(props: {
|
|
111975
|
+
SharingType: "Private" | "Shared";
|
|
111976
|
+
});
|
|
111977
|
+
}
|
|
111978
|
+
|
|
111979
|
+
export declare class SageMakerSpace_SpaceStorageSettings {
|
|
111980
|
+
constructor(props: {
|
|
111981
|
+
EbsStorageSettings?: SageMakerSpace_EbsStorageSettings;
|
|
111982
|
+
});
|
|
111983
|
+
}
|
|
111984
|
+
|
|
111985
|
+
export declare class SageMakerSpace_Tag {
|
|
111986
|
+
constructor(props: {
|
|
111987
|
+
Key: string;
|
|
111988
|
+
Value: string;
|
|
111989
|
+
});
|
|
111990
|
+
}
|
|
111991
|
+
|
|
111777
111992
|
export declare class SageMakerUserProfile_AppLifecycleManagement {
|
|
111778
111993
|
constructor(props: {
|
|
111779
111994
|
IdleSettings?: Record<string, unknown>;
|
|
@@ -113807,28 +114022,29 @@ export declare class SecurityHubAutomationRule_WorkflowUpdate {
|
|
|
113807
114022
|
|
|
113808
114023
|
export declare class SecurityHubConnector_AzureProviderConfiguration {
|
|
113809
114024
|
constructor(props: {
|
|
113810
|
-
/** The ARN of the
|
|
114025
|
+
/** The ARN of the multi-cloud configuration connector used to establish the connection to Azure. */
|
|
113811
114026
|
AWSConfigConnectorArn: string;
|
|
113812
|
-
/** The list of Azure regions to
|
|
114027
|
+
/** The list of Azure regions to monitor. */
|
|
113813
114028
|
AzureRegions: string[];
|
|
114029
|
+
/** The scope configuration that defines which Azure resources are monitored. */
|
|
113814
114030
|
ScopeConfiguration: SecurityHubConnector_AzureScopeConfiguration;
|
|
113815
114031
|
});
|
|
113816
114032
|
}
|
|
113817
114033
|
|
|
113818
114034
|
export declare class SecurityHubConnector_AzureScopeConfiguration {
|
|
113819
114035
|
constructor(props: {
|
|
113820
|
-
/** The scope
|
|
114036
|
+
/** The type of scope. Valid values are ``tenant`` and ``subscription``. */
|
|
113821
114037
|
ScopeType: "SUBSCRIPTION" | "TENANT";
|
|
113822
|
-
/** The list of scope values
|
|
114038
|
+
/** The list of scope values, such as subscription IDs, when the scope type is ``subscription``. */
|
|
113823
114039
|
ScopeValues?: string[];
|
|
113824
114040
|
});
|
|
113825
114041
|
}
|
|
113826
114042
|
|
|
113827
114043
|
export declare class SecurityHubConnector_HealthIssue {
|
|
113828
114044
|
constructor(props: {
|
|
113829
|
-
/** The code
|
|
114045
|
+
/** The error code that identifies the type of health issue. */
|
|
113830
114046
|
Code: string;
|
|
113831
|
-
/**
|
|
114047
|
+
/** A human-readable message that describes the health issue. */
|
|
113832
114048
|
Message: string;
|
|
113833
114049
|
});
|
|
113834
114050
|
}
|
|
@@ -116581,171 +116797,55 @@ export declare class SourceSelectionCriteria {
|
|
|
116581
116797
|
});
|
|
116582
116798
|
}
|
|
116583
116799
|
|
|
116584
|
-
export declare class
|
|
116585
|
-
constructor(props: {
|
|
116586
|
-
/** A CodeRepository (valid URL) to be used within Jupyter's Git extension. */
|
|
116587
|
-
RepositoryUrl: string;
|
|
116588
|
-
});
|
|
116589
|
-
}
|
|
116590
|
-
|
|
116591
|
-
export declare class Space_CustomImage {
|
|
116592
|
-
constructor(props: {
|
|
116593
|
-
/** The Name of the AppImageConfig. */
|
|
116594
|
-
AppImageConfigName: string;
|
|
116595
|
-
/** The name of the CustomImage. Must be unique to your account. */
|
|
116596
|
-
ImageName: string;
|
|
116597
|
-
/** The version number of the CustomImage. */
|
|
116598
|
-
ImageVersionNumber?: number;
|
|
116599
|
-
});
|
|
116600
|
-
}
|
|
116601
|
-
|
|
116602
|
-
export declare class Space_EbsStorageSettings {
|
|
116603
|
-
constructor(props: {
|
|
116604
|
-
/** Size of the Amazon EBS volume in Gb */
|
|
116605
|
-
EbsVolumeSizeInGb: number;
|
|
116606
|
-
});
|
|
116607
|
-
}
|
|
116608
|
-
|
|
116609
|
-
export declare class Space_JupyterServerAppSettings {
|
|
116610
|
-
constructor(props: {
|
|
116611
|
-
DefaultResourceSpec?: Space_ResourceSpec;
|
|
116612
|
-
/** A list of LifecycleConfigArns available for use with JupyterServer apps. */
|
|
116613
|
-
LifecycleConfigArns?: string[];
|
|
116614
|
-
});
|
|
116615
|
-
}
|
|
116616
|
-
|
|
116617
|
-
export declare class Space_KernelGatewayAppSettings {
|
|
116618
|
-
constructor(props: {
|
|
116619
|
-
/** A list of custom SageMaker images that are configured to run as a KernelGateway app. */
|
|
116620
|
-
CustomImages?: Space_CustomImage[];
|
|
116621
|
-
/** The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app. */
|
|
116622
|
-
DefaultResourceSpec?: Space_ResourceSpec;
|
|
116623
|
-
/** A list of LifecycleConfigArns available for use with KernelGateway apps. */
|
|
116624
|
-
LifecycleConfigArns?: string[];
|
|
116625
|
-
});
|
|
116626
|
-
}
|
|
116627
|
-
|
|
116628
|
-
export declare class Space_OwnershipSettings {
|
|
116629
|
-
constructor(props: {
|
|
116630
|
-
OwnerUserProfileName: string;
|
|
116631
|
-
});
|
|
116632
|
-
}
|
|
116633
|
-
|
|
116634
|
-
export declare class Space_ResourceSpec {
|
|
116635
|
-
constructor(props: {
|
|
116636
|
-
/** The instance type that the image version runs on. */
|
|
116637
|
-
InstanceType?: "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.2xlarge" | "ml.g5.48xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.xlarge" | "ml.geospatial.interactive" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.p3.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3dn.24xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.t3.2xlarge" | "ml.t3.large" | "ml.t3.medium" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "system";
|
|
116638
|
-
/** The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource. */
|
|
116639
|
-
LifecycleConfigArn?: string;
|
|
116640
|
-
/** The ARN of the SageMaker image that the image version belongs to. */
|
|
116641
|
-
SageMakerImageArn?: string;
|
|
116642
|
-
/** The ARN of the image version created on the instance. */
|
|
116643
|
-
SageMakerImageVersionArn?: string;
|
|
116644
|
-
});
|
|
116645
|
-
}
|
|
116646
|
-
|
|
116647
|
-
export declare class Space_SpaceAppLifecycleManagement {
|
|
116800
|
+
export declare class SpaceAppLifecycleManagement {
|
|
116648
116801
|
constructor(props: {
|
|
116649
116802
|
IdleSettings?: Record<string, unknown>;
|
|
116650
116803
|
});
|
|
116651
116804
|
}
|
|
116652
116805
|
|
|
116653
|
-
export declare class
|
|
116806
|
+
export declare class SpaceCodeEditorAppSettings {
|
|
116654
116807
|
constructor(props: {
|
|
116655
|
-
AppLifecycleManagement?:
|
|
116656
|
-
DefaultResourceSpec?:
|
|
116808
|
+
AppLifecycleManagement?: SageMakerSpace_SpaceAppLifecycleManagement;
|
|
116809
|
+
DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
|
|
116657
116810
|
});
|
|
116658
116811
|
}
|
|
116659
116812
|
|
|
116660
|
-
export declare class
|
|
116813
|
+
export declare class SpaceJupyterLabAppSettings {
|
|
116661
116814
|
constructor(props: {
|
|
116662
|
-
AppLifecycleManagement?:
|
|
116815
|
+
AppLifecycleManagement?: SageMakerSpace_SpaceAppLifecycleManagement;
|
|
116663
116816
|
/** A list of CodeRepositories available for use with JupyterLab apps. */
|
|
116664
|
-
CodeRepositories?:
|
|
116665
|
-
DefaultResourceSpec?:
|
|
116666
|
-
});
|
|
116667
|
-
}
|
|
116668
|
-
|
|
116669
|
-
export declare class Space_SpaceSettings {
|
|
116670
|
-
constructor(props: {
|
|
116671
|
-
AppType?: Space_AppType;
|
|
116672
|
-
/** The CodeEditor app settings. */
|
|
116673
|
-
CodeEditorAppSettings?: Space_SpaceCodeEditorAppSettings;
|
|
116674
|
-
CustomFileSystems?: any;
|
|
116675
|
-
/** The JupyterLab app settings. */
|
|
116676
|
-
JupyterLabAppSettings?: Space_SpaceJupyterLabAppSettings;
|
|
116677
|
-
/** The Jupyter server's app settings. */
|
|
116678
|
-
JupyterServerAppSettings?: Space_JupyterServerAppSettings;
|
|
116679
|
-
/** The kernel gateway app settings. */
|
|
116680
|
-
KernelGatewayAppSettings?: Space_KernelGatewayAppSettings;
|
|
116681
|
-
/** This is a flag used to indicate if remote access is enabled. */
|
|
116682
|
-
RemoteAccess?: Space_RemoteAccess;
|
|
116683
|
-
/** This is a flag used to indicate if space managed resources needs to be created. */
|
|
116684
|
-
SpaceManagedResources?: Space_SpaceManagedResources;
|
|
116685
|
-
/** Default storage settings for a space. */
|
|
116686
|
-
SpaceStorageSettings?: Space_SpaceStorageSettings;
|
|
116687
|
-
});
|
|
116688
|
-
}
|
|
116689
|
-
|
|
116690
|
-
export declare class Space_SpaceSharingSettings {
|
|
116691
|
-
constructor(props: {
|
|
116692
|
-
SharingType: "Private" | "Shared";
|
|
116693
|
-
});
|
|
116694
|
-
}
|
|
116695
|
-
|
|
116696
|
-
export declare class Space_SpaceStorageSettings {
|
|
116697
|
-
constructor(props: {
|
|
116698
|
-
EbsStorageSettings?: Space_EbsStorageSettings;
|
|
116699
|
-
});
|
|
116700
|
-
}
|
|
116701
|
-
|
|
116702
|
-
export declare class Space_Tag {
|
|
116703
|
-
constructor(props: {
|
|
116704
|
-
Key: string;
|
|
116705
|
-
Value: string;
|
|
116706
|
-
});
|
|
116707
|
-
}
|
|
116708
|
-
|
|
116709
|
-
export declare class SpaceAppLifecycleManagement {
|
|
116710
|
-
constructor(props: {
|
|
116711
|
-
IdleSettings?: Record<string, unknown>;
|
|
116712
|
-
});
|
|
116713
|
-
}
|
|
116714
|
-
|
|
116715
|
-
export declare class SpaceCodeEditorAppSettings {
|
|
116716
|
-
constructor(props: {
|
|
116717
|
-
AppLifecycleManagement?: Space_SpaceAppLifecycleManagement;
|
|
116718
|
-
DefaultResourceSpec?: Space_ResourceSpec;
|
|
116817
|
+
CodeRepositories?: SageMakerSpace_CodeRepository[];
|
|
116818
|
+
DefaultResourceSpec?: SageMakerSpace_ResourceSpec;
|
|
116719
116819
|
});
|
|
116720
116820
|
}
|
|
116721
116821
|
|
|
116722
|
-
export declare class
|
|
116822
|
+
export declare class SpaceResource {
|
|
116723
116823
|
constructor(props: {
|
|
116724
|
-
|
|
116725
|
-
|
|
116726
|
-
|
|
116727
|
-
|
|
116824
|
+
/** The ARN of the QuickSight resource. */
|
|
116825
|
+
ResourceArn: string;
|
|
116826
|
+
/** The type of QuickSight resource. */
|
|
116827
|
+
ResourceType: "ACTION_CONNECTOR" | "DASHBOARD" | "DATA_SET" | "KNOWLEDGE_BASE" | "TOPIC";
|
|
116728
116828
|
});
|
|
116729
116829
|
}
|
|
116730
116830
|
|
|
116731
116831
|
export declare class SpaceSettings {
|
|
116732
116832
|
constructor(props: {
|
|
116733
|
-
AppType?:
|
|
116833
|
+
AppType?: SageMakerSpace_AppType;
|
|
116734
116834
|
/** The CodeEditor app settings. */
|
|
116735
|
-
CodeEditorAppSettings?:
|
|
116835
|
+
CodeEditorAppSettings?: SageMakerSpace_SpaceCodeEditorAppSettings;
|
|
116736
116836
|
CustomFileSystems?: any;
|
|
116737
116837
|
/** The JupyterLab app settings. */
|
|
116738
|
-
JupyterLabAppSettings?:
|
|
116838
|
+
JupyterLabAppSettings?: SageMakerSpace_SpaceJupyterLabAppSettings;
|
|
116739
116839
|
/** The Jupyter server's app settings. */
|
|
116740
|
-
JupyterServerAppSettings?:
|
|
116840
|
+
JupyterServerAppSettings?: SageMakerSpace_JupyterServerAppSettings;
|
|
116741
116841
|
/** The kernel gateway app settings. */
|
|
116742
|
-
KernelGatewayAppSettings?:
|
|
116842
|
+
KernelGatewayAppSettings?: SageMakerSpace_KernelGatewayAppSettings;
|
|
116743
116843
|
/** This is a flag used to indicate if remote access is enabled. */
|
|
116744
|
-
RemoteAccess?:
|
|
116844
|
+
RemoteAccess?: SageMakerSpace_RemoteAccess;
|
|
116745
116845
|
/** This is a flag used to indicate if space managed resources needs to be created. */
|
|
116746
|
-
SpaceManagedResources?:
|
|
116846
|
+
SpaceManagedResources?: SageMakerSpace_SpaceManagedResources;
|
|
116747
116847
|
/** Default storage settings for a space. */
|
|
116748
|
-
SpaceStorageSettings?:
|
|
116848
|
+
SpaceStorageSettings?: SageMakerSpace_SpaceStorageSettings;
|
|
116749
116849
|
});
|
|
116750
116850
|
}
|
|
116751
116851
|
|
|
@@ -116757,7 +116857,7 @@ export declare class SpaceSharingSettings {
|
|
|
116757
116857
|
|
|
116758
116858
|
export declare class SpaceStorageSettings {
|
|
116759
116859
|
constructor(props: {
|
|
116760
|
-
EbsStorageSettings?:
|
|
116860
|
+
EbsStorageSettings?: SageMakerSpace_EbsStorageSettings;
|
|
116761
116861
|
});
|
|
116762
116862
|
}
|
|
116763
116863
|
|
|
@@ -123088,6 +123188,18 @@ export declare class UserPool_EmailConfiguration {
|
|
|
123088
123188
|
});
|
|
123089
123189
|
}
|
|
123090
123190
|
|
|
123191
|
+
export declare class UserPool_EumsSmsConfiguration {
|
|
123192
|
+
constructor(props: {
|
|
123193
|
+
CallerArn: string;
|
|
123194
|
+
ConfigurationSetName?: string;
|
|
123195
|
+
ExternalId?: string;
|
|
123196
|
+
InEntityId?: string;
|
|
123197
|
+
InTemplateId?: string;
|
|
123198
|
+
OriginationIdentity?: string;
|
|
123199
|
+
Region?: string;
|
|
123200
|
+
});
|
|
123201
|
+
}
|
|
123202
|
+
|
|
123091
123203
|
export declare class UserPool_InboundFederation {
|
|
123092
123204
|
constructor(props: {
|
|
123093
123205
|
LambdaArn?: string;
|
|
@@ -123196,6 +123308,7 @@ export declare class UserPool_SignInPolicy {
|
|
|
123196
123308
|
|
|
123197
123309
|
export declare class UserPool_SmsConfiguration {
|
|
123198
123310
|
constructor(props: {
|
|
123311
|
+
EumsSms?: UserPool_EumsSmsConfiguration;
|
|
123199
123312
|
ExternalId?: string;
|
|
123200
123313
|
SnsCallerArn?: string;
|
|
123201
123314
|
SnsRegion?: string;
|
|
@@ -132956,7 +133069,7 @@ export type QBusinessIndex_Status = "DISABLED" | "ENABLED";
|
|
|
132956
133069
|
|
|
132957
133070
|
export type QueueEnvironment_EnvironmentTemplateType = "JSON" | "YAML";
|
|
132958
133071
|
|
|
132959
|
-
export type QuickConnect_QuickConnectType = "PHONE_NUMBER" | "QUEUE" | "USER";
|
|
133072
|
+
export type QuickConnect_QuickConnectType = "FLOW" | "PHONE_NUMBER" | "QUEUE" | "USER";
|
|
132960
133073
|
|
|
132961
133074
|
export type QuickResponse_ChannelType = "Chat" | "Email";
|
|
132962
133075
|
|
|
@@ -134590,6 +134703,19 @@ export type SageMakerDomain_MlTools =
|
|
|
134590
134703
|
| "Projects"
|
|
134591
134704
|
| "Training";
|
|
134592
134705
|
|
|
134706
|
+
export type SageMakerSpace_AppType =
|
|
134707
|
+
| "CodeEditor"
|
|
134708
|
+
| "JupyterLab"
|
|
134709
|
+
| "JupyterServer"
|
|
134710
|
+
| "KernelGateway"
|
|
134711
|
+
| "RSessionGateway"
|
|
134712
|
+
| "RStudioServerPro"
|
|
134713
|
+
| "TensorBoard";
|
|
134714
|
+
|
|
134715
|
+
export type SageMakerSpace_RemoteAccess = "DISABLED" | "ENABLED";
|
|
134716
|
+
|
|
134717
|
+
export type SageMakerSpace_SpaceManagedResources = "DISABLED" | "ENABLED";
|
|
134718
|
+
|
|
134593
134719
|
export type SageMakerUserProfile_AppInstanceType =
|
|
134594
134720
|
| "ml.c5.12xlarge"
|
|
134595
134721
|
| "ml.c5.18xlarge"
|
|
@@ -135042,19 +135168,6 @@ export type SourceLocation_AccessType =
|
|
|
135042
135168
|
| "S3_SIGV4"
|
|
135043
135169
|
| "SECRETS_MANAGER_ACCESS_TOKEN";
|
|
135044
135170
|
|
|
135045
|
-
export type Space_AppType =
|
|
135046
|
-
| "CodeEditor"
|
|
135047
|
-
| "JupyterLab"
|
|
135048
|
-
| "JupyterServer"
|
|
135049
|
-
| "KernelGateway"
|
|
135050
|
-
| "RSessionGateway"
|
|
135051
|
-
| "RStudioServerPro"
|
|
135052
|
-
| "TensorBoard";
|
|
135053
|
-
|
|
135054
|
-
export type Space_RemoteAccess = "DISABLED" | "ENABLED";
|
|
135055
|
-
|
|
135056
|
-
export type Space_SpaceManagedResources = "DISABLED" | "ENABLED";
|
|
135057
|
-
|
|
135058
135171
|
export type SqlHaStandbyDetectedInstance_HaStatus =
|
|
135059
135172
|
| "active"
|
|
135060
135173
|
| "invalid"
|