@awboost/cfntypes 0.100.218 → 0.100.220
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.
@@ -916,6 +916,140 @@ export type ACMPCAPermissionProps = {
|
|
916
916
|
*/
|
917
917
|
SourceAccount?: string;
|
918
918
|
};
|
919
|
+
/**
|
920
|
+
* Definition of AWS::AIOps::InvestigationGroup Resource Type
|
921
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html}
|
922
|
+
*/
|
923
|
+
export type AIOpsInvestigationGroupProps = {
|
924
|
+
/**
|
925
|
+
* An array of key-value pairs of notification channels to apply to this resource.
|
926
|
+
*/
|
927
|
+
ChatbotNotificationChannels?: AIOpsInvestigationGroupChatbotNotificationChannel[];
|
928
|
+
/**
|
929
|
+
* An array of cross account configurations.
|
930
|
+
*/
|
931
|
+
CrossAccountConfigurations?: AIOpsInvestigationGroupCrossAccountConfiguration[];
|
932
|
+
EncryptionConfig?: AIOpsInvestigationGroupEncryptionConfigMap;
|
933
|
+
/**
|
934
|
+
* Investigation Group policy
|
935
|
+
*/
|
936
|
+
InvestigationGroupPolicy?: string;
|
937
|
+
/**
|
938
|
+
* Flag to enable cloud trail history
|
939
|
+
*/
|
940
|
+
IsCloudTrailEventHistoryEnabled?: boolean;
|
941
|
+
/**
|
942
|
+
* User friendly name for resources.
|
943
|
+
* @minLength `1`
|
944
|
+
* @maxLength `512`
|
945
|
+
*/
|
946
|
+
Name: string;
|
947
|
+
/**
|
948
|
+
* The number of days to retain the investigation group
|
949
|
+
*/
|
950
|
+
RetentionInDays?: number;
|
951
|
+
/**
|
952
|
+
* The Investigation Role's ARN.
|
953
|
+
* @minLength `20`
|
954
|
+
* @maxLength `2048`
|
955
|
+
*/
|
956
|
+
RoleArn?: string;
|
957
|
+
TagKeyBoundaries?: string[];
|
958
|
+
/**
|
959
|
+
* An array of key-value pairs to apply to this resource.
|
960
|
+
*/
|
961
|
+
Tags?: AIOpsInvestigationGroupTag[];
|
962
|
+
};
|
963
|
+
/**
|
964
|
+
* Attribute type definition for `AWS::AIOps::InvestigationGroup`.
|
965
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aiops-investigationgroup.html#aws-resource-aiops-investigationgroup-return-values}
|
966
|
+
*/
|
967
|
+
export type AIOpsInvestigationGroupAttributes = {
|
968
|
+
/**
|
969
|
+
* The Investigation Group's ARN.
|
970
|
+
* @minLength `20`
|
971
|
+
* @maxLength `2048`
|
972
|
+
*/
|
973
|
+
Arn: string;
|
974
|
+
/**
|
975
|
+
* The timestamp value.
|
976
|
+
*/
|
977
|
+
CreatedAt: string;
|
978
|
+
/**
|
979
|
+
* User friendly name for resources.
|
980
|
+
* @minLength `1`
|
981
|
+
* @maxLength `512`
|
982
|
+
*/
|
983
|
+
CreatedBy: string;
|
984
|
+
/**
|
985
|
+
* User friendly name for resources.
|
986
|
+
* @minLength `1`
|
987
|
+
* @maxLength `512`
|
988
|
+
*/
|
989
|
+
LastModifiedAt: string;
|
990
|
+
/**
|
991
|
+
* User friendly name for resources.
|
992
|
+
* @minLength `1`
|
993
|
+
* @maxLength `512`
|
994
|
+
*/
|
995
|
+
LastModifiedBy: string;
|
996
|
+
};
|
997
|
+
/**
|
998
|
+
* Type definition for `AWS::AIOps::InvestigationGroup.ChatbotNotificationChannel`.
|
999
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-chatbotnotificationchannel.html}
|
1000
|
+
*/
|
1001
|
+
export type AIOpsInvestigationGroupChatbotNotificationChannel = {
|
1002
|
+
ChatConfigurationArns?: string[];
|
1003
|
+
/**
|
1004
|
+
* @minLength `20`
|
1005
|
+
* @maxLength `2048`
|
1006
|
+
*/
|
1007
|
+
SNSTopicArn?: string;
|
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
|
+
};
|
1021
|
+
/**
|
1022
|
+
* Type definition for `AWS::AIOps::InvestigationGroup.EncryptionConfigMap`.
|
1023
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-encryptionconfigmap.html}
|
1024
|
+
*/
|
1025
|
+
export type AIOpsInvestigationGroupEncryptionConfigMap = {
|
1026
|
+
/**
|
1027
|
+
* @minLength `1`
|
1028
|
+
* @maxLength `128`
|
1029
|
+
*/
|
1030
|
+
EncryptionConfigurationType?: string;
|
1031
|
+
/**
|
1032
|
+
* @minLength `1`
|
1033
|
+
* @maxLength `256`
|
1034
|
+
*/
|
1035
|
+
KmsKeyId?: string;
|
1036
|
+
};
|
1037
|
+
/**
|
1038
|
+
* Type definition for `AWS::AIOps::InvestigationGroup.Tag`.
|
1039
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aiops-investigationgroup-tag.html}
|
1040
|
+
*/
|
1041
|
+
export type AIOpsInvestigationGroupTag = {
|
1042
|
+
/**
|
1043
|
+
* @minLength `1`
|
1044
|
+
* @maxLength `128`
|
1045
|
+
*/
|
1046
|
+
Key: string;
|
1047
|
+
/**
|
1048
|
+
* @minLength `1`
|
1049
|
+
* @maxLength `256`
|
1050
|
+
*/
|
1051
|
+
Value: string;
|
1052
|
+
};
|
919
1053
|
/**
|
920
1054
|
* Resource Type definition for AWS::AmazonMQ::Broker
|
921
1055
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-broker.html}
|
@@ -16913,6 +17047,7 @@ export type BatchComputeEnvironmentLaunchTemplateSpecification = {
|
|
16913
17047
|
LaunchTemplateId?: string;
|
16914
17048
|
LaunchTemplateName?: string;
|
16915
17049
|
Overrides?: BatchComputeEnvironmentLaunchTemplateSpecificationOverride[];
|
17050
|
+
UserdataType?: "EKS_BOOTSTRAP_SH" | "EKS_NODEADM";
|
16916
17051
|
Version?: string;
|
16917
17052
|
};
|
16918
17053
|
/**
|
@@ -16923,6 +17058,7 @@ export type BatchComputeEnvironmentLaunchTemplateSpecificationOverride = {
|
|
16923
17058
|
LaunchTemplateId?: string;
|
16924
17059
|
LaunchTemplateName?: string;
|
16925
17060
|
TargetInstanceTypes?: string[];
|
17061
|
+
UserdataType?: "EKS_BOOTSTRAP_SH" | "EKS_NODEADM";
|
16926
17062
|
Version?: string;
|
16927
17063
|
};
|
16928
17064
|
/**
|
@@ -22053,6 +22189,10 @@ export type BedrockGuardrailProps = {
|
|
22053
22189
|
* Contextual grounding policy config for a guardrail.
|
22054
22190
|
*/
|
22055
22191
|
ContextualGroundingPolicyConfig?: BedrockGuardrailContextualGroundingPolicyConfig;
|
22192
|
+
/**
|
22193
|
+
* The system-defined guardrail profile that you’re using with your guardrail
|
22194
|
+
*/
|
22195
|
+
CrossRegionConfig?: BedrockGuardrailGuardrailCrossRegionConfig;
|
22056
22196
|
/**
|
22057
22197
|
* Description of the guardrail or its version
|
22058
22198
|
* @minLength `1`
|
@@ -22241,6 +22381,20 @@ export type BedrockGuardrailContextualGroundingPolicyConfig = {
|
|
22241
22381
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-filterstrength.html}
|
22242
22382
|
*/
|
22243
22383
|
export type BedrockGuardrailFilterStrength = "NONE" | "LOW" | "MEDIUM" | "HIGH";
|
22384
|
+
/**
|
22385
|
+
* Type definition for `AWS::Bedrock::Guardrail.GuardrailCrossRegionConfig`.
|
22386
|
+
* The system-defined guardrail profile that you’re using with your guardrail
|
22387
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-guardrailcrossregionconfig.html}
|
22388
|
+
*/
|
22389
|
+
export type BedrockGuardrailGuardrailCrossRegionConfig = {
|
22390
|
+
/**
|
22391
|
+
* The Amazon Resource Name (ARN) of the guardrail profile
|
22392
|
+
* @minLength `15`
|
22393
|
+
* @maxLength `2048`
|
22394
|
+
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail-profile/[a-z0-9-]+[.]{1}guardrail[.]{1}v[0-9:]+$`
|
22395
|
+
*/
|
22396
|
+
GuardrailProfileArn: string;
|
22397
|
+
};
|
22244
22398
|
/**
|
22245
22399
|
* Type definition for `AWS::Bedrock::Guardrail.GuardrailStatus`.
|
22246
22400
|
* Status of the guardrail
|
@@ -30318,6 +30472,7 @@ export type CloudFrontDistributionOrigin = {
|
|
30318
30472
|
For more information, see [Using Origin Shield](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html) in the *Amazon CloudFront Developer Guide*.
|
30319
30473
|
*/
|
30320
30474
|
OriginShield?: CloudFrontDistributionOriginShield;
|
30475
|
+
ResponseCompletionTimeout?: number;
|
30321
30476
|
/**
|
30322
30477
|
* Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the ``CustomOriginConfig`` type instead.
|
30323
30478
|
*/
|
@@ -30491,6 +30646,7 @@ export type CloudFrontDistributionS3OriginConfig = {
|
|
30491
30646
|
For more information about the origin access identity, see [Serving Private Content through CloudFront](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html) in the *Amazon CloudFront Developer Guide*.
|
30492
30647
|
*/
|
30493
30648
|
OriginAccessIdentity?: string;
|
30649
|
+
OriginReadTimeout?: number;
|
30494
30650
|
};
|
30495
30651
|
/**
|
30496
30652
|
* Type definition for `AWS::CloudFront::Distribution.StatusCodes`.
|
@@ -40631,6 +40787,10 @@ export type ConnectCampaignsV2CampaignCommunicationLimitsConfig = {
|
|
40631
40787
|
* Communication limits
|
40632
40788
|
*/
|
40633
40789
|
AllChannelsSubtypes?: ConnectCampaignsV2CampaignCommunicationLimits;
|
40790
|
+
/**
|
40791
|
+
* Enumeration of Instance Limits handling in a Campaign
|
40792
|
+
*/
|
40793
|
+
InstanceLimitsHandling?: ConnectCampaignsV2CampaignInstanceLimitsHandling;
|
40634
40794
|
};
|
40635
40795
|
/**
|
40636
40796
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimitTimeUnit`.
|
@@ -40755,6 +40915,12 @@ export type ConnectCampaignsV2CampaignEventTrigger = {
|
|
40755
40915
|
*/
|
40756
40916
|
CustomerProfilesDomainArn?: string;
|
40757
40917
|
};
|
40918
|
+
/**
|
40919
|
+
* Type definition for `AWS::ConnectCampaignsV2::Campaign.InstanceLimitsHandling`.
|
40920
|
+
* Enumeration of Instance Limits handling in a Campaign
|
40921
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-instancelimitshandling.html}
|
40922
|
+
*/
|
40923
|
+
export type ConnectCampaignsV2CampaignInstanceLimitsHandling = "OPT_IN" | "OPT_OUT";
|
40758
40924
|
/**
|
40759
40925
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.LocalTimeZoneConfig`.
|
40760
40926
|
* Local time zone config
|
@@ -48292,6 +48458,11 @@ export type DataZoneProjectProfileEnvironmentConfigurationParameter = {
|
|
48292
48458
|
*/
|
48293
48459
|
export type DataZoneProjectProfileEnvironmentConfigurationParametersDetails = {
|
48294
48460
|
ParameterOverrides?: DataZoneProjectProfileEnvironmentConfigurationParameter[];
|
48461
|
+
/**
|
48462
|
+
* @minLength `1`
|
48463
|
+
* @maxLength `2048`
|
48464
|
+
*/
|
48465
|
+
SsmPath?: string;
|
48295
48466
|
};
|
48296
48467
|
/**
|
48297
48468
|
* Type definition for `AWS::DataZone::ProjectProfile.Region`.
|
@@ -51563,6 +51734,10 @@ export type DSQLClusterProps = {
|
|
51563
51734
|
* Whether deletion protection is enabled in this cluster.
|
51564
51735
|
*/
|
51565
51736
|
DeletionProtectionEnabled?: boolean;
|
51737
|
+
/**
|
51738
|
+
* The KMS key that encrypts data on the cluster.
|
51739
|
+
*/
|
51740
|
+
KmsEncryptionKey?: string;
|
51566
51741
|
/**
|
51567
51742
|
* The Multi-region properties associated to this cluster.
|
51568
51743
|
*/
|
@@ -51584,6 +51759,23 @@ export type DSQLClusterAttributes = {
|
|
51584
51759
|
* The time of when the cluster was created in ISO-8601 format.
|
51585
51760
|
*/
|
51586
51761
|
CreationTime: string;
|
51762
|
+
/**
|
51763
|
+
* The encryption configuration details for the cluster.
|
51764
|
+
*/
|
51765
|
+
EncryptionDetails: {
|
51766
|
+
/**
|
51767
|
+
* The status of encryption for the cluster.
|
51768
|
+
*/
|
51769
|
+
EncryptionStatus: string;
|
51770
|
+
/**
|
51771
|
+
* The type of encryption that protects data in the cluster.
|
51772
|
+
*/
|
51773
|
+
EncryptionType: string;
|
51774
|
+
/**
|
51775
|
+
* The Amazon Resource Name (ARN) of the KMS key that encrypts data in the cluster.
|
51776
|
+
*/
|
51777
|
+
KmsKeyArn: string;
|
51778
|
+
};
|
51587
51779
|
/**
|
51588
51780
|
* The ID of the created cluster.
|
51589
51781
|
*/
|
@@ -62589,6 +62781,29 @@ export type ECSPrimaryTaskSetProps = {
|
|
62589
62781
|
* 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.
|
62590
62782
|
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.
|
62591
62783
|
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.
|
62784
|
+
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:
|
62785
|
+
+ For services created with a capacity provider strategy after the launch:
|
62786
|
+
+ If there's a cluster default strategy set, the service will revert to using that default strategy.
|
62787
|
+
+ If no cluster default strategy exists, you will receive the following error:
|
62788
|
+
No launch type to fall back to for empty capacity provider strategy. Your service was not created with a launch type.
|
62789
|
+
|
62790
|
+
+ For services created with a capacity provider strategy prior to the launch:
|
62791
|
+
+ If ``CapacityProviderStrategy`` had ``FARGATE_SPOT`` or ``FARGATE`` capacity providers, the launch type will be updated to ``FARGATE`` and the capacity provider will be removed.
|
62792
|
+
+ 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.
|
62793
|
+
|
62794
|
+
|
62795
|
+
Recommended Actions
|
62796
|
+
If you are currently using ``CapacityProviderStrategy: []`` in your CFN templates, you should take one of the following actions:
|
62797
|
+
+ If you do not intend to update the Capacity Provider Strategy:
|
62798
|
+
+ Remove the ``CapacityProviderStrategy`` property entirely from your CFN template
|
62799
|
+
+ Alternatively, use ``!Ref ::NoValue`` for the ``CapacityProviderStrategy`` property in your template
|
62800
|
+
|
62801
|
+
+ If you intend to maintain or update the Capacity Provider Strategy, specify the actual Capacity Provider Strategy for the service in your CFN template.
|
62802
|
+
|
62803
|
+
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:
|
62804
|
+
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)
|
62805
|
+
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.
|
62806
|
+
If you are experiencing active production issues related to this change, contact AWS Support or your Technical Account Manager.
|
62592
62807
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html}
|
62593
62808
|
*/
|
62594
62809
|
export type ECSServiceProps = {
|
@@ -107005,6 +107220,11 @@ export type LogsTransformerCopyValueEntry = {
|
|
107005
107220
|
*/
|
107006
107221
|
Target: string;
|
107007
107222
|
};
|
107223
|
+
/**
|
107224
|
+
* Type definition for `AWS::Logs::Transformer.EventSource`.
|
107225
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-eventsource.html}
|
107226
|
+
*/
|
107227
|
+
export type LogsTransformerEventSource = "CloudTrail" | "Route53Resolver" | "VPCFlow" | "EKSAudit" | "AWSWAF";
|
107008
107228
|
/**
|
107009
107229
|
* Type definition for `AWS::Logs::Transformer.MoveKeyEntry`.
|
107010
107230
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-movekeyentry.html}
|
@@ -107020,6 +107240,11 @@ export type LogsTransformerMoveKeyEntry = {
|
|
107020
107240
|
*/
|
107021
107241
|
Target: string;
|
107022
107242
|
};
|
107243
|
+
/**
|
107244
|
+
* Type definition for `AWS::Logs::Transformer.OcsfVersion`.
|
107245
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-ocsfversion.html}
|
107246
|
+
*/
|
107247
|
+
export type LogsTransformerOcsfVersion = "V1.1";
|
107023
107248
|
/**
|
107024
107249
|
* Type definition for `AWS::Logs::Transformer.ParseCloudfront`.
|
107025
107250
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsecloudfront.html}
|
@@ -107050,6 +107275,18 @@ export type LogsTransformerParseRoute53 = {
|
|
107050
107275
|
*/
|
107051
107276
|
Source?: string;
|
107052
107277
|
};
|
107278
|
+
/**
|
107279
|
+
* Type definition for `AWS::Logs::Transformer.ParseToOCSF`.
|
107280
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsetoocsf.html}
|
107281
|
+
*/
|
107282
|
+
export type LogsTransformerParseToOCSF = {
|
107283
|
+
EventSource: LogsTransformerEventSource;
|
107284
|
+
OcsfVersion: LogsTransformerOcsfVersion;
|
107285
|
+
/**
|
107286
|
+
* @pattern `^.*[a-zA-Z0-9]+.*$`
|
107287
|
+
*/
|
107288
|
+
Source?: string;
|
107289
|
+
};
|
107053
107290
|
/**
|
107054
107291
|
* Type definition for `AWS::Logs::Transformer.ParseVPC`.
|
107055
107292
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsevpc.html}
|
@@ -107210,6 +107447,7 @@ export type LogsTransformerProcessor = {
|
|
107210
107447
|
};
|
107211
107448
|
ParsePostgres?: LogsTransformerParsePostgres;
|
107212
107449
|
ParseRoute53?: LogsTransformerParseRoute53;
|
107450
|
+
ParseToOCSF?: LogsTransformerParseToOCSF;
|
107213
107451
|
ParseVPC?: LogsTransformerParseVPC;
|
107214
107452
|
ParseWAF?: LogsTransformerParseWAF;
|
107215
107453
|
RenameKeys?: {
|
@@ -115667,6 +115905,10 @@ export type MediaTailorPlaybackConfigurationProps = {
|
|
115667
115905
|
* The configuration for DASH content.
|
115668
115906
|
*/
|
115669
115907
|
DashConfiguration?: MediaTailorPlaybackConfigurationDashConfiguration;
|
115908
|
+
/**
|
115909
|
+
* 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.
|
115910
|
+
*/
|
115911
|
+
InsertionMode?: MediaTailorPlaybackConfigurationInsertionMode;
|
115670
115912
|
/**
|
115671
115913
|
* The configuration for pre-roll ad insertion.
|
115672
115914
|
*/
|
@@ -115846,6 +116088,11 @@ export type MediaTailorPlaybackConfigurationDashConfiguration = {
|
|
115846
116088
|
*/
|
115847
116089
|
OriginManifestType?: "SINGLE_PERIOD" | "MULTI_PERIOD";
|
115848
116090
|
};
|
116091
|
+
/**
|
116092
|
+
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.InsertionMode`.
|
116093
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-insertionmode.html}
|
116094
|
+
*/
|
116095
|
+
export type MediaTailorPlaybackConfigurationInsertionMode = "STITCHED_ONLY" | "PLAYER_SELECT";
|
115849
116096
|
/**
|
115850
116097
|
* Type definition for `AWS::MediaTailor::PlaybackConfiguration.LivePreRollConfiguration`.
|
115851
116098
|
* The configuration for pre-roll ad insertion.
|
@@ -120707,10 +120954,18 @@ export type NetworkManagerVpcAttachmentVpcOptions = {
|
|
120707
120954
|
* Indicates whether to enable ApplianceModeSupport Support for Vpc Attachment. Valid Values: true | false
|
120708
120955
|
*/
|
120709
120956
|
ApplianceModeSupport?: boolean;
|
120957
|
+
/**
|
120958
|
+
* Indicates whether to enable private DNS Support for Vpc Attachment. Valid Values: true | false
|
120959
|
+
*/
|
120960
|
+
DnsSupport?: boolean;
|
120710
120961
|
/**
|
120711
120962
|
* Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
|
120712
120963
|
*/
|
120713
120964
|
Ipv6Support?: boolean;
|
120965
|
+
/**
|
120966
|
+
* Indicates whether to enable Security Group Referencing Support for Vpc Attachment. Valid Values: true | false
|
120967
|
+
*/
|
120968
|
+
SecurityGroupReferencingSupport?: boolean;
|
120714
120969
|
};
|
120715
120970
|
/**
|
120716
120971
|
* Resource Type definition for AWS::Notifications::ChannelAssociation
|
@@ -164441,7 +164696,7 @@ export type RolesAnywhereTrustAnchorTag = {
|
|
164441
164696
|
* Type definition for `AWS::RolesAnywhere::TrustAnchor.TrustAnchorType`.
|
164442
164697
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-trustanchortype.html}
|
164443
164698
|
*/
|
164444
|
-
export type RolesAnywhereTrustAnchorTrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE"
|
164699
|
+
export type RolesAnywhereTrustAnchorTrustAnchorType = "AWS_ACM_PCA" | "CERTIFICATE_BUNDLE";
|
164445
164700
|
/**
|
164446
164701
|
* Resource Type definition for AWS::Route53::CidrCollection.
|
164447
164702
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html}
|
@@ -166195,6 +166450,7 @@ export type Route53ResolverResolverEndpointProps = {
|
|
166195
166450
|
* Indicates whether the Resolver endpoint allows inbound or outbound DNS queries:
|
166196
166451
|
- INBOUND: allows DNS queries to your VPC from your network
|
166197
166452
|
- OUTBOUND: allows DNS queries from your VPC to your network
|
166453
|
+
- INBOUND_DELEGATION: allows DNS queries to your VPC from your network with authoritative answers from private hosted zones
|
166198
166454
|
*/
|
166199
166455
|
Direction: string;
|
166200
166456
|
/**
|
@@ -166427,6 +166683,12 @@ export type Route53ResolverResolverQueryLoggingConfigAssociationAttributes = {
|
|
166427
166683
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html}
|
166428
166684
|
*/
|
166429
166685
|
export type Route53ResolverResolverRuleProps = {
|
166686
|
+
/**
|
166687
|
+
* The name server domain for queries to be delegated to if a query matches the delegation record.
|
166688
|
+
* @minLength `1`
|
166689
|
+
* @maxLength `256`
|
166690
|
+
*/
|
166691
|
+
DelegationRecord?: string;
|
166430
166692
|
/**
|
166431
166693
|
* DNS queries for this domain name are forwarded to the IP addresses that are specified in TargetIps
|
166432
166694
|
* @minLength `1`
|
@@ -169824,6 +170086,22 @@ export type S3OutpostsEndpointNetworkInterface = {
|
|
169824
170086
|
*/
|
169825
170087
|
NetworkInterfaceId: string;
|
169826
170088
|
};
|
170089
|
+
/**
|
170090
|
+
* Resource Type definition for AWS::S3Tables::Namespace
|
170091
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-namespace.html}
|
170092
|
+
*/
|
170093
|
+
export type S3TablesNamespaceProps = {
|
170094
|
+
/**
|
170095
|
+
* A name for the namespace.
|
170096
|
+
* @minLength `1`
|
170097
|
+
* @maxLength `255`
|
170098
|
+
*/
|
170099
|
+
Namespace: string;
|
170100
|
+
/**
|
170101
|
+
* The Amazon Resource Name (ARN) of the specified table bucket.
|
170102
|
+
*/
|
170103
|
+
TableBucketARN: string;
|
170104
|
+
};
|
169827
170105
|
/**
|
169828
170106
|
* Resource type definition for `AWS::S3Tables::TableBucket`.
|
169829
170107
|
* Creates an Amazon S3 Tables table bucket in the same AWS Region where you create the AWS CloudFormation stack.
|
@@ -197309,6 +197587,378 @@ export type WorkSpacesWorkspacesPoolTimeoutSettings = {
|
|
197309
197587
|
*/
|
197310
197588
|
MaxUserDurationInSeconds?: number;
|
197311
197589
|
};
|
197590
|
+
/**
|
197591
|
+
* Resource Type definition for AWS::WorkspacesInstances::Volume - Manages WorkSpaces Volume resources
|
197592
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html}
|
197593
|
+
*/
|
197594
|
+
export type WorkspacesInstancesVolumeProps = {
|
197595
|
+
/**
|
197596
|
+
* The Availability Zone in which to create the volume
|
197597
|
+
* @pattern `^[a-z]{2}-[a-z]+-\d[a-z](-[a-z0-9]+)?$`
|
197598
|
+
*/
|
197599
|
+
AvailabilityZone: string;
|
197600
|
+
/**
|
197601
|
+
* Indicates whether the volume should be encrypted
|
197602
|
+
*/
|
197603
|
+
Encrypted?: boolean;
|
197604
|
+
/**
|
197605
|
+
* The number of I/O operations per second (IOPS)
|
197606
|
+
* @min `0`
|
197607
|
+
*/
|
197608
|
+
Iops?: number;
|
197609
|
+
/**
|
197610
|
+
* The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption
|
197611
|
+
* @maxLength `128`
|
197612
|
+
*/
|
197613
|
+
KmsKeyId?: string;
|
197614
|
+
/**
|
197615
|
+
* The size of the volume, in GiBs
|
197616
|
+
* @min `0`
|
197617
|
+
*/
|
197618
|
+
SizeInGB?: number;
|
197619
|
+
/**
|
197620
|
+
* The snapshot from which to create the volume
|
197621
|
+
* @pattern `^snap-[0-9a-zA-Z]{1,63}$`
|
197622
|
+
*/
|
197623
|
+
SnapshotId?: string;
|
197624
|
+
/**
|
197625
|
+
* The tags passed to EBS volume
|
197626
|
+
* @maxLength `30`
|
197627
|
+
*/
|
197628
|
+
TagSpecifications?: WorkspacesInstancesVolumeTagSpecification[];
|
197629
|
+
/**
|
197630
|
+
* The throughput to provision for a volume, with a maximum of 1,000 MiB/s
|
197631
|
+
* @min `0`
|
197632
|
+
*/
|
197633
|
+
Throughput?: number;
|
197634
|
+
/**
|
197635
|
+
* The volume type
|
197636
|
+
*/
|
197637
|
+
VolumeType?: "standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3";
|
197638
|
+
};
|
197639
|
+
/**
|
197640
|
+
* Attribute type definition for `AWS::WorkspacesInstances::Volume`.
|
197641
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volume.html#aws-resource-workspacesinstances-volume-return-values}
|
197642
|
+
*/
|
197643
|
+
export type WorkspacesInstancesVolumeAttributes = {
|
197644
|
+
/**
|
197645
|
+
* Unique identifier for the volume
|
197646
|
+
* @pattern `^vol-[0-9a-zA-Z]{1,63}$`
|
197647
|
+
*/
|
197648
|
+
VolumeId: string;
|
197649
|
+
};
|
197650
|
+
/**
|
197651
|
+
* Type definition for `AWS::WorkspacesInstances::Volume.Tag`.
|
197652
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-volume-tag.html}
|
197653
|
+
*/
|
197654
|
+
export type WorkspacesInstancesVolumeTag = {
|
197655
|
+
/**
|
197656
|
+
* The key name of the tag
|
197657
|
+
* @minLength `1`
|
197658
|
+
* @maxLength `128`
|
197659
|
+
*/
|
197660
|
+
Key: string;
|
197661
|
+
/**
|
197662
|
+
* The value for the tag
|
197663
|
+
* @maxLength `256`
|
197664
|
+
*/
|
197665
|
+
Value: string;
|
197666
|
+
};
|
197667
|
+
/**
|
197668
|
+
* Type definition for `AWS::WorkspacesInstances::Volume.TagSpecification`.
|
197669
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-volume-tagspecification.html}
|
197670
|
+
*/
|
197671
|
+
export type WorkspacesInstancesVolumeTagSpecification = {
|
197672
|
+
ResourceType?: "instance" | "volume" | "spot-instances-request" | "network-interface";
|
197673
|
+
/**
|
197674
|
+
* The tags to apply to the resource
|
197675
|
+
*/
|
197676
|
+
Tags?: WorkspacesInstancesVolumeTag[];
|
197677
|
+
};
|
197678
|
+
/**
|
197679
|
+
* Resource Type definition for AWS::WorkspacesInstances::VolumeAssociation
|
197680
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-volumeassociation.html}
|
197681
|
+
*/
|
197682
|
+
export type WorkspacesInstancesVolumeAssociationProps = {
|
197683
|
+
/**
|
197684
|
+
* The device name for the volume attachment
|
197685
|
+
* @maxLength `32`
|
197686
|
+
*/
|
197687
|
+
Device: string;
|
197688
|
+
/**
|
197689
|
+
* Mode to use when disassociating the volume
|
197690
|
+
*/
|
197691
|
+
DisassociateMode?: "FORCE" | "NO_FORCE";
|
197692
|
+
/**
|
197693
|
+
* ID of the volume to attach to the workspace instance
|
197694
|
+
* @pattern `^vol-[0-9a-zA-Z]{1,63}$`
|
197695
|
+
*/
|
197696
|
+
VolumeId: string;
|
197697
|
+
/**
|
197698
|
+
* ID of the workspace instance to associate with the volume
|
197699
|
+
* @pattern `^wsinst-[0-9a-zA-Z]{8,63}$`
|
197700
|
+
*/
|
197701
|
+
WorkspaceInstanceId: string;
|
197702
|
+
};
|
197703
|
+
/**
|
197704
|
+
* Resource Type definition for AWS::WorkspacesInstances::WorkspaceInstance
|
197705
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-workspaceinstance.html}
|
197706
|
+
*/
|
197707
|
+
export type WorkspacesInstancesWorkspaceInstanceProps = {
|
197708
|
+
ManagedInstance?: {
|
197709
|
+
BlockDeviceMappings?: WorkspacesInstancesWorkspaceInstanceBlockDeviceMapping[];
|
197710
|
+
CpuOptions?: WorkspacesInstancesWorkspaceInstanceCpuOptionsRequest;
|
197711
|
+
CreditSpecification?: WorkspacesInstancesWorkspaceInstanceCreditSpecificationRequest;
|
197712
|
+
DisableApiStop?: boolean;
|
197713
|
+
EbsOptimized?: boolean;
|
197714
|
+
EnclaveOptions?: WorkspacesInstancesWorkspaceInstanceEnclaveOptionsRequest;
|
197715
|
+
HibernationOptions?: WorkspacesInstancesWorkspaceInstanceHibernationOptionsRequest;
|
197716
|
+
IamInstanceProfile?: WorkspacesInstancesWorkspaceInstanceIamInstanceProfileSpecification;
|
197717
|
+
/**
|
197718
|
+
* @pattern `^ami-[0-9a-zA-Z]{1,63}$`
|
197719
|
+
*/
|
197720
|
+
ImageId: string;
|
197721
|
+
/**
|
197722
|
+
* @pattern `^([a-z0-9-]+)\.([a-z0-9]+)$`
|
197723
|
+
*/
|
197724
|
+
InstanceType: string;
|
197725
|
+
/**
|
197726
|
+
* @maxLength `64`
|
197727
|
+
*/
|
197728
|
+
KeyName?: string;
|
197729
|
+
MaintenanceOptions?: WorkspacesInstancesWorkspaceInstanceInstanceMaintenanceOptionsRequest;
|
197730
|
+
MetadataOptions?: WorkspacesInstancesWorkspaceInstanceInstanceMetadataOptionsRequest;
|
197731
|
+
Monitoring?: WorkspacesInstancesWorkspaceInstanceRunInstancesMonitoringEnabled;
|
197732
|
+
NetworkInterfaces?: WorkspacesInstancesWorkspaceInstanceInstanceNetworkInterfaceSpecification[];
|
197733
|
+
NetworkPerformanceOptions?: WorkspacesInstancesWorkspaceInstanceInstanceNetworkPerformanceOptionsRequest;
|
197734
|
+
Placement?: WorkspacesInstancesWorkspaceInstancePlacement;
|
197735
|
+
PrivateDnsNameOptions?: WorkspacesInstancesWorkspaceInstancePrivateDnsNameOptionsRequest;
|
197736
|
+
/**
|
197737
|
+
* @maxLength `30`
|
197738
|
+
*/
|
197739
|
+
TagSpecifications?: WorkspacesInstancesWorkspaceInstanceTagSpecification[];
|
197740
|
+
/**
|
197741
|
+
* @maxLength `16000`
|
197742
|
+
*/
|
197743
|
+
UserData?: string;
|
197744
|
+
};
|
197745
|
+
/**
|
197746
|
+
* @maxLength `30`
|
197747
|
+
*/
|
197748
|
+
Tags?: WorkspacesInstancesWorkspaceInstanceTag[];
|
197749
|
+
};
|
197750
|
+
/**
|
197751
|
+
* Attribute type definition for `AWS::WorkspacesInstances::WorkspaceInstance`.
|
197752
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesinstances-workspaceinstance.html#aws-resource-workspacesinstances-workspaceinstance-return-values}
|
197753
|
+
*/
|
197754
|
+
export type WorkspacesInstancesWorkspaceInstanceAttributes = {
|
197755
|
+
EC2ManagedInstance: {
|
197756
|
+
InstanceId: string;
|
197757
|
+
};
|
197758
|
+
/**
|
197759
|
+
* The current state of the workspace instance
|
197760
|
+
*/
|
197761
|
+
ProvisionState: "ALLOCATING" | "ALLOCATED" | "DEALLOCATING" | "DEALLOCATED" | "ERROR_ALLOCATING" | "ERROR_DEALLOCATING";
|
197762
|
+
/**
|
197763
|
+
* Unique identifier for the workspace instance
|
197764
|
+
* @pattern `^wsinst-[0-9a-zA-Z]{8,63}$`
|
197765
|
+
*/
|
197766
|
+
WorkspaceInstanceId: string;
|
197767
|
+
};
|
197768
|
+
/**
|
197769
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.BlockDeviceMapping`.
|
197770
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-blockdevicemapping.html}
|
197771
|
+
*/
|
197772
|
+
export type WorkspacesInstancesWorkspaceInstanceBlockDeviceMapping = {
|
197773
|
+
/**
|
197774
|
+
* @maxLength `32`
|
197775
|
+
*/
|
197776
|
+
DeviceName?: string;
|
197777
|
+
Ebs?: WorkspacesInstancesWorkspaceInstanceEbsBlockDevice;
|
197778
|
+
/**
|
197779
|
+
* @maxLength `32`
|
197780
|
+
*/
|
197781
|
+
NoDevice?: string;
|
197782
|
+
/**
|
197783
|
+
* @pattern `^ephemeral(0|[1-9][0-9]{0,2})$`
|
197784
|
+
*/
|
197785
|
+
VirtualName?: string;
|
197786
|
+
};
|
197787
|
+
/**
|
197788
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.CpuOptionsRequest`.
|
197789
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-cpuoptionsrequest.html}
|
197790
|
+
*/
|
197791
|
+
export type WorkspacesInstancesWorkspaceInstanceCpuOptionsRequest = {
|
197792
|
+
/**
|
197793
|
+
* @min `0`
|
197794
|
+
*/
|
197795
|
+
CoreCount?: number;
|
197796
|
+
/**
|
197797
|
+
* @min `0`
|
197798
|
+
*/
|
197799
|
+
ThreadsPerCore?: number;
|
197800
|
+
};
|
197801
|
+
/**
|
197802
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.CreditSpecificationRequest`.
|
197803
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-creditspecificationrequest.html}
|
197804
|
+
*/
|
197805
|
+
export type WorkspacesInstancesWorkspaceInstanceCreditSpecificationRequest = {
|
197806
|
+
CpuCredits?: "standard" | "unlimited";
|
197807
|
+
};
|
197808
|
+
/**
|
197809
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.EbsBlockDevice`.
|
197810
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-ebsblockdevice.html}
|
197811
|
+
*/
|
197812
|
+
export type WorkspacesInstancesWorkspaceInstanceEbsBlockDevice = {
|
197813
|
+
Encrypted?: boolean;
|
197814
|
+
/**
|
197815
|
+
* @min `0`
|
197816
|
+
*/
|
197817
|
+
Iops?: number;
|
197818
|
+
/**
|
197819
|
+
* @maxLength `128`
|
197820
|
+
*/
|
197821
|
+
KmsKeyId?: string;
|
197822
|
+
/**
|
197823
|
+
* @min `0`
|
197824
|
+
*/
|
197825
|
+
Throughput?: number;
|
197826
|
+
/**
|
197827
|
+
* @min `0`
|
197828
|
+
*/
|
197829
|
+
VolumeSize?: number;
|
197830
|
+
VolumeType?: "standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3";
|
197831
|
+
};
|
197832
|
+
/**
|
197833
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.EnclaveOptionsRequest`.
|
197834
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-enclaveoptionsrequest.html}
|
197835
|
+
*/
|
197836
|
+
export type WorkspacesInstancesWorkspaceInstanceEnclaveOptionsRequest = {
|
197837
|
+
Enabled?: boolean;
|
197838
|
+
};
|
197839
|
+
/**
|
197840
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.HibernationOptionsRequest`.
|
197841
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-hibernationoptionsrequest.html}
|
197842
|
+
*/
|
197843
|
+
export type WorkspacesInstancesWorkspaceInstanceHibernationOptionsRequest = {
|
197844
|
+
Configured?: boolean;
|
197845
|
+
};
|
197846
|
+
/**
|
197847
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.IamInstanceProfileSpecification`.
|
197848
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-iaminstanceprofilespecification.html}
|
197849
|
+
*/
|
197850
|
+
export type WorkspacesInstancesWorkspaceInstanceIamInstanceProfileSpecification = {
|
197851
|
+
/**
|
197852
|
+
* @maxLength `64`
|
197853
|
+
*/
|
197854
|
+
Name?: string;
|
197855
|
+
};
|
197856
|
+
/**
|
197857
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.InstanceMaintenanceOptionsRequest`.
|
197858
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemaintenanceoptionsrequest.html}
|
197859
|
+
*/
|
197860
|
+
export type WorkspacesInstancesWorkspaceInstanceInstanceMaintenanceOptionsRequest = {
|
197861
|
+
AutoRecovery?: "disabled" | "default";
|
197862
|
+
};
|
197863
|
+
/**
|
197864
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.InstanceMetadataOptionsRequest`.
|
197865
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancemetadataoptionsrequest.html}
|
197866
|
+
*/
|
197867
|
+
export type WorkspacesInstancesWorkspaceInstanceInstanceMetadataOptionsRequest = {
|
197868
|
+
HttpEndpoint?: "enabled" | "disabled";
|
197869
|
+
HttpProtocolIpv6?: "enabled" | "disabled";
|
197870
|
+
/**
|
197871
|
+
* @min `1`
|
197872
|
+
* @max `64`
|
197873
|
+
*/
|
197874
|
+
HttpPutResponseHopLimit?: number;
|
197875
|
+
HttpTokens?: "optional" | "required";
|
197876
|
+
InstanceMetadataTags?: "enabled" | "disabled";
|
197877
|
+
};
|
197878
|
+
/**
|
197879
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.InstanceNetworkInterfaceSpecification`.
|
197880
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkinterfacespecification.html}
|
197881
|
+
*/
|
197882
|
+
export type WorkspacesInstancesWorkspaceInstanceInstanceNetworkInterfaceSpecification = {
|
197883
|
+
/**
|
197884
|
+
* @maxLength `1000`
|
197885
|
+
* @pattern `^[\S\s]*$`
|
197886
|
+
*/
|
197887
|
+
Description?: string;
|
197888
|
+
/**
|
197889
|
+
* @min `0`
|
197890
|
+
*/
|
197891
|
+
DeviceIndex?: number;
|
197892
|
+
Groups?: string[];
|
197893
|
+
/**
|
197894
|
+
* @pattern `^subnet-[0-9a-zA-Z]{1,63}$`
|
197895
|
+
*/
|
197896
|
+
SubnetId?: string;
|
197897
|
+
};
|
197898
|
+
/**
|
197899
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.InstanceNetworkPerformanceOptionsRequest`.
|
197900
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-instancenetworkperformanceoptionsrequest.html}
|
197901
|
+
*/
|
197902
|
+
export type WorkspacesInstancesWorkspaceInstanceInstanceNetworkPerformanceOptionsRequest = {
|
197903
|
+
BandwidthWeighting?: "default" | "vpc-1" | "ebs-1";
|
197904
|
+
};
|
197905
|
+
/**
|
197906
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.Placement`.
|
197907
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-placement.html}
|
197908
|
+
*/
|
197909
|
+
export type WorkspacesInstancesWorkspaceInstancePlacement = {
|
197910
|
+
/**
|
197911
|
+
* @pattern `^[a-z]{2}-[a-z]+-\d[a-z](-[a-z0-9]+)?$`
|
197912
|
+
*/
|
197913
|
+
AvailabilityZone?: string;
|
197914
|
+
/**
|
197915
|
+
* @maxLength `255`
|
197916
|
+
*/
|
197917
|
+
GroupName?: string;
|
197918
|
+
Tenancy?: "default" | "dedicated" | "host";
|
197919
|
+
};
|
197920
|
+
/**
|
197921
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.PrivateDnsNameOptionsRequest`.
|
197922
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-privatednsnameoptionsrequest.html}
|
197923
|
+
*/
|
197924
|
+
export type WorkspacesInstancesWorkspaceInstancePrivateDnsNameOptionsRequest = {
|
197925
|
+
EnableResourceNameDnsAAAARecord?: boolean;
|
197926
|
+
EnableResourceNameDnsARecord?: boolean;
|
197927
|
+
HostnameType?: "ip-name" | "resource-name";
|
197928
|
+
};
|
197929
|
+
/**
|
197930
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.RunInstancesMonitoringEnabled`.
|
197931
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-runinstancesmonitoringenabled.html}
|
197932
|
+
*/
|
197933
|
+
export type WorkspacesInstancesWorkspaceInstanceRunInstancesMonitoringEnabled = {
|
197934
|
+
Enabled?: boolean;
|
197935
|
+
};
|
197936
|
+
/**
|
197937
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.Tag`.
|
197938
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-tag.html}
|
197939
|
+
*/
|
197940
|
+
export type WorkspacesInstancesWorkspaceInstanceTag = {
|
197941
|
+
/**
|
197942
|
+
* @minLength `1`
|
197943
|
+
* @maxLength `128`
|
197944
|
+
*/
|
197945
|
+
Key: string;
|
197946
|
+
/**
|
197947
|
+
* @maxLength `256`
|
197948
|
+
*/
|
197949
|
+
Value?: string;
|
197950
|
+
};
|
197951
|
+
/**
|
197952
|
+
* Type definition for `AWS::WorkspacesInstances::WorkspaceInstance.TagSpecification`.
|
197953
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesinstances-workspaceinstance-tagspecification.html}
|
197954
|
+
*/
|
197955
|
+
export type WorkspacesInstancesWorkspaceInstanceTagSpecification = {
|
197956
|
+
ResourceType?: "instance" | "volume" | "spot-instances-request" | "network-interface";
|
197957
|
+
/**
|
197958
|
+
* @maxLength `30`
|
197959
|
+
*/
|
197960
|
+
Tags?: WorkspacesInstancesWorkspaceInstanceTag[];
|
197961
|
+
};
|
197312
197962
|
/**
|
197313
197963
|
* Resource type definition for AWS::WorkSpacesThinClient::Environment.
|
197314
197964
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesthinclient-environment.html}
|
@@ -198642,6 +199292,7 @@ export interface ResourceTypes {
|
|
198642
199292
|
"AWS::ACMPCA::CertificateAuthority": ACMPCACertificateAuthorityProps;
|
198643
199293
|
"AWS::ACMPCA::CertificateAuthorityActivation": ACMPCACertificateAuthorityActivationProps;
|
198644
199294
|
"AWS::ACMPCA::Permission": ACMPCAPermissionProps;
|
199295
|
+
"AWS::AIOps::InvestigationGroup": AIOpsInvestigationGroupProps;
|
198645
199296
|
"AWS::AmazonMQ::Broker": AmazonMQBrokerProps;
|
198646
199297
|
"AWS::AmazonMQ::Configuration": AmazonMQConfigurationProps;
|
198647
199298
|
"AWS::AmazonMQ::ConfigurationAssociation": AmazonMQConfigurationAssociationProps;
|
@@ -199812,6 +200463,7 @@ export interface ResourceTypes {
|
|
199812
200463
|
"AWS::S3Outposts::Bucket": S3OutpostsBucketProps;
|
199813
200464
|
"AWS::S3Outposts::BucketPolicy": S3OutpostsBucketPolicyProps;
|
199814
200465
|
"AWS::S3Outposts::Endpoint": S3OutpostsEndpointProps;
|
200466
|
+
"AWS::S3Tables::Namespace": S3TablesNamespaceProps;
|
199815
200467
|
"AWS::S3Tables::TableBucket": S3TablesTableBucketProps;
|
199816
200468
|
"AWS::S3Tables::TableBucketPolicy": S3TablesTableBucketPolicyProps;
|
199817
200469
|
"AWS::SageMaker::App": SageMakerAppProps;
|
@@ -200030,6 +200682,9 @@ export interface ResourceTypes {
|
|
200030
200682
|
"AWS::WorkSpaces::ConnectionAlias": WorkSpacesConnectionAliasProps;
|
200031
200683
|
"AWS::WorkSpaces::Workspace": WorkSpacesWorkspaceProps;
|
200032
200684
|
"AWS::WorkSpaces::WorkspacesPool": WorkSpacesWorkspacesPoolProps;
|
200685
|
+
"AWS::WorkspacesInstances::Volume": WorkspacesInstancesVolumeProps;
|
200686
|
+
"AWS::WorkspacesInstances::VolumeAssociation": WorkspacesInstancesVolumeAssociationProps;
|
200687
|
+
"AWS::WorkspacesInstances::WorkspaceInstance": WorkspacesInstancesWorkspaceInstanceProps;
|
200033
200688
|
"AWS::WorkSpacesThinClient::Environment": WorkSpacesThinClientEnvironmentProps;
|
200034
200689
|
"AWS::WorkSpacesWeb::BrowserSettings": WorkSpacesWebBrowserSettingsProps;
|
200035
200690
|
"AWS::WorkSpacesWeb::DataProtectionSettings": WorkSpacesWebDataProtectionSettingsProps;
|
@@ -200051,6 +200706,7 @@ export interface AttributeTypes {
|
|
200051
200706
|
"AWS::ACMPCA::Certificate": ACMPCACertificateAttributes;
|
200052
200707
|
"AWS::ACMPCA::CertificateAuthority": ACMPCACertificateAuthorityAttributes;
|
200053
200708
|
"AWS::ACMPCA::CertificateAuthorityActivation": ACMPCACertificateAuthorityActivationAttributes;
|
200709
|
+
"AWS::AIOps::InvestigationGroup": AIOpsInvestigationGroupAttributes;
|
200054
200710
|
"AWS::AmazonMQ::Broker": AmazonMQBrokerAttributes;
|
200055
200711
|
"AWS::AmazonMQ::Configuration": AmazonMQConfigurationAttributes;
|
200056
200712
|
"AWS::AmazonMQ::ConfigurationAssociation": AmazonMQConfigurationAssociationAttributes;
|
@@ -201283,6 +201939,8 @@ export interface AttributeTypes {
|
|
201283
201939
|
"AWS::WorkSpaces::ConnectionAlias": WorkSpacesConnectionAliasAttributes;
|
201284
201940
|
"AWS::WorkSpaces::Workspace": WorkSpacesWorkspaceAttributes;
|
201285
201941
|
"AWS::WorkSpaces::WorkspacesPool": WorkSpacesWorkspacesPoolAttributes;
|
201942
|
+
"AWS::WorkspacesInstances::Volume": WorkspacesInstancesVolumeAttributes;
|
201943
|
+
"AWS::WorkspacesInstances::WorkspaceInstance": WorkspacesInstancesWorkspaceInstanceAttributes;
|
201286
201944
|
"AWS::WorkSpacesThinClient::Environment": WorkSpacesThinClientEnvironmentAttributes;
|
201287
201945
|
"AWS::WorkSpacesWeb::BrowserSettings": WorkSpacesWebBrowserSettingsAttributes;
|
201288
201946
|
"AWS::WorkSpacesWeb::DataProtectionSettings": WorkSpacesWebDataProtectionSettingsAttributes;
|
@@ -201304,6 +201962,7 @@ export declare const ResourceType: {
|
|
201304
201962
|
readonly ACMPCACertificateAuthority: "AWS::ACMPCA::CertificateAuthority";
|
201305
201963
|
readonly ACMPCACertificateAuthorityActivation: "AWS::ACMPCA::CertificateAuthorityActivation";
|
201306
201964
|
readonly ACMPCAPermission: "AWS::ACMPCA::Permission";
|
201965
|
+
readonly AIOpsInvestigationGroup: "AWS::AIOps::InvestigationGroup";
|
201307
201966
|
readonly AmazonMQBroker: "AWS::AmazonMQ::Broker";
|
201308
201967
|
readonly AmazonMQConfiguration: "AWS::AmazonMQ::Configuration";
|
201309
201968
|
readonly AmazonMQConfigurationAssociation: "AWS::AmazonMQ::ConfigurationAssociation";
|
@@ -202474,6 +203133,7 @@ export declare const ResourceType: {
|
|
202474
203133
|
readonly S3OutpostsBucket: "AWS::S3Outposts::Bucket";
|
202475
203134
|
readonly S3OutpostsBucketPolicy: "AWS::S3Outposts::BucketPolicy";
|
202476
203135
|
readonly S3OutpostsEndpoint: "AWS::S3Outposts::Endpoint";
|
203136
|
+
readonly S3TablesNamespace: "AWS::S3Tables::Namespace";
|
202477
203137
|
readonly S3TablesTableBucket: "AWS::S3Tables::TableBucket";
|
202478
203138
|
readonly S3TablesTableBucketPolicy: "AWS::S3Tables::TableBucketPolicy";
|
202479
203139
|
readonly SageMakerApp: "AWS::SageMaker::App";
|
@@ -202692,6 +203352,9 @@ export declare const ResourceType: {
|
|
202692
203352
|
readonly WorkSpacesConnectionAlias: "AWS::WorkSpaces::ConnectionAlias";
|
202693
203353
|
readonly WorkSpacesWorkspace: "AWS::WorkSpaces::Workspace";
|
202694
203354
|
readonly WorkSpacesWorkspacesPool: "AWS::WorkSpaces::WorkspacesPool";
|
203355
|
+
readonly WorkspacesInstancesVolume: "AWS::WorkspacesInstances::Volume";
|
203356
|
+
readonly WorkspacesInstancesVolumeAssociation: "AWS::WorkspacesInstances::VolumeAssociation";
|
203357
|
+
readonly WorkspacesInstancesWorkspaceInstance: "AWS::WorkspacesInstances::WorkspaceInstance";
|
202695
203358
|
readonly WorkSpacesThinClientEnvironment: "AWS::WorkSpacesThinClient::Environment";
|
202696
203359
|
readonly WorkSpacesWebBrowserSettings: "AWS::WorkSpacesWeb::BrowserSettings";
|
202697
203360
|
readonly WorkSpacesWebDataProtectionSettings: "AWS::WorkSpacesWeb::DataProtectionSettings";
|