@intentius/chant-lexicon-aws 0.0.13 → 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integrity.json +25 -24
- package/dist/manifest.json +1 -1
- package/dist/meta.json +349 -325
- package/dist/skills/chant-eks.md +175 -0
- package/dist/types/index.d.ts +68 -27
- package/package.json +2 -2
- package/src/codegen/docs.ts +92 -7
- package/src/generated/index.d.ts +68 -27
- package/src/generated/index.ts +3 -1
- package/src/generated/lexicon-aws.json +349 -325
- package/src/plugin.ts +318 -1
package/src/generated/index.d.ts
CHANGED
|
@@ -8251,7 +8251,8 @@ export declare class DbCluster {
|
|
|
8251
8251
|
Valid for Cluster Type: Aurora DB clusters only */
|
|
8252
8252
|
EngineMode?: string;
|
|
8253
8253
|
/** The version number of the database engine to use.
|
|
8254
|
-
|
|
8254
|
+
Don't use this property if your DB cluster is a member of a global database cluster. Instead, specify the ``EngineVersion`` property on the [AWS::RDS::GlobalCluster](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html) resource. Major version upgrades aren't supported for individual members of a global cluster. Use ``ModifyGlobalCluster`` to upgrade all members of the global cluster.
|
|
8255
|
+
To list all of the available engine versions for Aurora MySQL version 2 (5.7-compatible) and version 3 (8.0-compatible), use the following command:
|
|
8255
8256
|
``aws rds describe-db-engine-versions --engine aurora-mysql --query "DBEngineVersions[].EngineVersion"``
|
|
8256
8257
|
You can supply either ``5.7`` or ``8.0`` to use the default engine version for Aurora MySQL version 2 or version 3, respectively.
|
|
8257
8258
|
To list all of the available engine versions for Aurora PostgreSQL, use the following command:
|
|
@@ -8997,7 +8998,14 @@ export declare class DbInstance {
|
|
|
8997
8998
|
/** The AWS KMS key identifier for encryption of Performance Insights data.
|
|
8998
8999
|
The KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
|
|
8999
9000
|
If you do not specify a value for ``PerformanceInsightsKMSKeyId``, then Amazon RDS uses your default KMS key. There is a default KMS key for your AWS account. Your AWS account has a different default KMS key for each AWS Region.
|
|
9000
|
-
|
|
9001
|
+
*Update behavior:* Once Performance Insights is enabled with a KMS key, you cannot change to a different physical KMS key without replacing the DB instance. However, the following updates do not require replacement:
|
|
9002
|
+
+ Enabling or disabling Performance Insights using the ``EnablePerformanceInsights`` property
|
|
9003
|
+
+ Changing between different identifier formats (key ARN, key ID, alias ARN, alias name) of the same physical KMS key
|
|
9004
|
+
+ Removing the ``PerformanceInsightsKMSKeyId`` property from your template
|
|
9005
|
+
|
|
9006
|
+
*Drift behavior:* If you specify ``PerformanceInsightsKMSKeyId`` while ``EnablePerformanceInsights`` is set to ``false``, CloudFormation will report drift. This occurs because the RDS API does not allow setting a KMS key when Performance Insights is disabled. CloudFormation ignores the ``PerformanceInsightsKMSKeyId`` value during instance creation to avoid API errors, resulting in a mismatch between your template and the actual instance configuration.
|
|
9007
|
+
To avoid drift, omit both ``EnablePerformanceInsights`` and ``PerformanceInsightsKMSKeyId`` during initial instance creation, then set both properties together when you're ready to enable Performance Insights.
|
|
9008
|
+
For information about enabling Performance Insights, see [EnablePerformanceInsights](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-enableperformanceinsights). */
|
|
9001
9009
|
PerformanceInsightsKMSKeyId?: string;
|
|
9002
9010
|
/** The number of days to retain Performance Insights data. When creating a DB instance without enabling Performance Insights, you can't specify the parameter ``PerformanceInsightsRetentionPeriod``.
|
|
9003
9011
|
This setting doesn't apply to RDS Custom DB instances.
|
|
@@ -17793,23 +17801,20 @@ export declare class LambdaAlias {
|
|
|
17793
17801
|
|
|
17794
17802
|
export declare class LambdaCapacityProvider {
|
|
17795
17803
|
constructor(props: {
|
|
17796
|
-
/**
|
|
17804
|
+
/** The permissions configuration for the capacity provider. */
|
|
17797
17805
|
PermissionsConfig: LambdaCapacityProvider_CapacityProviderPermissionsConfig;
|
|
17798
|
-
/** VPC configuration for the capacity provider. */
|
|
17806
|
+
/** The VPC configuration for the capacity provider. */
|
|
17799
17807
|
VpcConfig: LambdaCapacityProvider_CapacityProviderVpcConfig;
|
|
17800
|
-
/** The Amazon Resource Name (ARN) of the capacity provider. This is a read-only property that is automatically generated when the capacity provider is created. */
|
|
17801
17808
|
Arn?: string;
|
|
17802
|
-
/** The name of the capacity provider. The name must be unique within your AWS account and region. If you don't specify a name, CloudFormation generates one. */
|
|
17803
17809
|
CapacityProviderName?: string;
|
|
17804
17810
|
/** The scaling configuration for the capacity provider. */
|
|
17805
17811
|
CapacityProviderScalingConfig?: LambdaCapacityProvider_CapacityProviderScalingConfig;
|
|
17806
|
-
/**
|
|
17812
|
+
/** The instance requirements for compute resources managed by the capacity provider. */
|
|
17807
17813
|
InstanceRequirements?: LambdaCapacityProvider_InstanceRequirements;
|
|
17808
|
-
/** The ARN of the
|
|
17814
|
+
/** The ARN of the KMS key used to encrypt the capacity provider's resources. */
|
|
17809
17815
|
KmsKeyArn?: string;
|
|
17810
|
-
/** The current state of the capacity provider. */
|
|
17811
17816
|
State?: LambdaCapacityProvider_CapacityProviderState;
|
|
17812
|
-
/** A
|
|
17817
|
+
/** A key-value pair that provides metadata for the capacity provider. */
|
|
17813
17818
|
Tags?: LambdaCapacityProvider_Tag[];
|
|
17814
17819
|
}, attributes?: CFResourceAttributes);
|
|
17815
17820
|
readonly Arn: string;
|
|
@@ -19590,20 +19595,32 @@ export declare class MailManagerTrafficPolicy {
|
|
|
19590
19595
|
|
|
19591
19596
|
export declare class MaintenanceWindow {
|
|
19592
19597
|
constructor(props: {
|
|
19598
|
+
/** Enables a maintenance window task to run on managed instances, even if you have not registered those instances as targets. If enabled, then you must specify the unregistered instances (by instance ID) when you register a task with the maintenance window. */
|
|
19593
19599
|
AllowUnassociatedTargets: boolean;
|
|
19600
|
+
/** The number of hours before the end of the maintenance window that AWS Systems Manager stops scheduling new tasks for execution. */
|
|
19594
19601
|
Cutoff: number;
|
|
19602
|
+
/** The duration of the maintenance window in hours. */
|
|
19595
19603
|
Duration: number;
|
|
19604
|
+
/** The name of the maintenance window. */
|
|
19596
19605
|
Name: string;
|
|
19606
|
+
/** The schedule of the maintenance window in the form of a cron or rate expression. */
|
|
19597
19607
|
Schedule: string;
|
|
19608
|
+
/** A description of the maintenance window. */
|
|
19598
19609
|
Description?: string;
|
|
19610
|
+
/** The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become inactive. */
|
|
19599
19611
|
EndDate?: string;
|
|
19600
|
-
|
|
19612
|
+
/** The number of days to wait to run a maintenance window after the scheduled cron expression date and time. */
|
|
19601
19613
|
ScheduleOffset?: number;
|
|
19614
|
+
/** The time zone that the scheduled maintenance window executions are based on, in Internet Assigned Numbers Authority (IANA) format. */
|
|
19602
19615
|
ScheduleTimezone?: string;
|
|
19616
|
+
/** The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become active. StartDate allows you to delay activation of the maintenance window until the specified future date. */
|
|
19603
19617
|
StartDate?: string;
|
|
19618
|
+
/** Optional metadata that you assign to a resource in the form of an arbitrary set of tags (key-value pairs). Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a maintenance window to identify the type of tasks it will run, the types of targets, and the environment it will run in. */
|
|
19604
19619
|
Tags?: MaintenanceWindow_Tag[];
|
|
19620
|
+
/** The ID of the maintenance window. */
|
|
19621
|
+
WindowId?: string;
|
|
19605
19622
|
}, attributes?: CFResourceAttributes);
|
|
19606
|
-
readonly
|
|
19623
|
+
readonly WindowId: string;
|
|
19607
19624
|
}
|
|
19608
19625
|
|
|
19609
19626
|
export declare class MaintenanceWindowTarget {
|
|
@@ -22595,6 +22612,8 @@ export declare class OpenSearchServiceApplication {
|
|
|
22595
22612
|
IamIdentityCenterOptions?: Record<string, unknown>;
|
|
22596
22613
|
/** The identifier of the application. */
|
|
22597
22614
|
Id?: string;
|
|
22615
|
+
/** The ARN of the KMS key used to encrypt the application. */
|
|
22616
|
+
KmsKeyArn?: string;
|
|
22598
22617
|
/** An arbitrary set of tags (key-value pairs) for this application. */
|
|
22599
22618
|
Tags?: OpenSearchServiceApplication_Tag[];
|
|
22600
22619
|
}, attributes?: CFResourceAttributes);
|
|
@@ -54633,15 +54652,16 @@ export declare class CapacityProviderConfig {
|
|
|
54633
54652
|
|
|
54634
54653
|
export declare class CapacityProviderPermissionsConfig {
|
|
54635
54654
|
constructor(props: {
|
|
54636
|
-
/** The ARN of the IAM role that
|
|
54655
|
+
/** The ARN of the IAM role that the capacity provider uses to manage compute instances and other AWS resources. */
|
|
54637
54656
|
CapacityProviderOperatorRoleArn: string;
|
|
54638
54657
|
});
|
|
54639
54658
|
}
|
|
54640
54659
|
|
|
54641
54660
|
export declare class CapacityProviderScalingConfig {
|
|
54642
54661
|
constructor(props: {
|
|
54643
|
-
/** The maximum number of
|
|
54662
|
+
/** The maximum number of vCPUs that the capacity provider can provision across all compute instances. */
|
|
54644
54663
|
MaxVCpuCount?: number;
|
|
54664
|
+
/** The scaling mode that determines how the capacity provider responds to changes in demand. */
|
|
54645
54665
|
ScalingMode?: LambdaCapacityProvider_CapacityProviderScalingMode;
|
|
54646
54666
|
/** A list of target tracking scaling policies for the capacity provider. */
|
|
54647
54667
|
ScalingPolicies?: LambdaCapacityProvider_TargetTrackingScalingPolicy[];
|
|
@@ -54658,9 +54678,9 @@ export declare class CapacityProviderStrategy {
|
|
|
54658
54678
|
|
|
54659
54679
|
export declare class CapacityProviderVpcConfig {
|
|
54660
54680
|
constructor(props: {
|
|
54661
|
-
/** A list of security group IDs
|
|
54681
|
+
/** A list of security group IDs that control network access for compute instances managed by the capacity provider. */
|
|
54662
54682
|
SecurityGroupIds: string[];
|
|
54663
|
-
/** A list of subnet IDs where the capacity provider
|
|
54683
|
+
/** A list of subnet IDs where the capacity provider launches compute instances. */
|
|
54664
54684
|
SubnetIds: string[];
|
|
54665
54685
|
});
|
|
54666
54686
|
}
|
|
@@ -54711,6 +54731,13 @@ export declare class CapacityReservationOptionsRequest {
|
|
|
54711
54731
|
});
|
|
54712
54732
|
}
|
|
54713
54733
|
|
|
54734
|
+
export declare class CapacityReservationRequest {
|
|
54735
|
+
constructor(props: {
|
|
54736
|
+
ReservationGroupArn?: string;
|
|
54737
|
+
ReservationPreference?: "RESERVATIONS_EXCLUDED" | "RESERVATIONS_FIRST" | "RESERVATIONS_ONLY";
|
|
54738
|
+
});
|
|
54739
|
+
}
|
|
54740
|
+
|
|
54714
54741
|
export declare class CapacitySize {
|
|
54715
54742
|
constructor(props: {
|
|
54716
54743
|
/** Specifies whether the `Value` is an instance count or a capacity unit. */
|
|
@@ -74098,11 +74125,19 @@ export declare class ECSCapacityProvider_BaselineEbsBandwidthMbpsRequest {
|
|
|
74098
74125
|
});
|
|
74099
74126
|
}
|
|
74100
74127
|
|
|
74128
|
+
export declare class ECSCapacityProvider_CapacityReservationRequest {
|
|
74129
|
+
constructor(props: {
|
|
74130
|
+
ReservationGroupArn?: string;
|
|
74131
|
+
ReservationPreference?: "RESERVATIONS_EXCLUDED" | "RESERVATIONS_FIRST" | "RESERVATIONS_ONLY";
|
|
74132
|
+
});
|
|
74133
|
+
}
|
|
74134
|
+
|
|
74101
74135
|
export declare class ECSCapacityProvider_InstanceLaunchTemplate {
|
|
74102
74136
|
constructor(props: {
|
|
74103
74137
|
Ec2InstanceProfileArn: string;
|
|
74104
74138
|
NetworkConfiguration: ECSCapacityProvider_ManagedInstancesNetworkConfiguration;
|
|
74105
|
-
CapacityOptionType?: "ON_DEMAND" | "SPOT";
|
|
74139
|
+
CapacityOptionType?: "ON_DEMAND" | "RESERVED" | "SPOT";
|
|
74140
|
+
CapacityReservations?: ECSCapacityProvider_CapacityReservationRequest;
|
|
74106
74141
|
FipsEnabled?: boolean;
|
|
74107
74142
|
InstanceRequirements?: ECSCapacityProvider_InstanceRequirementsRequest;
|
|
74108
74143
|
Monitoring?: ECSCapacityProvider_ManagedInstancesMonitoringOptions;
|
|
@@ -90276,7 +90311,8 @@ export declare class InstanceLaunchTemplate {
|
|
|
90276
90311
|
constructor(props: {
|
|
90277
90312
|
Ec2InstanceProfileArn: string;
|
|
90278
90313
|
NetworkConfiguration: ECSCapacityProvider_ManagedInstancesNetworkConfiguration;
|
|
90279
|
-
CapacityOptionType?: "ON_DEMAND" | "SPOT";
|
|
90314
|
+
CapacityOptionType?: "ON_DEMAND" | "RESERVED" | "SPOT";
|
|
90315
|
+
CapacityReservations?: ECSCapacityProvider_CapacityReservationRequest;
|
|
90280
90316
|
FipsEnabled?: boolean;
|
|
90281
90317
|
InstanceRequirements?: ECSCapacityProvider_InstanceRequirementsRequest;
|
|
90282
90318
|
Monitoring?: ECSCapacityProvider_ManagedInstancesMonitoringOptions;
|
|
@@ -94879,15 +94915,16 @@ export declare class LambdaAlias_VersionWeight {
|
|
|
94879
94915
|
|
|
94880
94916
|
export declare class LambdaCapacityProvider_CapacityProviderPermissionsConfig {
|
|
94881
94917
|
constructor(props: {
|
|
94882
|
-
/** The ARN of the IAM role that
|
|
94918
|
+
/** The ARN of the IAM role that the capacity provider uses to manage compute instances and other AWS resources. */
|
|
94883
94919
|
CapacityProviderOperatorRoleArn: string;
|
|
94884
94920
|
});
|
|
94885
94921
|
}
|
|
94886
94922
|
|
|
94887
94923
|
export declare class LambdaCapacityProvider_CapacityProviderScalingConfig {
|
|
94888
94924
|
constructor(props: {
|
|
94889
|
-
/** The maximum number of
|
|
94925
|
+
/** The maximum number of vCPUs that the capacity provider can provision across all compute instances. */
|
|
94890
94926
|
MaxVCpuCount?: number;
|
|
94927
|
+
/** The scaling mode that determines how the capacity provider responds to changes in demand. */
|
|
94891
94928
|
ScalingMode?: LambdaCapacityProvider_CapacityProviderScalingMode;
|
|
94892
94929
|
/** A list of target tracking scaling policies for the capacity provider. */
|
|
94893
94930
|
ScalingPolicies?: LambdaCapacityProvider_TargetTrackingScalingPolicy[];
|
|
@@ -94896,20 +94933,20 @@ export declare class LambdaCapacityProvider_CapacityProviderScalingConfig {
|
|
|
94896
94933
|
|
|
94897
94934
|
export declare class LambdaCapacityProvider_CapacityProviderVpcConfig {
|
|
94898
94935
|
constructor(props: {
|
|
94899
|
-
/** A list of security group IDs
|
|
94936
|
+
/** A list of security group IDs that control network access for compute instances managed by the capacity provider. */
|
|
94900
94937
|
SecurityGroupIds: string[];
|
|
94901
|
-
/** A list of subnet IDs where the capacity provider
|
|
94938
|
+
/** A list of subnet IDs where the capacity provider launches compute instances. */
|
|
94902
94939
|
SubnetIds: string[];
|
|
94903
94940
|
});
|
|
94904
94941
|
}
|
|
94905
94942
|
|
|
94906
94943
|
export declare class LambdaCapacityProvider_InstanceRequirements {
|
|
94907
94944
|
constructor(props: {
|
|
94908
|
-
/** A list of instance types that the capacity provider
|
|
94945
|
+
/** A list of EC2 instance types that the capacity provider is allowed to use. If not specified, all compatible instance types are allowed. */
|
|
94909
94946
|
AllowedInstanceTypes?: string[];
|
|
94910
|
-
/**
|
|
94947
|
+
/** A list of supported CPU architectures for compute instances. Valid values include ``x86_64`` and ``arm64``. */
|
|
94911
94948
|
Architectures?: LambdaCapacityProvider_Architecture[];
|
|
94912
|
-
/** A list of instance types that the capacity provider should not use
|
|
94949
|
+
/** A list of EC2 instance types that the capacity provider should not use, even if they meet other requirements. */
|
|
94913
94950
|
ExcludedInstanceTypes?: string[];
|
|
94914
94951
|
});
|
|
94915
94952
|
}
|
|
@@ -94925,8 +94962,9 @@ export declare class LambdaCapacityProvider_Tag {
|
|
|
94925
94962
|
|
|
94926
94963
|
export declare class LambdaCapacityProvider_TargetTrackingScalingPolicy {
|
|
94927
94964
|
constructor(props: {
|
|
94965
|
+
/** The predefined metric type to track for scaling decisions. */
|
|
94928
94966
|
PredefinedMetricType: LambdaCapacityProvider_CapacityProviderPredefinedMetricType;
|
|
94929
|
-
/** The target value for the metric
|
|
94967
|
+
/** The target value for the metric that the scaling policy attempts to maintain through scaling actions. */
|
|
94930
94968
|
TargetValue: number;
|
|
94931
94969
|
});
|
|
94932
94970
|
}
|
|
@@ -99160,7 +99198,9 @@ export declare class MaintenanceStrategies {
|
|
|
99160
99198
|
|
|
99161
99199
|
export declare class MaintenanceWindow_Tag {
|
|
99162
99200
|
constructor(props: {
|
|
99201
|
+
/** The name of the tag. */
|
|
99163
99202
|
Key: string;
|
|
99203
|
+
/** The value of the tag. */
|
|
99164
99204
|
Value: string;
|
|
99165
99205
|
});
|
|
99166
99206
|
}
|
|
@@ -143418,8 +143458,9 @@ export declare class TargetTrackingScalingConfiguration {
|
|
|
143418
143458
|
|
|
143419
143459
|
export declare class TargetTrackingScalingPolicy {
|
|
143420
143460
|
constructor(props: {
|
|
143461
|
+
/** The predefined metric type to track for scaling decisions. */
|
|
143421
143462
|
PredefinedMetricType: LambdaCapacityProvider_CapacityProviderPredefinedMetricType;
|
|
143422
|
-
/** The target value for the metric
|
|
143463
|
+
/** The target value for the metric that the scaling policy attempts to maintain through scaling actions. */
|
|
143423
143464
|
TargetValue: number;
|
|
143424
143465
|
});
|
|
143425
143466
|
}
|
package/src/generated/index.ts
CHANGED
|
@@ -797,7 +797,7 @@ export const MailManagerIngressPoint = createResource("AWS::SES::MailManagerIngr
|
|
|
797
797
|
export const MailManagerRelay = createResource("AWS::SES::MailManagerRelay", "aws", {"RelayArn":"RelayArn","RelayId":"RelayId"});
|
|
798
798
|
export const MailManagerRuleSet = createResource("AWS::SES::MailManagerRuleSet", "aws", {"RuleSetArn":"RuleSetArn","RuleSetId":"RuleSetId"});
|
|
799
799
|
export const MailManagerTrafficPolicy = createResource("AWS::SES::MailManagerTrafficPolicy", "aws", {"TrafficPolicyArn":"TrafficPolicyArn","TrafficPolicyId":"TrafficPolicyId"});
|
|
800
|
-
export const MaintenanceWindow = createResource("AWS::SSM::MaintenanceWindow", "aws", {"
|
|
800
|
+
export const MaintenanceWindow = createResource("AWS::SSM::MaintenanceWindow", "aws", {"WindowId":"WindowId"});
|
|
801
801
|
export const MaintenanceWindowTarget = createResource("AWS::SSM::MaintenanceWindowTarget", "aws", {"WindowTargetId":"WindowTargetId"});
|
|
802
802
|
export const MaintenanceWindowTask = createResource("AWS::SSM::MaintenanceWindowTask", "aws", {"WindowTaskId":"WindowTaskId"});
|
|
803
803
|
export const MalwareProtectionPlan = createResource("AWS::GuardDuty::MalwareProtectionPlan", "aws", {"MalwareProtectionPlanId":"MalwareProtectionPlanId","Arn":"Arn","CreatedAt":"CreatedAt","Status":"Status","StatusReasons":"StatusReasons"});
|
|
@@ -3637,6 +3637,7 @@ export const CapacityReservationFleet_InstanceTypeSpecification = createProperty
|
|
|
3637
3637
|
export const CapacityReservationFleet_Tag = createProperty("AWS::EC2::CapacityReservationFleet.Tag", "aws");
|
|
3638
3638
|
export const CapacityReservationFleet_TagSpecification = createProperty("AWS::EC2::CapacityReservationFleet.TagSpecification", "aws");
|
|
3639
3639
|
export const CapacityReservationOptionsRequest = createProperty("AWS::EC2::EC2Fleet.CapacityReservationOptionsRequest", "aws");
|
|
3640
|
+
export const CapacityReservationRequest = createProperty("AWS::ECS::CapacityProvider.CapacityReservationRequest", "aws");
|
|
3640
3641
|
export const CapacitySize = createProperty("AWS::SageMaker::Endpoint.CapacitySize", "aws");
|
|
3641
3642
|
export const CapacitySizeConfig = createProperty("AWS::SageMaker::Cluster.CapacitySizeConfig", "aws");
|
|
3642
3643
|
export const CaptionDescription = createProperty("AWS::MediaLive::Channel.CaptionDescription", "aws");
|
|
@@ -5704,6 +5705,7 @@ export const ECSCapacityProvider_AcceleratorCountRequest = createProperty("AWS::
|
|
|
5704
5705
|
export const ECSCapacityProvider_AcceleratorTotalMemoryMiBRequest = createProperty("AWS::ECS::CapacityProvider.AcceleratorTotalMemoryMiBRequest", "aws");
|
|
5705
5706
|
export const ECSCapacityProvider_AutoScalingGroupProvider = createProperty("AWS::ECS::CapacityProvider.AutoScalingGroupProvider", "aws");
|
|
5706
5707
|
export const ECSCapacityProvider_BaselineEbsBandwidthMbpsRequest = createProperty("AWS::ECS::CapacityProvider.BaselineEbsBandwidthMbpsRequest", "aws");
|
|
5708
|
+
export const ECSCapacityProvider_CapacityReservationRequest = createProperty("AWS::ECS::CapacityProvider.CapacityReservationRequest", "aws");
|
|
5707
5709
|
export const ECSCapacityProvider_InstanceLaunchTemplate = createProperty("AWS::ECS::CapacityProvider.InstanceLaunchTemplate", "aws");
|
|
5708
5710
|
export const ECSCapacityProvider_InstanceRequirementsRequest = createProperty("AWS::ECS::CapacityProvider.InstanceRequirementsRequest", "aws");
|
|
5709
5711
|
export const ECSCapacityProvider_ManagedInstancesNetworkConfiguration = createProperty("AWS::ECS::CapacityProvider.ManagedInstancesNetworkConfiguration", "aws");
|