@awboost/cfntypes 0.100.219 → 0.100.221
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.
@@ -925,6 +925,10 @@ export type AIOpsInvestigationGroupProps = {
|
|
925
925
|
* An array of key-value pairs of notification channels to apply to this resource.
|
926
926
|
*/
|
927
927
|
ChatbotNotificationChannels?: AIOpsInvestigationGroupChatbotNotificationChannel[];
|
928
|
+
/**
|
929
|
+
* An array of cross account configurations.
|
930
|
+
*/
|
931
|
+
CrossAccountConfigurations?: AIOpsInvestigationGroupCrossAccountConfiguration[];
|
928
932
|
EncryptionConfig?: AIOpsInvestigationGroupEncryptionConfigMap;
|
929
933
|
/**
|
930
934
|
* Investigation Group policy
|
@@ -1002,6 +1006,18 @@ export type AIOpsInvestigationGroupChatbotNotificationChannel = {
|
|
1002
1006
|
*/
|
1003
1007
|
SNSTopicArn?: string;
|
1004
1008
|
};
|
1009
|
+
/**
|
1010
|
+
* Type definition for `AWS::AIOps::InvestigationGroup.CrossAccountConfiguration`.
|
1011
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-crossaccountconfiguration.html}
|
1012
|
+
*/
|
1013
|
+
export type AIOpsInvestigationGroupCrossAccountConfiguration = {
|
1014
|
+
/**
|
1015
|
+
* The Investigation Role's ARN.
|
1016
|
+
* @minLength `20`
|
1017
|
+
* @maxLength `2048`
|
1018
|
+
*/
|
1019
|
+
SourceRoleArn?: string;
|
1020
|
+
};
|
1005
1021
|
/**
|
1006
1022
|
* Type definition for `AWS::AIOps::InvestigationGroup.EncryptionConfigMap`.
|
1007
1023
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-encryptionconfigmap.html}
|
@@ -15977,8 +15993,21 @@ export type B2BIPartnershipAttributes = {
|
|
15977
15993
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html}
|
15978
15994
|
*/
|
15979
15995
|
export type B2BIPartnershipCapabilityOptions = {
|
15996
|
+
InboundEdi?: B2BIPartnershipInboundEdiOptions;
|
15980
15997
|
OutboundEdi?: B2BIPartnershipOutboundEdiOptions;
|
15981
15998
|
};
|
15999
|
+
/**
|
16000
|
+
* Type definition for `AWS::B2BI::Partnership.InboundEdiOptions`.
|
16001
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-inboundedioptions.html}
|
16002
|
+
*/
|
16003
|
+
export type B2BIPartnershipInboundEdiOptions = {
|
16004
|
+
X12?: B2BIPartnershipX12InboundEdiOptions;
|
16005
|
+
};
|
16006
|
+
/**
|
16007
|
+
* Type definition for `AWS::B2BI::Partnership.LineTerminator`.
|
16008
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-lineterminator.html}
|
16009
|
+
*/
|
16010
|
+
export type B2BIPartnershipLineTerminator = "CRLF" | "LF" | "CR";
|
15982
16011
|
/**
|
15983
16012
|
* Type definition for `AWS::B2BI::Partnership.OutboundEdiOptions`.
|
15984
16013
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-outboundedioptions.html}
|
@@ -16002,6 +16031,52 @@ export type B2BIPartnershipTag = {
|
|
16002
16031
|
*/
|
16003
16032
|
Value: string;
|
16004
16033
|
};
|
16034
|
+
/**
|
16035
|
+
* Type definition for `AWS::B2BI::Partnership.WrapFormat`.
|
16036
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-wrapformat.html}
|
16037
|
+
*/
|
16038
|
+
export type B2BIPartnershipWrapFormat = "SEGMENT" | "ONE_LINE" | "LINE_LENGTH";
|
16039
|
+
/**
|
16040
|
+
* Type definition for `AWS::B2BI::Partnership.WrapOptions`.
|
16041
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-wrapoptions.html}
|
16042
|
+
*/
|
16043
|
+
export type B2BIPartnershipWrapOptions = {
|
16044
|
+
/**
|
16045
|
+
* @min `1`
|
16046
|
+
*/
|
16047
|
+
LineLength?: number;
|
16048
|
+
LineTerminator?: B2BIPartnershipLineTerminator;
|
16049
|
+
WrapBy?: B2BIPartnershipWrapFormat;
|
16050
|
+
};
|
16051
|
+
/**
|
16052
|
+
* Type definition for `AWS::B2BI::Partnership.X12AcknowledgmentOptions`.
|
16053
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12acknowledgmentoptions.html}
|
16054
|
+
*/
|
16055
|
+
export type B2BIPartnershipX12AcknowledgmentOptions = {
|
16056
|
+
FunctionalAcknowledgment: B2BIPartnershipX12FunctionalAcknowledgment;
|
16057
|
+
TechnicalAcknowledgment: B2BIPartnershipX12TechnicalAcknowledgment;
|
16058
|
+
};
|
16059
|
+
/**
|
16060
|
+
* Type definition for `AWS::B2BI::Partnership.X12ControlNumbers`.
|
16061
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12controlnumbers.html}
|
16062
|
+
*/
|
16063
|
+
export type B2BIPartnershipX12ControlNumbers = {
|
16064
|
+
/**
|
16065
|
+
* @min `1`
|
16066
|
+
* @max `999999999`
|
16067
|
+
*/
|
16068
|
+
StartingFunctionalGroupControlNumber?: number;
|
16069
|
+
/**
|
16070
|
+
* @min `1`
|
16071
|
+
* @max `999999999`
|
16072
|
+
*/
|
16073
|
+
StartingInterchangeControlNumber?: number;
|
16074
|
+
/**
|
16075
|
+
* @min `1`
|
16076
|
+
* @max `999999999`
|
16077
|
+
*/
|
16078
|
+
StartingTransactionSetControlNumber?: number;
|
16079
|
+
};
|
16005
16080
|
/**
|
16006
16081
|
* Type definition for `AWS::B2BI::Partnership.X12Delimiters`.
|
16007
16082
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12delimiters.html}
|
@@ -16032,7 +16107,13 @@ export type B2BIPartnershipX12Delimiters = {
|
|
16032
16107
|
*/
|
16033
16108
|
export type B2BIPartnershipX12Envelope = {
|
16034
16109
|
Common?: B2BIPartnershipX12OutboundEdiHeaders;
|
16110
|
+
WrapOptions?: B2BIPartnershipWrapOptions;
|
16035
16111
|
};
|
16112
|
+
/**
|
16113
|
+
* Type definition for `AWS::B2BI::Partnership.X12FunctionalAcknowledgment`.
|
16114
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12functionalacknowledgment.html}
|
16115
|
+
*/
|
16116
|
+
export type B2BIPartnershipX12FunctionalAcknowledgment = "DO_NOT_GENERATE" | "GENERATE_ALL_SEGMENTS" | "GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP";
|
16036
16117
|
/**
|
16037
16118
|
* Type definition for `AWS::B2BI::Partnership.X12FunctionalGroupHeaders`.
|
16038
16119
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12functionalgroupheaders.html}
|
@@ -16057,6 +16138,18 @@ export type B2BIPartnershipX12FunctionalGroupHeaders = {
|
|
16057
16138
|
*/
|
16058
16139
|
ResponsibleAgencyCode?: string;
|
16059
16140
|
};
|
16141
|
+
/**
|
16142
|
+
* Type definition for `AWS::B2BI::Partnership.X12GS05TimeFormat`.
|
16143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12gs05timeformat.html}
|
16144
|
+
*/
|
16145
|
+
export type B2BIPartnershipX12GS05TimeFormat = "HHMM" | "HHMMSS" | "HHMMSSDD";
|
16146
|
+
/**
|
16147
|
+
* Type definition for `AWS::B2BI::Partnership.X12InboundEdiOptions`.
|
16148
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12inboundedioptions.html}
|
16149
|
+
*/
|
16150
|
+
export type B2BIPartnershipX12InboundEdiOptions = {
|
16151
|
+
AcknowledgmentOptions?: B2BIPartnershipX12AcknowledgmentOptions;
|
16152
|
+
};
|
16060
16153
|
/**
|
16061
16154
|
* Type definition for `AWS::B2BI::Partnership.X12InterchangeControlHeaders`.
|
16062
16155
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12interchangecontrolheaders.html}
|
@@ -16109,11 +16202,18 @@ export type B2BIPartnershipX12InterchangeControlHeaders = {
|
|
16109
16202
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html}
|
16110
16203
|
*/
|
16111
16204
|
export type B2BIPartnershipX12OutboundEdiHeaders = {
|
16205
|
+
ControlNumbers?: B2BIPartnershipX12ControlNumbers;
|
16112
16206
|
Delimiters?: B2BIPartnershipX12Delimiters;
|
16113
16207
|
FunctionalGroupHeaders?: B2BIPartnershipX12FunctionalGroupHeaders;
|
16208
|
+
Gs05TimeFormat?: B2BIPartnershipX12GS05TimeFormat;
|
16114
16209
|
InterchangeControlHeaders?: B2BIPartnershipX12InterchangeControlHeaders;
|
16115
16210
|
ValidateEdi?: boolean;
|
16116
16211
|
};
|
16212
|
+
/**
|
16213
|
+
* Type definition for `AWS::B2BI::Partnership.X12TechnicalAcknowledgment`.
|
16214
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12technicalacknowledgment.html}
|
16215
|
+
*/
|
16216
|
+
export type B2BIPartnershipX12TechnicalAcknowledgment = "DO_NOT_GENERATE" | "GENERATE_ALL_SEGMENTS";
|
16117
16217
|
/**
|
16118
16218
|
* Definition of AWS::B2BI::Profile Resource Type
|
16119
16219
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-profile.html}
|
@@ -16248,6 +16348,13 @@ export type B2BITransformerAttributes = {
|
|
16248
16348
|
*/
|
16249
16349
|
TransformerId: string;
|
16250
16350
|
};
|
16351
|
+
/**
|
16352
|
+
* Type definition for `AWS::B2BI::Transformer.AdvancedOptions`.
|
16353
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-advancedoptions.html}
|
16354
|
+
*/
|
16355
|
+
export type B2BITransformerAdvancedOptions = {
|
16356
|
+
X12?: B2BITransformerX12AdvancedOptions;
|
16357
|
+
};
|
16251
16358
|
/**
|
16252
16359
|
* Type definition for `AWS::B2BI::Transformer.EdiType`.
|
16253
16360
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-editype.html}
|
@@ -16277,6 +16384,7 @@ export type B2BITransformerFromFormat = "X12";
|
|
16277
16384
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-inputconversion.html}
|
16278
16385
|
*/
|
16279
16386
|
export type B2BITransformerInputConversion = {
|
16387
|
+
AdvancedOptions?: B2BITransformerAdvancedOptions;
|
16280
16388
|
FormatOptions?: B2BITransformerFormatOptions;
|
16281
16389
|
FromFormat: B2BITransformerFromFormat;
|
16282
16390
|
};
|
@@ -16359,6 +16467,13 @@ export type B2BITransformerToFormat = "X12";
|
|
16359
16467
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-transformerstatus.html}
|
16360
16468
|
*/
|
16361
16469
|
export type B2BITransformerTransformerStatus = "active" | "inactive";
|
16470
|
+
/**
|
16471
|
+
* Type definition for `AWS::B2BI::Transformer.X12AdvancedOptions`.
|
16472
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12advancedoptions.html}
|
16473
|
+
*/
|
16474
|
+
export type B2BITransformerX12AdvancedOptions = {
|
16475
|
+
SplitOptions?: B2BITransformerX12SplitOptions;
|
16476
|
+
};
|
16362
16477
|
/**
|
16363
16478
|
* Type definition for `AWS::B2BI::Transformer.X12Details`.
|
16364
16479
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12details.html}
|
@@ -16367,6 +16482,18 @@ export type B2BITransformerX12Details = {
|
|
16367
16482
|
TransactionSet?: B2BITransformerX12TransactionSet;
|
16368
16483
|
Version?: B2BITransformerX12Version;
|
16369
16484
|
};
|
16485
|
+
/**
|
16486
|
+
* Type definition for `AWS::B2BI::Transformer.X12SplitBy`.
|
16487
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitby.html}
|
16488
|
+
*/
|
16489
|
+
export type B2BITransformerX12SplitBy = "NONE" | "TRANSACTION";
|
16490
|
+
/**
|
16491
|
+
* Type definition for `AWS::B2BI::Transformer.X12SplitOptions`.
|
16492
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12splitoptions.html}
|
16493
|
+
*/
|
16494
|
+
export type B2BITransformerX12SplitOptions = {
|
16495
|
+
SplitBy?: B2BITransformerX12SplitBy;
|
16496
|
+
};
|
16370
16497
|
/**
|
16371
16498
|
* Type definition for `AWS::B2BI::Transformer.X12TransactionSet`.
|
16372
16499
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-x12transactionset.html}
|
@@ -17031,6 +17158,7 @@ export type BatchComputeEnvironmentLaunchTemplateSpecification = {
|
|
17031
17158
|
LaunchTemplateId?: string;
|
17032
17159
|
LaunchTemplateName?: string;
|
17033
17160
|
Overrides?: BatchComputeEnvironmentLaunchTemplateSpecificationOverride[];
|
17161
|
+
UserdataType?: "EKS_BOOTSTRAP_SH" | "EKS_NODEADM";
|
17034
17162
|
Version?: string;
|
17035
17163
|
};
|
17036
17164
|
/**
|
@@ -17041,6 +17169,7 @@ export type BatchComputeEnvironmentLaunchTemplateSpecificationOverride = {
|
|
17041
17169
|
LaunchTemplateId?: string;
|
17042
17170
|
LaunchTemplateName?: string;
|
17043
17171
|
TargetInstanceTypes?: string[];
|
17172
|
+
UserdataType?: "EKS_BOOTSTRAP_SH" | "EKS_NODEADM";
|
17044
17173
|
Version?: string;
|
17045
17174
|
};
|
17046
17175
|
/**
|
@@ -62763,6 +62892,29 @@ export type ECSPrimaryTaskSetProps = {
|
|
62763
62892
|
* The ``AWS::ECS::Service`` resource creates an Amazon Elastic Container Service (Amazon ECS) service that runs and maintains the requested number of tasks and associated load balancers.
|
62764
62893
|
The stack update fails if you change any properties that require replacement and at least one ECS Service Connect ``ServiceConnectConfiguration`` property is configured. This is because AWS CloudFormation creates the replacement service first, but each ``ServiceConnectService`` must have a name that is unique in the namespace.
|
62765
62894
|
Starting April 15, 2023, AWS; will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, ECS, or EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
62895
|
+
On June 12, 2025, Amazon ECS launched support for updating capacity provider configuration for ECS services. With this launch, ECS also aligned the CFN update behavior for ``CapacityProviderStrategy`` parameter with the standard practice. For more information, see [adds support for updating capacity provider configuration for ECS services](https://docs.aws.amazon.com/about-aws/whats-new/2025/05/amazon-ecs-capacity-provider-configuration-ecs/). Previously ECS ignored the ``CapacityProviderStrategy`` property if it was set to an empty list for example, ``[]`` in CFN, because updating capacity provider configuration was not supported. Now, with support for capacity provider updates, customers can remove capacity providers from a service by passing an empty list. When you specify an empty list (``[]``) for the ``CapacityProviderStrategy`` property in your CFN template, ECS will remove any capacity providers associated with the service, as follows:
|
62896
|
+
+ For services created with a capacity provider strategy after the launch:
|
62897
|
+
+ If there's a cluster default strategy set, the service will revert to using that default strategy.
|
62898
|
+
+ If no cluster default strategy exists, you will receive the following error:
|
62899
|
+
No launch type to fall back to for empty capacity provider strategy. Your service was not created with a launch type.
|
62900
|
+
|
62901
|
+
+ For services created with a capacity provider strategy prior to the launch:
|
62902
|
+
+ If ``CapacityProviderStrategy`` had ``FARGATE_SPOT`` or ``FARGATE`` capacity providers, the launch type will be updated to ``FARGATE`` and the capacity provider will be removed.
|
62903
|
+
+ If the strategy included Auto Scaling group capacity providers, the service will revert to EC2 launch type, and the Auto Scaling group capacity providers will not be used.
|
62904
|
+
|
62905
|
+
|
62906
|
+
Recommended Actions
|
62907
|
+
If you are currently using ``CapacityProviderStrategy: []`` in your CFN templates, you should take one of the following actions:
|
62908
|
+
+ If you do not intend to update the Capacity Provider Strategy:
|
62909
|
+
+ Remove the ``CapacityProviderStrategy`` property entirely from your CFN template
|
62910
|
+
+ Alternatively, use ``!Ref ::NoValue`` for the ``CapacityProviderStrategy`` property in your template
|
62911
|
+
|
62912
|
+
+ If you intend to maintain or update the Capacity Provider Strategy, specify the actual Capacity Provider Strategy for the service in your CFN template.
|
62913
|
+
|
62914
|
+
If your CFN template had an empty list ([]) for ``CapacityProviderStrategy`` prior to the aforementioned launch on June 12, and you are using the same template with ``CapacityProviderStrategy: []``, you might encounter the following error:
|
62915
|
+
Invalid request provided: When switching from launch type to capacity provider strategy on an existing service, or making a change to a capacity provider strategy on a service that is already using one, you must force a new deployment. (Service: Ecs, Status Code: 400, Request ID: xxx) (SDK Attempt Count: 1)" (RequestToken: xxx HandlerErrorCode: InvalidRequest)
|
62916
|
+
Note that CFN automatically initiates a new deployment when it detects a parameter change, but customers cannot choose to force a deployment through CFN. This is an invalid input scenario that requires one of the remediation actions listed above.
|
62917
|
+
If you are experiencing active production issues related to this change, contact AWS Support or your Technical Account Manager.
|
62766
62918
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html}
|
62767
62919
|
*/
|
62768
62920
|
export type ECSServiceProps = {
|
@@ -71328,7 +71480,7 @@ export type EventsEndpointEndpointEventBus = {
|
|
71328
71480
|
/**
|
71329
71481
|
* @minLength `1`
|
71330
71482
|
* @maxLength `512`
|
71331
|
-
* @pattern `^arn:aws[a-z-]*:events:[a-z]
|
71483
|
+
* @pattern `^arn:aws[a-z-]*:events:[a-z]+-[a-z-]+-\d+:\d{12}:event-bus/[\w.-]+$`
|
71332
71484
|
*/
|
71333
71485
|
EventBusArn: string;
|
71334
71486
|
};
|
@@ -74822,6 +74974,91 @@ export type FSxFileSystemWindowsConfiguration = {
|
|
74822
74974
|
ThroughputCapacity: number;
|
74823
74975
|
WeeklyMaintenanceStartTime?: string;
|
74824
74976
|
};
|
74977
|
+
/**
|
74978
|
+
* Resource type definition for AWS::FSx::S3AccessPointAttachment
|
74979
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-s3accesspointattachment.html}
|
74980
|
+
*/
|
74981
|
+
export type FSxS3AccessPointAttachmentProps = {
|
74982
|
+
/**
|
74983
|
+
* The Name of the S3AccessPointAttachment
|
74984
|
+
* @minLength `3`
|
74985
|
+
* @maxLength `50`
|
74986
|
+
* @pattern `^(?=[a-z0-9])[a-z0-9-]{1,48}[a-z0-9]$`
|
74987
|
+
*/
|
74988
|
+
Name: string;
|
74989
|
+
OpenZFSConfiguration: FSxS3AccessPointAttachmentS3AccessPointOpenZFSConfiguration;
|
74990
|
+
S3AccessPoint?: FSxS3AccessPointAttachmentS3AccessPoint;
|
74991
|
+
Type: "OPENZFS";
|
74992
|
+
};
|
74993
|
+
/**
|
74994
|
+
* Type definition for `AWS::FSx::S3AccessPointAttachment.FileSystemGID`.
|
74995
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-filesystemgid.html}
|
74996
|
+
*/
|
74997
|
+
export type FSxS3AccessPointAttachmentFileSystemGID = {
|
74998
|
+
/**
|
74999
|
+
* @min `0`
|
75000
|
+
* @max `4294967295`
|
75001
|
+
*/
|
75002
|
+
Gid: number;
|
75003
|
+
};
|
75004
|
+
/**
|
75005
|
+
* Type definition for `AWS::FSx::S3AccessPointAttachment.OpenZFSFileSystemIdentity`.
|
75006
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.html}
|
75007
|
+
*/
|
75008
|
+
export type FSxS3AccessPointAttachmentOpenZFSFileSystemIdentity = {
|
75009
|
+
PosixUser: FSxS3AccessPointAttachmentOpenZFSPosixFileSystemUser;
|
75010
|
+
Type: "POSIX";
|
75011
|
+
};
|
75012
|
+
/**
|
75013
|
+
* Type definition for `AWS::FSx::S3AccessPointAttachment.OpenZFSPosixFileSystemUser`.
|
75014
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsposixfilesystemuser.html}
|
75015
|
+
*/
|
75016
|
+
export type FSxS3AccessPointAttachmentOpenZFSPosixFileSystemUser = {
|
75017
|
+
/**
|
75018
|
+
* @min `0`
|
75019
|
+
* @max `4294967295`
|
75020
|
+
*/
|
75021
|
+
Gid: number;
|
75022
|
+
SecondaryGids?: FSxS3AccessPointAttachmentFileSystemGID[];
|
75023
|
+
/**
|
75024
|
+
* @min `0`
|
75025
|
+
* @max `4294967295`
|
75026
|
+
*/
|
75027
|
+
Uid: number;
|
75028
|
+
};
|
75029
|
+
/**
|
75030
|
+
* Type definition for `AWS::FSx::S3AccessPointAttachment.S3AccessPoint`.
|
75031
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspoint.html}
|
75032
|
+
*/
|
75033
|
+
export type FSxS3AccessPointAttachmentS3AccessPoint = {
|
75034
|
+
Policy?: Record<string, any> | string;
|
75035
|
+
VpcConfiguration?: FSxS3AccessPointAttachmentS3AccessPointVpcConfiguration;
|
75036
|
+
};
|
75037
|
+
/**
|
75038
|
+
* Type definition for `AWS::FSx::S3AccessPointAttachment.S3AccessPointOpenZFSConfiguration`.
|
75039
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.html}
|
75040
|
+
*/
|
75041
|
+
export type FSxS3AccessPointAttachmentS3AccessPointOpenZFSConfiguration = {
|
75042
|
+
FileSystemIdentity: FSxS3AccessPointAttachmentOpenZFSFileSystemIdentity;
|
75043
|
+
/**
|
75044
|
+
* @minLength `23`
|
75045
|
+
* @maxLength `23`
|
75046
|
+
* @pattern `^(fsvol-[0-9a-f]{17,})$`
|
75047
|
+
*/
|
75048
|
+
VolumeId: string;
|
75049
|
+
};
|
75050
|
+
/**
|
75051
|
+
* Type definition for `AWS::FSx::S3AccessPointAttachment.S3AccessPointVpcConfiguration`.
|
75052
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointvpcconfiguration.html}
|
75053
|
+
*/
|
75054
|
+
export type FSxS3AccessPointAttachmentS3AccessPointVpcConfiguration = {
|
75055
|
+
/**
|
75056
|
+
* @minLength `12`
|
75057
|
+
* @maxLength `21`
|
75058
|
+
* @pattern `^(vpc-[0-9a-f]{8,})$`
|
75059
|
+
*/
|
75060
|
+
VpcId: string;
|
75061
|
+
};
|
74825
75062
|
/**
|
74826
75063
|
* Resource Type definition for AWS::FSx::Snapshot
|
74827
75064
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-snapshot.html}
|
@@ -100041,6 +100278,11 @@ export type KMSKeyProps = {
|
|
100041
100278
|
+ Other asymmetric elliptic curve key pairs (signing and verification)
|
100042
100279
|
+ ``ECC_SECG_P256K1`` (secp256k1), commonly used for cryptocurrencies.
|
100043
100280
|
|
100281
|
+
+ Asymmetric ML-DSA key pairs (signing and verification)
|
100282
|
+
+ ``ML_DSA_44``
|
100283
|
+
+ ``ML_DSA_65``
|
100284
|
+
+ ``ML_DSA_87``
|
100285
|
+
|
100044
100286
|
+ SM2 key pairs (encryption and decryption *or* signing and verification *or* deriving shared secrets)
|
100045
100287
|
+ ``SM2`` (China Regions only)
|
100046
100288
|
*/
|
@@ -100053,7 +100295,8 @@ export type KMSKeyProps = {
|
|
100053
100295
|
+ For HMAC KMS keys (symmetric), specify ``GENERATE_VERIFY_MAC``.
|
100054
100296
|
+ For asymmetric KMS keys with RSA key pairs, specify ``ENCRYPT_DECRYPT`` or ``SIGN_VERIFY``.
|
100055
100297
|
+ For asymmetric KMS keys with NIST-recommended elliptic curve key pairs, specify ``SIGN_VERIFY`` or ``KEY_AGREEMENT``.
|
100056
|
-
+ For asymmetric KMS keys with ``ECC_SECG_P256K1`` key pairs specify ``SIGN_VERIFY``.
|
100298
|
+
+ For asymmetric KMS keys with ``ECC_SECG_P256K1`` key pairs, specify ``SIGN_VERIFY``.
|
100299
|
+
+ For asymmetric KMS keys with ML-DSA key pairs, specify ``SIGN_VERIFY``.
|
100057
100300
|
+ For asymmetric KMS keys with SM2 key pairs (China Regions only), specify ``ENCRYPT_DECRYPT``, ``SIGN_VERIFY``, or ``KEY_AGREEMENT``.
|
100058
100301
|
*/
|
100059
100302
|
KeyUsage?: "ENCRYPT_DECRYPT" | "SIGN_VERIFY" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT";
|
@@ -100071,7 +100314,8 @@ export type KMSKeyProps = {
|
|
100071
100314
|
* The source of the key material for the KMS key. You cannot change the origin after you create the KMS key. The default is ``AWS_KMS``, which means that KMS creates the key material.
|
100072
100315
|
To [create a KMS key with no key material](https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys-create-cmk.html) (for imported key material), set this value to ``EXTERNAL``. For more information about importing key material into KMS, see [Importing Key Material](https://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html) in the *Developer Guide*.
|
100073
100316
|
You can ignore ``ENABLED`` when Origin is ``EXTERNAL``. When a KMS key with Origin ``EXTERNAL`` is created, the key state is ``PENDING_IMPORT`` and ``ENABLED`` is ``false``. After you import the key material, ``ENABLED`` updated to ``true``. The KMS key can then be used for Cryptographic Operations.
|
100074
|
-
|
100317
|
+
+ CFN doesn't support creating an ``Origin`` parameter of the ``AWS_CLOUDHSM`` or ``EXTERNAL_KEY_STORE`` values.
|
100318
|
+
+ ``EXTERNAL`` is not supported for ML-DSA keys.
|
100075
100319
|
*/
|
100076
100320
|
Origin?: "AWS_KMS" | "EXTERNAL";
|
100077
100321
|
/**
|
@@ -102615,6 +102859,7 @@ export type LexBotBotLocale = {
|
|
102615
102859
|
* @maxLength `200`
|
102616
102860
|
*/
|
102617
102861
|
Description?: string;
|
102862
|
+
GenerativeAISettings?: LexBotGenerativeAISettings;
|
102618
102863
|
/**
|
102619
102864
|
* @maxLength `1000`
|
102620
102865
|
*/
|
@@ -102935,6 +103180,31 @@ export type LexBotFulfillmentUpdatesSpecification = {
|
|
102935
103180
|
TimeoutInSeconds?: number;
|
102936
103181
|
UpdateResponse?: LexBotFulfillmentUpdateResponseSpecification;
|
102937
103182
|
};
|
103183
|
+
/**
|
103184
|
+
* Type definition for `AWS::Lex::Bot.GenerativeAISettings`.
|
103185
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-generativeaisettings.html}
|
103186
|
+
*/
|
103187
|
+
export type LexBotGenerativeAISettings = {
|
103188
|
+
BuildtimeSettings?: {
|
103189
|
+
DescriptiveBotBuilderSpecification?: {
|
103190
|
+
BedrockModelSpecification?: LexBotBedrockModelSpecification;
|
103191
|
+
Enabled: boolean;
|
103192
|
+
};
|
103193
|
+
SampleUtteranceGenerationSpecification?: {
|
103194
|
+
BedrockModelSpecification?: LexBotBedrockModelSpecification;
|
103195
|
+
Enabled: boolean;
|
103196
|
+
};
|
103197
|
+
};
|
103198
|
+
RuntimeSettings?: {
|
103199
|
+
NluImprovementSpecification?: {
|
103200
|
+
Enabled: boolean;
|
103201
|
+
};
|
103202
|
+
SlotResolutionImprovementSpecification?: {
|
103203
|
+
BedrockModelSpecification?: LexBotBedrockModelSpecification;
|
103204
|
+
Enabled: boolean;
|
103205
|
+
};
|
103206
|
+
};
|
103207
|
+
};
|
102938
103208
|
/**
|
102939
103209
|
* Type definition for `AWS::Lex::Bot.GrammarSlotTypeSetting`.
|
102940
103210
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-grammarslottypesetting.html}
|
@@ -107179,6 +107449,11 @@ export type LogsTransformerCopyValueEntry = {
|
|
107179
107449
|
*/
|
107180
107450
|
Target: string;
|
107181
107451
|
};
|
107452
|
+
/**
|
107453
|
+
* Type definition for `AWS::Logs::Transformer.EventSource`.
|
107454
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-eventsource.html}
|
107455
|
+
*/
|
107456
|
+
export type LogsTransformerEventSource = "CloudTrail" | "Route53Resolver" | "VPCFlow" | "EKSAudit" | "AWSWAF";
|
107182
107457
|
/**
|
107183
107458
|
* Type definition for `AWS::Logs::Transformer.MoveKeyEntry`.
|
107184
107459
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-movekeyentry.html}
|
@@ -107194,6 +107469,11 @@ export type LogsTransformerMoveKeyEntry = {
|
|
107194
107469
|
*/
|
107195
107470
|
Target: string;
|
107196
107471
|
};
|
107472
|
+
/**
|
107473
|
+
* Type definition for `AWS::Logs::Transformer.OcsfVersion`.
|
107474
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-ocsfversion.html}
|
107475
|
+
*/
|
107476
|
+
export type LogsTransformerOcsfVersion = "V1.1";
|
107197
107477
|
/**
|
107198
107478
|
* Type definition for `AWS::Logs::Transformer.ParseCloudfront`.
|
107199
107479
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsecloudfront.html}
|
@@ -107224,6 +107504,18 @@ export type LogsTransformerParseRoute53 = {
|
|
107224
107504
|
*/
|
107225
107505
|
Source?: string;
|
107226
107506
|
};
|
107507
|
+
/**
|
107508
|
+
* Type definition for `AWS::Logs::Transformer.ParseToOCSF`.
|
107509
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsetoocsf.html}
|
107510
|
+
*/
|
107511
|
+
export type LogsTransformerParseToOCSF = {
|
107512
|
+
EventSource: LogsTransformerEventSource;
|
107513
|
+
OcsfVersion: LogsTransformerOcsfVersion;
|
107514
|
+
/**
|
107515
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
107516
|
+
*/
|
107517
|
+
Source?: string;
|
107518
|
+
};
|
107227
107519
|
/**
|
107228
107520
|
* Type definition for `AWS::Logs::Transformer.ParseVPC`.
|
107229
107521
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsevpc.html}
|
@@ -107384,6 +107676,7 @@ export type LogsTransformerProcessor = {
|
|
107384
107676
|
};
|
107385
107677
|
ParsePostgres?: LogsTransformerParsePostgres;
|
107386
107678
|
ParseRoute53?: LogsTransformerParseRoute53;
|
107679
|
+
ParseToOCSF?: LogsTransformerParseToOCSF;
|
107387
107680
|
ParseVPC?: LogsTransformerParseVPC;
|
107388
107681
|
ParseWAF?: LogsTransformerParseWAF;
|
107389
107682
|
RenameKeys?: {
|
@@ -115841,6 +116134,10 @@ export type MediaTailorPlaybackConfigurationProps = {
|
|
115841
116134
|
* The configuration for DASH content.
|
115842
116135
|
*/
|
115843
116136
|
DashConfiguration?: MediaTailorPlaybackConfigurationDashConfiguration;
|
116137
|
+
/**
|
116138
|
+
* The setting that controls whether players can use stitched or guided ad insertion. The default, STITCHED_ONLY, forces all player sessions to use stitched (server-side) ad insertion. Choosing PLAYER_SELECT allows players to select either stitched or guided ad insertion at session-initialization time. The default for players that do not specify an insertion mode is stitched.
|
116139
|
+
*/
|
116140
|
+
InsertionMode?: MediaTailorPlaybackConfigurationInsertionMode;
|
115844
116141
|
/**
|
115845
116142
|
* The configuration for pre-roll ad insertion.
|
115846
116143
|
*/
|
@@ -116020,6 +116317,11 @@ export type MediaTailorPlaybackConfigurationDashConfiguration = {
|
|
116020
116317
|
*/
|
116021
116318
|
OriginManifestType?: "SINGLE_PERIOD" | "MULTI_PERIOD";
|
116022
116319
|
};
|
116320
|
+
/**
|
116321
|
+
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.InsertionMode`.
|
116322
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-insertionmode.html}
|
116323
|
+
*/
|
116324
|
+
export type MediaTailorPlaybackConfigurationInsertionMode = "STITCHED_ONLY" | "PLAYER_SELECT";
|
116023
116325
|
/**
|
116024
116326
|
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.LivePreRollConfiguration`.
|
116025
116327
|
* The configuration for pre-roll ad insertion.
|
@@ -120881,10 +121183,18 @@ export type NetworkManagerVpcAttachmentVpcOptions = {
|
|
120881
121183
|
* Indicates whether to enable ApplianceModeSupport Support for Vpc Attachment. Valid Values: true | false
|
120882
121184
|
*/
|
120883
121185
|
ApplianceModeSupport?: boolean;
|
121186
|
+
/**
|
121187
|
+
* Indicates whether to enable private DNS Support for Vpc Attachment. Valid Values: true | false
|
121188
|
+
*/
|
121189
|
+
DnsSupport?: boolean;
|
120884
121190
|
/**
|
120885
121191
|
* Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
|
120886
121192
|
*/
|
120887
121193
|
Ipv6Support?: boolean;
|
121194
|
+
/**
|
121195
|
+
* Indicates whether to enable Security Group Referencing Support for Vpc Attachment. Valid Values: true | false
|
121196
|
+
*/
|
121197
|
+
SecurityGroupReferencingSupport?: boolean;
|
120888
121198
|
};
|
120889
121199
|
/**
|
120890
121200
|
* Resource Type definition for AWS::Notifications::ChannelAssociation
|
@@ -166369,6 +166679,7 @@ export type Route53ResolverResolverEndpointProps = {
|
|
166369
166679
|
* Indicates whether the Resolver endpoint allows inbound or outbound DNS queries:
|
166370
166680
|
- INBOUND: allows DNS queries to your VPC from your network
|
166371
166681
|
- OUTBOUND: allows DNS queries from your VPC to your network
|
166682
|
+
- INBOUND_DELEGATION: allows DNS queries to your VPC from your network with authoritative answers from private hosted zones
|
166372
166683
|
*/
|
166373
166684
|
Direction: string;
|
166374
166685
|
/**
|
@@ -166601,6 +166912,12 @@ export type Route53ResolverResolverQueryLoggingConfigAssociationAttributes = {
|
|
166601
166912
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html}
|
166602
166913
|
*/
|
166603
166914
|
export type Route53ResolverResolverRuleProps = {
|
166915
|
+
/**
|
166916
|
+
* The name server domain for queries to be delegated to if a query matches the delegation record.
|
166917
|
+
* @minLength `1`
|
166918
|
+
* @maxLength `256`
|
166919
|
+
*/
|
166920
|
+
DelegationRecord?: string;
|
166604
166921
|
/**
|
166605
166922
|
* DNS queries for this domain name are forwarded to the IP addresses that are specified in TargetIps
|
166606
166923
|
* @minLength `1`
|
@@ -169998,6 +170315,22 @@ export type S3OutpostsEndpointNetworkInterface = {
|
|
169998
170315
|
*/
|
169999
170316
|
NetworkInterfaceId: string;
|
170000
170317
|
};
|
170318
|
+
/**
|
170319
|
+
* Resource Type definition for AWS::S3Tables::Namespace
|
170320
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-namespace.html}
|
170321
|
+
*/
|
170322
|
+
export type S3TablesNamespaceProps = {
|
170323
|
+
/**
|
170324
|
+
* A name for the namespace.
|
170325
|
+
* @minLength `1`
|
170326
|
+
* @maxLength `255`
|
170327
|
+
*/
|
170328
|
+
Namespace: string;
|
170329
|
+
/**
|
170330
|
+
* The Amazon Resource Name (ARN) of the specified table bucket.
|
170331
|
+
*/
|
170332
|
+
TableBucketARN: string;
|
170333
|
+
};
|
170001
170334
|
/**
|
170002
170335
|
* Resource type definition for `AWS::S3Tables::TableBucket`.
|
170003
170336
|
* Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack.
|
@@ -197483,6 +197816,378 @@ export type WorkSpacesWorkspacesPoolTimeoutSettings = {
|
|
197483
197816
|
*/
|
197484
197817
|
MaxUserDurationInSeconds?: number;
|
197485
197818
|
};
|
197819
|
+
/**
|
197820
|
+
* Resource Type definition for AWS::WorkspacesInstances::Volume - Manages WorkSpaces Volume resources
|
197821
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html}
|
197822
|
+
*/
|
197823
|
+
export type WorkspacesInstancesVolumeProps = {
|
197824
|
+
/**
|
197825
|
+
* The Availability Zone in which to create the volume
|
197826
|
+
* @pattern `^[a-z]{2}-[a-z]+-\d[a-z](-[a-z0-9]+)?$`
|
197827
|
+
*/
|
197828
|
+
AvailabilityZone: string;
|
197829
|
+
/**
|
197830
|
+
* Indicates whether the volume should be encrypted
|
197831
|
+
*/
|
197832
|
+
Encrypted?: boolean;
|
197833
|
+
/**
|
197834
|
+
* The number of I/O operations per second (IOPS)
|
197835
|
+
* @min `0`
|
197836
|
+
*/
|
197837
|
+
Iops?: number;
|
197838
|
+
/**
|
197839
|
+
* The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption
|
197840
|
+
* @maxLength `128`
|
197841
|
+
*/
|
197842
|
+
KmsKeyId?: string;
|
197843
|
+
/**
|
197844
|
+
* The size of the volume, in GiBs
|
197845
|
+
* @min `0`
|
197846
|
+
*/
|
197847
|
+
SizeInGB?: number;
|
197848
|
+
/**
|
197849
|
+
* The snapshot from which to create the volume
|
197850
|
+
* @pattern `^snap-[0-9a-zA-Z]{1,63}$`
|
197851
|
+
*/
|
197852
|
+
SnapshotId?: string;
|
197853
|
+
/**
|
197854
|
+
* The tags passed to EBS volume
|
197855
|
+
* @maxLength `30`
|
197856
|
+
*/
|
197857
|
+
TagSpecifications?: WorkspacesInstancesVolumeTagSpecification[];
|
197858
|
+
/**
|
197859
|
+
* The throughput to provision for a volume, with a maximum of 1,000 MiB/s
|
197860
|
+
* @min `0`
|
197861
|
+
*/
|
197862
|
+
Throughput?: number;
|
197863
|
+
/**
|
197864
|
+
* The volume type
|
197865
|
+
*/
|
197866
|
+
VolumeType?: "standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3";
|
197867
|
+
};
|
197868
|
+
/**
|
197869
|
+
* Attribute type definition for `AWS::WorkspacesInstances::Volume`.
|
197870
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#aws-resource-workspacesinstances-volume-return-values}
|
197871
|
+
*/
|
197872
|
+
export type WorkspacesInstancesVolumeAttributes = {
|
197873
|
+
/**
|
197874
|
+
* Unique identifier for the volume
|
197875
|
+
* @pattern `^vol-[0-9a-zA-Z]{1,63}$`
|
197876
|
+
*/
|
197877
|
+
VolumeId: string;
|
197878
|
+
};
|
197879
|
+
/**
|
197880
|
+
* Type definition for `AWS::WorkspacesInstances::Volume.Tag`.
|
197881
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-volume-tag.html}
|
197882
|
+
*/
|
197883
|
+
export type WorkspacesInstancesVolumeTag = {
|
197884
|
+
/**
|
197885
|
+
* The key name of the tag
|
197886
|
+
* @minLength `1`
|
197887
|
+
* @maxLength `128`
|
197888
|
+
*/
|
197889
|
+
Key: string;
|
197890
|
+
/**
|
197891
|
+
* The value for the tag
|
197892
|
+
* @maxLength `256`
|
197893
|
+
*/
|
197894
|
+
Value: string;
|
197895
|
+
};
|
197896
|
+
/**
|
197897
|
+
* Type definition for `AWS::WorkspacesInstances::Volume.TagSpecification`.
|
197898
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-volume-tagspecification.html}
|
197899
|
+
*/
|
197900
|
+
export type WorkspacesInstancesVolumeTagSpecification = {
|
197901
|
+
ResourceType?: "instance" | "volume" | "spot-instances-request" | "network-interface";
|
197902
|
+
/**
|
197903
|
+
* The tags to apply to the resource
|
197904
|
+
*/
|
197905
|
+
Tags?: WorkspacesInstancesVolumeTag[];
|
197906
|
+
};
|
197907
|
+
/**
|
197908
|
+
* Resource Type definition for AWS::WorkspacesInstances::VolumeAssociation
|
197909
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volumeassociation.html}
|
197910
|
+
*/
|
197911
|
+
export type WorkspacesInstancesVolumeAssociationProps = {
|
197912
|
+
/**
|
197913
|
+
* The device name for the volume attachment
|
197914
|
+
* @maxLength `32`
|
197915
|
+
*/
|
197916
|
+
Device: string;
|
197917
|
+
/**
|
197918
|
+
* Mode to use when disassociating the volume
|
197919
|
+
*/
|
197920
|
+
DisassociateMode?: "FORCE" | "NO_FORCE";
|
197921
|
+
/**
|
197922
|
+
* ID of the volume to attach to the workspace instance
|
197923
|
+
* @pattern `^vol-[0-9a-zA-Z]{1,63}$`
|
197924
|
+
*/
|
197925
|
+
VolumeId: string;
|
197926
|
+
/**
|
197927
|
+
* ID of the workspace instance to associate with the volume
|
197928
|
+
* @pattern `^wsinst-[0-9a-zA-Z]{8,63}$`
|
197929
|
+
*/
|
197930
|
+
WorkspaceInstanceId: string;
|
197931
|
+
};
|
197932
|
+
/**
|
197933
|
+
* Resource Type definition for AWS::WorkspacesInstances::WorkspaceInstance
|
197934
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-workspaceinstance.html}
|
197935
|
+
*/
|
197936
|
+
export type WorkspacesInstancesWorkspaceInstanceProps = {
|
197937
|
+
ManagedInstance?: {
|
197938
|
+
BlockDeviceMappings?: WorkspacesInstancesWorkspaceInstanceBlockDeviceMapping[];
|
197939
|
+
CpuOptions?: WorkspacesInstancesWorkspaceInstanceCpuOptionsRequest;
|
197940
|
+
CreditSpecification?: WorkspacesInstancesWorkspaceInstanceCreditSpecificationRequest;
|
197941
|
+
DisableApiStop?: boolean;
|
197942
|
+
EbsOptimized?: boolean;
|
197943
|
+
EnclaveOptions?: WorkspacesInstancesWorkspaceInstanceEnclaveOptionsRequest;
|
197944
|
+
HibernationOptions?: WorkspacesInstancesWorkspaceInstanceHibernationOptionsRequest;
|
197945
|
+
IamInstanceProfile?: WorkspacesInstancesWorkspaceInstanceIamInstanceProfileSpecification;
|
197946
|
+
/**
|
197947
|
+
* @pattern `^ami-[0-9a-zA-Z]{1,63}$`
|
197948
|
+
*/
|
197949
|
+
ImageId: string;
|
197950
|
+
/**
|
197951
|
+
* @pattern `^([a-z0-9-]+)\.([a-z0-9]+)$`
|
197952
|
+
*/
|
197953
|
+
InstanceType: string;
|
197954
|
+
/**
|
197955
|
+
* @maxLength `64`
|
197956
|
+
*/
|
197957
|
+
KeyName?: string;
|
197958
|
+
MaintenanceOptions?: WorkspacesInstancesWorkspaceInstanceInstanceMaintenanceOptionsRequest;
|
197959
|
+
MetadataOptions?: WorkspacesInstancesWorkspaceInstanceInstanceMetadataOptionsRequest;
|
197960
|
+
Monitoring?: WorkspacesInstancesWorkspaceInstanceRunInstancesMonitoringEnabled;
|
197961
|
+
NetworkInterfaces?: WorkspacesInstancesWorkspaceInstanceInstanceNetworkInterfaceSpecification[];
|
197962
|
+
NetworkPerformanceOptions?: WorkspacesInstancesWorkspaceInstanceInstanceNetworkPerformanceOptionsRequest;
|
197963
|
+
Placement?: WorkspacesInstancesWorkspaceInstancePlacement;
|
197964
|
+
PrivateDnsNameOptions?: WorkspacesInstancesWorkspaceInstancePrivateDnsNameOptionsRequest;
|
197965
|
+
/**
|
197966
|
+
* @maxLength `30`
|
197967
|
+
*/
|
197968
|
+
TagSpecifications?: WorkspacesInstancesWorkspaceInstanceTagSpecification[];
|
197969
|
+
/**
|
197970
|
+
* @maxLength `16000`
|
197971
|
+
*/
|
197972
|
+
UserData?: string;
|
197973
|
+
};
|
197974
|
+
/**
|
197975
|
+
* @maxLength `30`
|
197976
|
+
*/
|
197977
|
+
Tags?: WorkspacesInstancesWorkspaceInstanceTag[];
|
197978
|
+
};
|
197979
|
+
/**
|
197980
|
+
* Attribute type definition for `AWS::WorkspacesInstances::WorkspaceInstance`.
|
197981
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-workspaceinstance.html#aws-resource-workspacesinstances-workspaceinstance-return-values}
|
197982
|
+
*/
|
197983
|
+
export type WorkspacesInstancesWorkspaceInstanceAttributes = {
|
197984
|
+
EC2ManagedInstance: {
|
197985
|
+
InstanceId: string;
|
197986
|
+
};
|
197987
|
+
/**
|
197988
|
+
* The current state of the workspace instance
|
197989
|
+
*/
|
197990
|
+
ProvisionState: "ALLOCATING" | "ALLOCATED" | "DEALLOCATING" | "DEALLOCATED" | "ERROR_ALLOCATING" | "ERROR_DEALLOCATING";
|
197991
|
+
/**
|
197992
|
+
* Unique identifier for the workspace instance
|
197993
|
+
* @pattern `^wsinst-[0-9a-zA-Z]{8,63}$`
|
197994
|
+
*/
|
197995
|
+
WorkspaceInstanceId: string;
|
197996
|
+
};
|
197997
|
+
/**
|
197998
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.BlockDeviceMapping`.
|
197999
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-blockdevicemapping.html}
|
198000
|
+
*/
|
198001
|
+
export type WorkspacesInstancesWorkspaceInstanceBlockDeviceMapping = {
|
198002
|
+
/**
|
198003
|
+
* @maxLength `32`
|
198004
|
+
*/
|
198005
|
+
DeviceName?: string;
|
198006
|
+
Ebs?: WorkspacesInstancesWorkspaceInstanceEbsBlockDevice;
|
198007
|
+
/**
|
198008
|
+
* @maxLength `32`
|
198009
|
+
*/
|
198010
|
+
NoDevice?: string;
|
198011
|
+
/**
|
198012
|
+
* @pattern `^ephemeral(0|[1-9][0-9]{0,2})$`
|
198013
|
+
*/
|
198014
|
+
VirtualName?: string;
|
198015
|
+
};
|
198016
|
+
/**
|
198017
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.CpuOptionsRequest`.
|
198018
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-cpuoptionsrequest.html}
|
198019
|
+
*/
|
198020
|
+
export type WorkspacesInstancesWorkspaceInstanceCpuOptionsRequest = {
|
198021
|
+
/**
|
198022
|
+
* @min `0`
|
198023
|
+
*/
|
198024
|
+
CoreCount?: number;
|
198025
|
+
/**
|
198026
|
+
* @min `0`
|
198027
|
+
*/
|
198028
|
+
ThreadsPerCore?: number;
|
198029
|
+
};
|
198030
|
+
/**
|
198031
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.CreditSpecificationRequest`.
|
198032
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-creditspecificationrequest.html}
|
198033
|
+
*/
|
198034
|
+
export type WorkspacesInstancesWorkspaceInstanceCreditSpecificationRequest = {
|
198035
|
+
CpuCredits?: "standard" | "unlimited";
|
198036
|
+
};
|
198037
|
+
/**
|
198038
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.EbsBlockDevice`.
|
198039
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html}
|
198040
|
+
*/
|
198041
|
+
export type WorkspacesInstancesWorkspaceInstanceEbsBlockDevice = {
|
198042
|
+
Encrypted?: boolean;
|
198043
|
+
/**
|
198044
|
+
* @min `0`
|
198045
|
+
*/
|
198046
|
+
Iops?: number;
|
198047
|
+
/**
|
198048
|
+
* @maxLength `128`
|
198049
|
+
*/
|
198050
|
+
KmsKeyId?: string;
|
198051
|
+
/**
|
198052
|
+
* @min `0`
|
198053
|
+
*/
|
198054
|
+
Throughput?: number;
|
198055
|
+
/**
|
198056
|
+
* @min `0`
|
198057
|
+
*/
|
198058
|
+
VolumeSize?: number;
|
198059
|
+
VolumeType?: "standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3";
|
198060
|
+
};
|
198061
|
+
/**
|
198062
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.EnclaveOptionsRequest`.
|
198063
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-enclaveoptionsrequest.html}
|
198064
|
+
*/
|
198065
|
+
export type WorkspacesInstancesWorkspaceInstanceEnclaveOptionsRequest = {
|
198066
|
+
Enabled?: boolean;
|
198067
|
+
};
|
198068
|
+
/**
|
198069
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.HibernationOptionsRequest`.
|
198070
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-hibernationoptionsrequest.html}
|
198071
|
+
*/
|
198072
|
+
export type WorkspacesInstancesWorkspaceInstanceHibernationOptionsRequest = {
|
198073
|
+
Configured?: boolean;
|
198074
|
+
};
|
198075
|
+
/**
|
198076
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.IamInstanceProfileSpecification`.
|
198077
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-iaminstanceprofilespecification.html}
|
198078
|
+
*/
|
198079
|
+
export type WorkspacesInstancesWorkspaceInstanceIamInstanceProfileSpecification = {
|
198080
|
+
/**
|
198081
|
+
* @maxLength `64`
|
198082
|
+
*/
|
198083
|
+
Name?: string;
|
198084
|
+
};
|
198085
|
+
/**
|
198086
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.InstanceMaintenanceOptionsRequest`.
|
198087
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemaintenanceoptionsrequest.html}
|
198088
|
+
*/
|
198089
|
+
export type WorkspacesInstancesWorkspaceInstanceInstanceMaintenanceOptionsRequest = {
|
198090
|
+
AutoRecovery?: "disabled" | "default";
|
198091
|
+
};
|
198092
|
+
/**
|
198093
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.InstanceMetadataOptionsRequest`.
|
198094
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest.html}
|
198095
|
+
*/
|
198096
|
+
export type WorkspacesInstancesWorkspaceInstanceInstanceMetadataOptionsRequest = {
|
198097
|
+
HttpEndpoint?: "enabled" | "disabled";
|
198098
|
+
HttpProtocolIpv6?: "enabled" | "disabled";
|
198099
|
+
/**
|
198100
|
+
* @min `1`
|
198101
|
+
* @max `64`
|
198102
|
+
*/
|
198103
|
+
HttpPutResponseHopLimit?: number;
|
198104
|
+
HttpTokens?: "optional" | "required";
|
198105
|
+
InstanceMetadataTags?: "enabled" | "disabled";
|
198106
|
+
};
|
198107
|
+
/**
|
198108
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.InstanceNetworkInterfaceSpecification`.
|
198109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification.html}
|
198110
|
+
*/
|
198111
|
+
export type WorkspacesInstancesWorkspaceInstanceInstanceNetworkInterfaceSpecification = {
|
198112
|
+
/**
|
198113
|
+
* @maxLength `1000`
|
198114
|
+
* @pattern `^[\S\s]*$`
|
198115
|
+
*/
|
198116
|
+
Description?: string;
|
198117
|
+
/**
|
198118
|
+
* @min `0`
|
198119
|
+
*/
|
198120
|
+
DeviceIndex?: number;
|
198121
|
+
Groups?: string[];
|
198122
|
+
/**
|
198123
|
+
* @pattern `^subnet-[0-9a-zA-Z]{1,63}$`
|
198124
|
+
*/
|
198125
|
+
SubnetId?: string;
|
198126
|
+
};
|
198127
|
+
/**
|
198128
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.InstanceNetworkPerformanceOptionsRequest`.
|
198129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkperformanceoptionsrequest.html}
|
198130
|
+
*/
|
198131
|
+
export type WorkspacesInstancesWorkspaceInstanceInstanceNetworkPerformanceOptionsRequest = {
|
198132
|
+
BandwidthWeighting?: "default" | "vpc-1" | "ebs-1";
|
198133
|
+
};
|
198134
|
+
/**
|
198135
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.Placement`.
|
198136
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-placement.html}
|
198137
|
+
*/
|
198138
|
+
export type WorkspacesInstancesWorkspaceInstancePlacement = {
|
198139
|
+
/**
|
198140
|
+
* @pattern `^[a-z]{2}-[a-z]+-\d[a-z](-[a-z0-9]+)?$`
|
198141
|
+
*/
|
198142
|
+
AvailabilityZone?: string;
|
198143
|
+
/**
|
198144
|
+
* @maxLength `255`
|
198145
|
+
*/
|
198146
|
+
GroupName?: string;
|
198147
|
+
Tenancy?: "default" | "dedicated" | "host";
|
198148
|
+
};
|
198149
|
+
/**
|
198150
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.PrivateDnsNameOptionsRequest`.
|
198151
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest.html}
|
198152
|
+
*/
|
198153
|
+
export type WorkspacesInstancesWorkspaceInstancePrivateDnsNameOptionsRequest = {
|
198154
|
+
EnableResourceNameDnsAAAARecord?: boolean;
|
198155
|
+
EnableResourceNameDnsARecord?: boolean;
|
198156
|
+
HostnameType?: "ip-name" | "resource-name";
|
198157
|
+
};
|
198158
|
+
/**
|
198159
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.RunInstancesMonitoringEnabled`.
|
198160
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-runinstancesmonitoringenabled.html}
|
198161
|
+
*/
|
198162
|
+
export type WorkspacesInstancesWorkspaceInstanceRunInstancesMonitoringEnabled = {
|
198163
|
+
Enabled?: boolean;
|
198164
|
+
};
|
198165
|
+
/**
|
198166
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.Tag`.
|
198167
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-tag.html}
|
198168
|
+
*/
|
198169
|
+
export type WorkspacesInstancesWorkspaceInstanceTag = {
|
198170
|
+
/**
|
198171
|
+
* @minLength `1`
|
198172
|
+
* @maxLength `128`
|
198173
|
+
*/
|
198174
|
+
Key: string;
|
198175
|
+
/**
|
198176
|
+
* @maxLength `256`
|
198177
|
+
*/
|
198178
|
+
Value?: string;
|
198179
|
+
};
|
198180
|
+
/**
|
198181
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.TagSpecification`.
|
198182
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-tagspecification.html}
|
198183
|
+
*/
|
198184
|
+
export type WorkspacesInstancesWorkspaceInstanceTagSpecification = {
|
198185
|
+
ResourceType?: "instance" | "volume" | "spot-instances-request" | "network-interface";
|
198186
|
+
/**
|
198187
|
+
* @maxLength `30`
|
198188
|
+
*/
|
198189
|
+
Tags?: WorkspacesInstancesWorkspaceInstanceTag[];
|
198190
|
+
};
|
197486
198191
|
/**
|
197487
198192
|
* Resource type definition for AWS::WorkSpacesThinClient::Environment.
|
197488
198193
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesthinclient-environment.html}
|
@@ -199409,6 +200114,7 @@ export interface ResourceTypes {
|
|
199409
200114
|
"AWS::FraudDetector::Variable": FraudDetectorVariableProps;
|
199410
200115
|
"AWS::FSx::DataRepositoryAssociation": FSxDataRepositoryAssociationProps;
|
199411
200116
|
"AWS::FSx::FileSystem": FSxFileSystemProps;
|
200117
|
+
"AWS::FSx::S3AccessPointAttachment": FSxS3AccessPointAttachmentProps;
|
199412
200118
|
"AWS::FSx::Snapshot": FSxSnapshotProps;
|
199413
200119
|
"AWS::FSx::StorageVirtualMachine": FSxStorageVirtualMachineProps;
|
199414
200120
|
"AWS::FSx::Volume": FSxVolumeProps;
|
@@ -199987,6 +200693,7 @@ export interface ResourceTypes {
|
|
199987
200693
|
"AWS::S3Outposts::Bucket": S3OutpostsBucketProps;
|
199988
200694
|
"AWS::S3Outposts::BucketPolicy": S3OutpostsBucketPolicyProps;
|
199989
200695
|
"AWS::S3Outposts::Endpoint": S3OutpostsEndpointProps;
|
200696
|
+
"AWS::S3Tables::Namespace": S3TablesNamespaceProps;
|
199990
200697
|
"AWS::S3Tables::TableBucket": S3TablesTableBucketProps;
|
199991
200698
|
"AWS::S3Tables::TableBucketPolicy": S3TablesTableBucketPolicyProps;
|
199992
200699
|
"AWS::SageMaker::App": SageMakerAppProps;
|
@@ -200205,6 +200912,9 @@ export interface ResourceTypes {
|
|
200205
200912
|
"AWS::WorkSpaces::ConnectionAlias": WorkSpacesConnectionAliasProps;
|
200206
200913
|
"AWS::WorkSpaces::Workspace": WorkSpacesWorkspaceProps;
|
200207
200914
|
"AWS::WorkSpaces::WorkspacesPool": WorkSpacesWorkspacesPoolProps;
|
200915
|
+
"AWS::WorkspacesInstances::Volume": WorkspacesInstancesVolumeProps;
|
200916
|
+
"AWS::WorkspacesInstances::VolumeAssociation": WorkspacesInstancesVolumeAssociationProps;
|
200917
|
+
"AWS::WorkspacesInstances::WorkspaceInstance": WorkspacesInstancesWorkspaceInstanceProps;
|
200208
200918
|
"AWS::WorkSpacesThinClient::Environment": WorkSpacesThinClientEnvironmentProps;
|
200209
200919
|
"AWS::WorkSpacesWeb::BrowserSettings": WorkSpacesWebBrowserSettingsProps;
|
200210
200920
|
"AWS::WorkSpacesWeb::DataProtectionSettings": WorkSpacesWebDataProtectionSettingsProps;
|
@@ -201459,6 +202169,8 @@ export interface AttributeTypes {
|
|
201459
202169
|
"AWS::WorkSpaces::ConnectionAlias": WorkSpacesConnectionAliasAttributes;
|
201460
202170
|
"AWS::WorkSpaces::Workspace": WorkSpacesWorkspaceAttributes;
|
201461
202171
|
"AWS::WorkSpaces::WorkspacesPool": WorkSpacesWorkspacesPoolAttributes;
|
202172
|
+
"AWS::WorkspacesInstances::Volume": WorkspacesInstancesVolumeAttributes;
|
202173
|
+
"AWS::WorkspacesInstances::WorkspaceInstance": WorkspacesInstancesWorkspaceInstanceAttributes;
|
201462
202174
|
"AWS::WorkSpacesThinClient::Environment": WorkSpacesThinClientEnvironmentAttributes;
|
201463
202175
|
"AWS::WorkSpacesWeb::BrowserSettings": WorkSpacesWebBrowserSettingsAttributes;
|
201464
202176
|
"AWS::WorkSpacesWeb::DataProtectionSettings": WorkSpacesWebDataProtectionSettingsAttributes;
|
@@ -202073,6 +202785,7 @@ export declare const ResourceType: {
|
|
202073
202785
|
readonly FraudDetectorVariable: "AWS::FraudDetector::Variable";
|
202074
202786
|
readonly FSxDataRepositoryAssociation: "AWS::FSx::DataRepositoryAssociation";
|
202075
202787
|
readonly FSxFileSystem: "AWS::FSx::FileSystem";
|
202788
|
+
readonly FSxS3AccessPointAttachment: "AWS::FSx::S3AccessPointAttachment";
|
202076
202789
|
readonly FSxSnapshot: "AWS::FSx::Snapshot";
|
202077
202790
|
readonly FSxStorageVirtualMachine: "AWS::FSx::StorageVirtualMachine";
|
202078
202791
|
readonly FSxVolume: "AWS::FSx::Volume";
|
@@ -202651,6 +203364,7 @@ export declare const ResourceType: {
|
|
202651
203364
|
readonly S3OutpostsBucket: "AWS::S3Outposts::Bucket";
|
202652
203365
|
readonly S3OutpostsBucketPolicy: "AWS::S3Outposts::BucketPolicy";
|
202653
203366
|
readonly S3OutpostsEndpoint: "AWS::S3Outposts::Endpoint";
|
203367
|
+
readonly S3TablesNamespace: "AWS::S3Tables::Namespace";
|
202654
203368
|
readonly S3TablesTableBucket: "AWS::S3Tables::TableBucket";
|
202655
203369
|
readonly S3TablesTableBucketPolicy: "AWS::S3Tables::TableBucketPolicy";
|
202656
203370
|
readonly SageMakerApp: "AWS::SageMaker::App";
|
@@ -202869,6 +203583,9 @@ export declare const ResourceType: {
|
|
202869
203583
|
readonly WorkSpacesConnectionAlias: "AWS::WorkSpaces::ConnectionAlias";
|
202870
203584
|
readonly WorkSpacesWorkspace: "AWS::WorkSpaces::Workspace";
|
202871
203585
|
readonly WorkSpacesWorkspacesPool: "AWS::WorkSpaces::WorkspacesPool";
|
203586
|
+
readonly WorkspacesInstancesVolume: "AWS::WorkspacesInstances::Volume";
|
203587
|
+
readonly WorkspacesInstancesVolumeAssociation: "AWS::WorkspacesInstances::VolumeAssociation";
|
203588
|
+
readonly WorkspacesInstancesWorkspaceInstance: "AWS::WorkspacesInstances::WorkspaceInstance";
|
202872
203589
|
readonly WorkSpacesThinClientEnvironment: "AWS::WorkSpacesThinClient::Environment";
|
202873
203590
|
readonly WorkSpacesWebBrowserSettings: "AWS::WorkSpacesWeb::BrowserSettings";
|
202874
203591
|
readonly WorkSpacesWebDataProtectionSettings: "AWS::WorkSpacesWeb::DataProtectionSettings";
|