@awboost/cfntypes 0.100.383 → 0.100.385
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.
|
@@ -15501,11 +15501,11 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
|
15501
15501
|
*/
|
|
15502
15502
|
AutoScalingGroupName?: string;
|
|
15503
15503
|
/**
|
|
15504
|
-
* The instance capacity distribution across Availability Zones.
|
|
15504
|
+
* The EC2 instance capacity distribution across Availability Zones for the Auto Scaling group.
|
|
15505
15505
|
*/
|
|
15506
15506
|
AvailabilityZoneDistribution?: AutoScalingAutoScalingGroupAvailabilityZoneDistribution;
|
|
15507
15507
|
/**
|
|
15508
|
-
* The Availability Zone impairment policy.
|
|
15508
|
+
* The Availability Zone impairment policy for the Auto Scaling group.
|
|
15509
15509
|
*/
|
|
15510
15510
|
AvailabilityZoneImpairmentPolicy?: AutoScalingAutoScalingGroupAvailabilityZoneImpairmentPolicy;
|
|
15511
15511
|
/**
|
|
@@ -15517,7 +15517,7 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
|
15517
15517
|
*/
|
|
15518
15518
|
CapacityRebalance?: boolean;
|
|
15519
15519
|
/**
|
|
15520
|
-
* The capacity reservation specification.
|
|
15520
|
+
* The capacity reservation specification for the Auto Scaling group.
|
|
15521
15521
|
*/
|
|
15522
15522
|
CapacityReservationSpecification?: AutoScalingAutoScalingGroupCapacityReservationSpecification;
|
|
15523
15523
|
/**
|
|
@@ -15566,6 +15566,9 @@ export type AutoScalingAutoScalingGroupProps = {
|
|
|
15566
15566
|
If you specify ``LaunchTemplate``, ``MixedInstancesPolicy``, or ``LaunchConfigurationName``, don't specify ``InstanceId``.
|
|
15567
15567
|
*/
|
|
15568
15568
|
InstanceId?: string;
|
|
15569
|
+
/**
|
|
15570
|
+
* The instance lifecycle policy for the Auto Scaling group.
|
|
15571
|
+
*/
|
|
15569
15572
|
InstanceLifecyclePolicy?: AutoScalingAutoScalingGroupInstanceLifecyclePolicy;
|
|
15570
15573
|
/**
|
|
15571
15574
|
* An instance maintenance policy. For more information, see [Set instance maintenance policy](https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-instance-maintenance-policy.html) in the *Amazon EC2 Auto Scaling User Guide*.
|
|
@@ -15803,9 +15806,14 @@ export type AutoScalingAutoScalingGroupCpuPerformanceFactorRequest = {
|
|
|
15803
15806
|
};
|
|
15804
15807
|
/**
|
|
15805
15808
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.InstanceLifecyclePolicy`.
|
|
15809
|
+
* The instance lifecycle policy for the Auto Scaling group. This policy controls instance behavior when an instance transitions through its lifecycle states. Configure retention triggers to specify when instances should move to a ``Retained`` state instead of automatic termination.
|
|
15810
|
+
For more information, see [Control instance retention with instance lifecycle policies](https://docs.aws.amazon.com/autoscaling/ec2/userguide/instance-lifecycle-policy.html) in the *Amazon EC2 Auto Scaling User Guide*.
|
|
15806
15811
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancelifecyclepolicy.html}
|
|
15807
15812
|
*/
|
|
15808
15813
|
export type AutoScalingAutoScalingGroupInstanceLifecyclePolicy = {
|
|
15814
|
+
/**
|
|
15815
|
+
* Specifies the conditions that trigger instance retention behavior. These triggers determine when instances should move to a ``Retained`` state instead of automatic termination. This allows you to maintain control over instance management when lifecycles transition and operations fail.
|
|
15816
|
+
*/
|
|
15809
15817
|
RetentionTriggers?: AutoScalingAutoScalingGroupRetentionTriggers;
|
|
15810
15818
|
};
|
|
15811
15819
|
/**
|
|
@@ -16078,6 +16086,13 @@ export type AutoScalingAutoScalingGroupLaunchTemplate = {
|
|
|
16078
16086
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html}
|
|
16079
16087
|
*/
|
|
16080
16088
|
export type AutoScalingAutoScalingGroupLaunchTemplateOverrides = {
|
|
16089
|
+
/**
|
|
16090
|
+
* The ID of the Amazon Machine Image (AMI) to use for instances launched with this override. When using Instance Refresh with ``ReplaceRootVolume`` strategy, this specifies the AMI for root volume replacement operations.
|
|
16091
|
+
For ``ReplaceRootVolume`` operations:
|
|
16092
|
+
+ All overrides in the ``MixedInstancesPolicy`` must specify an ImageId
|
|
16093
|
+
+ The AMI must contain only a single root volume
|
|
16094
|
+
+ Root volume replacement doesn't support multi-volume AMIs
|
|
16095
|
+
*/
|
|
16081
16096
|
ImageId?: string;
|
|
16082
16097
|
/**
|
|
16083
16098
|
* The instance requirements. Amazon EC2 Auto Scaling uses your specified requirements to identify instance types. Then, it uses your On-Demand and Spot allocation strategies to launch instances from these instance types.
|
|
@@ -16346,9 +16361,15 @@ export type AutoScalingAutoScalingGroupPerformanceFactorReferenceRequest = {
|
|
|
16346
16361
|
};
|
|
16347
16362
|
/**
|
|
16348
16363
|
* Type definition for `AWS::AutoScaling::AutoScalingGroup.RetentionTriggers`.
|
|
16364
|
+
* Defines the specific triggers that cause instances to be retained in a Retained state rather than terminated. Each trigger corresponds to a different failure scenario during the instance lifecycle. This allows fine-grained control over when to preserve instances for manual intervention.
|
|
16349
16365
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-retentiontriggers.html}
|
|
16350
16366
|
*/
|
|
16351
16367
|
export type AutoScalingAutoScalingGroupRetentionTriggers = {
|
|
16368
|
+
/**
|
|
16369
|
+
* Specifies the action when a termination lifecycle hook is abandoned due to failure, timeout, or explicit abandonment (calling CompleteLifecycleAction).
|
|
16370
|
+
Set to ``Retain`` to move instances to a ``Retained`` state. Set to ``Terminate`` for default termination behavior.
|
|
16371
|
+
Retained instances don't count toward desired capacity and remain until you call ``TerminateInstanceInAutoScalingGroup``.
|
|
16372
|
+
*/
|
|
16352
16373
|
TerminateHookAbandon?: string;
|
|
16353
16374
|
};
|
|
16354
16375
|
/**
|
|
@@ -27407,7 +27428,7 @@ export type BedrockAgentCoreGatewayTargetProps = {
|
|
|
27407
27428
|
* @minLength `1`
|
|
27408
27429
|
* @maxLength `1`
|
|
27409
27430
|
*/
|
|
27410
|
-
CredentialProviderConfigurations
|
|
27431
|
+
CredentialProviderConfigurations?: BedrockAgentCoreGatewayTargetCredentialProviderConfiguration[];
|
|
27411
27432
|
/**
|
|
27412
27433
|
* @minLength `1`
|
|
27413
27434
|
* @maxLength `200`
|
|
@@ -27446,6 +27467,41 @@ export type BedrockAgentCoreGatewayTargetAttributes = {
|
|
|
27446
27467
|
TargetId: string;
|
|
27447
27468
|
UpdatedAt: string;
|
|
27448
27469
|
};
|
|
27470
|
+
/**
|
|
27471
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiGatewayTargetConfiguration`.
|
|
27472
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration.html}
|
|
27473
|
+
*/
|
|
27474
|
+
export type BedrockAgentCoreGatewayTargetApiGatewayTargetConfiguration = {
|
|
27475
|
+
ApiGatewayToolConfiguration: BedrockAgentCoreGatewayTargetApiGatewayToolConfiguration;
|
|
27476
|
+
RestApiId: string;
|
|
27477
|
+
Stage: string;
|
|
27478
|
+
};
|
|
27479
|
+
/**
|
|
27480
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiGatewayToolConfiguration`.
|
|
27481
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolconfiguration.html}
|
|
27482
|
+
*/
|
|
27483
|
+
export type BedrockAgentCoreGatewayTargetApiGatewayToolConfiguration = {
|
|
27484
|
+
ToolFilters: BedrockAgentCoreGatewayTargetApiGatewayToolFilter[];
|
|
27485
|
+
ToolOverrides?: BedrockAgentCoreGatewayTargetApiGatewayToolOverride[];
|
|
27486
|
+
};
|
|
27487
|
+
/**
|
|
27488
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiGatewayToolFilter`.
|
|
27489
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolfilter.html}
|
|
27490
|
+
*/
|
|
27491
|
+
export type BedrockAgentCoreGatewayTargetApiGatewayToolFilter = {
|
|
27492
|
+
FilterPath: string;
|
|
27493
|
+
Methods: BedrockAgentCoreGatewayTargetRestApiMethod[];
|
|
27494
|
+
};
|
|
27495
|
+
/**
|
|
27496
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiGatewayToolOverride`.
|
|
27497
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytooloverride.html}
|
|
27498
|
+
*/
|
|
27499
|
+
export type BedrockAgentCoreGatewayTargetApiGatewayToolOverride = {
|
|
27500
|
+
Description?: string;
|
|
27501
|
+
Method: BedrockAgentCoreGatewayTargetRestApiMethod;
|
|
27502
|
+
Name: string;
|
|
27503
|
+
Path: string;
|
|
27504
|
+
};
|
|
27449
27505
|
/**
|
|
27450
27506
|
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.ApiKeyCredentialLocation`.
|
|
27451
27507
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apikeycredentiallocation.html}
|
|
@@ -27538,6 +27594,8 @@ export type BedrockAgentCoreGatewayTargetMcpTargetConfiguration = {
|
|
|
27538
27594
|
Lambda: BedrockAgentCoreGatewayTargetMcpLambdaTargetConfiguration;
|
|
27539
27595
|
} | {
|
|
27540
27596
|
McpServer: BedrockAgentCoreGatewayTargetMcpServerTargetConfiguration;
|
|
27597
|
+
} | {
|
|
27598
|
+
ApiGateway: BedrockAgentCoreGatewayTargetApiGatewayTargetConfiguration;
|
|
27541
27599
|
};
|
|
27542
27600
|
/**
|
|
27543
27601
|
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.MetadataConfiguration`.
|
|
@@ -27581,6 +27639,11 @@ export type BedrockAgentCoreGatewayTargetOAuthCustomParameters = Record<string,
|
|
|
27581
27639
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthgranttype.html}
|
|
27582
27640
|
*/
|
|
27583
27641
|
export type BedrockAgentCoreGatewayTargetOAuthGrantType = "AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS";
|
|
27642
|
+
/**
|
|
27643
|
+
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.RestApiMethod`.
|
|
27644
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-restapimethod.html}
|
|
27645
|
+
*/
|
|
27646
|
+
export type BedrockAgentCoreGatewayTargetRestApiMethod = "GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST";
|
|
27584
27647
|
/**
|
|
27585
27648
|
* Type definition for `AWS::BedrockAgentCore::GatewayTarget.S3Configuration`.
|
|
27586
27649
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-s3configuration.html}
|
|
@@ -79669,6 +79732,481 @@ export type EMRWALWorkspaceTag = {
|
|
|
79669
79732
|
*/
|
|
79670
79733
|
Value: string;
|
|
79671
79734
|
};
|
|
79735
|
+
/**
|
|
79736
|
+
* Resource Schema of AWS::EMRContainers::Endpoint Type
|
|
79737
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html}
|
|
79738
|
+
*/
|
|
79739
|
+
export type EMRContainersEndpointProps = {
|
|
79740
|
+
/**
|
|
79741
|
+
* The configuration overrides for the managed endpoint.
|
|
79742
|
+
*/
|
|
79743
|
+
ConfigurationOverrides?: EMRContainersEndpointConfigurationOverrides;
|
|
79744
|
+
/**
|
|
79745
|
+
* The execution role ARN for the managed endpoint.
|
|
79746
|
+
*/
|
|
79747
|
+
ExecutionRoleArn: string;
|
|
79748
|
+
/**
|
|
79749
|
+
* The name of the managed endpoint.
|
|
79750
|
+
* @minLength `1`
|
|
79751
|
+
* @maxLength `64`
|
|
79752
|
+
* @pattern `[0-9A-Za-z][A-Za-z0-9\-_]*`
|
|
79753
|
+
*/
|
|
79754
|
+
Name?: string;
|
|
79755
|
+
/**
|
|
79756
|
+
* The Amazon EMR release label.
|
|
79757
|
+
* @minLength `1`
|
|
79758
|
+
* @maxLength `64`
|
|
79759
|
+
* @pattern `[A-Za-z0-9._/-]+`
|
|
79760
|
+
*/
|
|
79761
|
+
ReleaseLabel: string;
|
|
79762
|
+
/**
|
|
79763
|
+
* An array of key-value pairs to apply to this managed endpoint.
|
|
79764
|
+
* @maxLength `50`
|
|
79765
|
+
*/
|
|
79766
|
+
Tags?: EMRContainersEndpointTag[];
|
|
79767
|
+
/**
|
|
79768
|
+
* The type of the managed endpoint.
|
|
79769
|
+
*/
|
|
79770
|
+
Type: string;
|
|
79771
|
+
/**
|
|
79772
|
+
* The ID of the virtual cluster for which the managed endpoint is created.
|
|
79773
|
+
*/
|
|
79774
|
+
VirtualClusterId: string;
|
|
79775
|
+
};
|
|
79776
|
+
/**
|
|
79777
|
+
* Attribute type definition for `AWS::EMRContainers::Endpoint`.
|
|
79778
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#aws-resource-emrcontainers-endpoint-return-values}
|
|
79779
|
+
*/
|
|
79780
|
+
export type EMRContainersEndpointAttributes = {
|
|
79781
|
+
/**
|
|
79782
|
+
* The ARN of the managed endpoint.
|
|
79783
|
+
*/
|
|
79784
|
+
Arn: string;
|
|
79785
|
+
/**
|
|
79786
|
+
* The certificate authority for the managed endpoint.
|
|
79787
|
+
*/
|
|
79788
|
+
CertificateAuthority: {
|
|
79789
|
+
CertificateArn: string;
|
|
79790
|
+
CertificateData: string;
|
|
79791
|
+
};
|
|
79792
|
+
/**
|
|
79793
|
+
* The date and time when the managed endpoint was created.
|
|
79794
|
+
*/
|
|
79795
|
+
CreatedAt: string;
|
|
79796
|
+
/**
|
|
79797
|
+
* The reason for a failed managed endpoint.
|
|
79798
|
+
*/
|
|
79799
|
+
FailureReason: string;
|
|
79800
|
+
/**
|
|
79801
|
+
* The ID of the managed endpoint.
|
|
79802
|
+
*/
|
|
79803
|
+
Id: string;
|
|
79804
|
+
/**
|
|
79805
|
+
* The security group associated with the managed endpoint.
|
|
79806
|
+
*/
|
|
79807
|
+
SecurityGroup: string;
|
|
79808
|
+
/**
|
|
79809
|
+
* The server URL of the managed endpoint.
|
|
79810
|
+
*/
|
|
79811
|
+
ServerUrl: string;
|
|
79812
|
+
/**
|
|
79813
|
+
* The state of the managed endpoint.
|
|
79814
|
+
*/
|
|
79815
|
+
State: string;
|
|
79816
|
+
/**
|
|
79817
|
+
* Additional details about the state of the managed endpoint.
|
|
79818
|
+
*/
|
|
79819
|
+
StateDetails: string;
|
|
79820
|
+
};
|
|
79821
|
+
/**
|
|
79822
|
+
* Type definition for `AWS::EMRContainers::Endpoint.Certificate`.
|
|
79823
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-certificate.html}
|
|
79824
|
+
*/
|
|
79825
|
+
export type EMRContainersEndpointCertificate = {
|
|
79826
|
+
CertificateArn?: string;
|
|
79827
|
+
CertificateData?: string;
|
|
79828
|
+
};
|
|
79829
|
+
/**
|
|
79830
|
+
* Type definition for `AWS::EMRContainers::Endpoint.CloudWatchMonitoringConfiguration`.
|
|
79831
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-cloudwatchmonitoringconfiguration.html}
|
|
79832
|
+
*/
|
|
79833
|
+
export type EMRContainersEndpointCloudWatchMonitoringConfiguration = {
|
|
79834
|
+
LogGroupName: string;
|
|
79835
|
+
LogStreamNamePrefix?: string;
|
|
79836
|
+
};
|
|
79837
|
+
/**
|
|
79838
|
+
* Type definition for `AWS::EMRContainers::Endpoint.ConfigurationOverrides`.
|
|
79839
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-configurationoverrides.html}
|
|
79840
|
+
*/
|
|
79841
|
+
export type EMRContainersEndpointConfigurationOverrides = {
|
|
79842
|
+
/**
|
|
79843
|
+
* @maxLength `100`
|
|
79844
|
+
*/
|
|
79845
|
+
ApplicationConfiguration?: EMRContainersEndpointEMREKSConfiguration[];
|
|
79846
|
+
MonitoringConfiguration?: EMRContainersEndpointMonitoringConfiguration;
|
|
79847
|
+
};
|
|
79848
|
+
/**
|
|
79849
|
+
* Type definition for `AWS::EMRContainers::Endpoint.ContainerLogRotationConfiguration`.
|
|
79850
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-containerlogrotationconfiguration.html}
|
|
79851
|
+
*/
|
|
79852
|
+
export type EMRContainersEndpointContainerLogRotationConfiguration = {
|
|
79853
|
+
MaxFilesToKeep: number;
|
|
79854
|
+
RotationSize: string;
|
|
79855
|
+
};
|
|
79856
|
+
/**
|
|
79857
|
+
* Type definition for `AWS::EMRContainers::Endpoint.EMREKSConfiguration`.
|
|
79858
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-emreksconfiguration.html}
|
|
79859
|
+
*/
|
|
79860
|
+
export type EMRContainersEndpointEMREKSConfiguration = {
|
|
79861
|
+
Classification: string;
|
|
79862
|
+
/**
|
|
79863
|
+
* @maxLength `100`
|
|
79864
|
+
*/
|
|
79865
|
+
Configurations?: EMRContainersEndpointEMREKSConfiguration[];
|
|
79866
|
+
Properties?: Record<string, string>;
|
|
79867
|
+
};
|
|
79868
|
+
/**
|
|
79869
|
+
* Type definition for `AWS::EMRContainers::Endpoint.MonitoringConfiguration`.
|
|
79870
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-monitoringconfiguration.html}
|
|
79871
|
+
*/
|
|
79872
|
+
export type EMRContainersEndpointMonitoringConfiguration = {
|
|
79873
|
+
CloudWatchMonitoringConfiguration?: EMRContainersEndpointCloudWatchMonitoringConfiguration;
|
|
79874
|
+
ContainerLogRotationConfiguration?: EMRContainersEndpointContainerLogRotationConfiguration;
|
|
79875
|
+
PersistentAppUI?: "ENABLED" | "DISABLED";
|
|
79876
|
+
S3MonitoringConfiguration?: EMRContainersEndpointS3MonitoringConfiguration;
|
|
79877
|
+
};
|
|
79878
|
+
/**
|
|
79879
|
+
* Type definition for `AWS::EMRContainers::Endpoint.S3MonitoringConfiguration`.
|
|
79880
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-s3monitoringconfiguration.html}
|
|
79881
|
+
*/
|
|
79882
|
+
export type EMRContainersEndpointS3MonitoringConfiguration = {
|
|
79883
|
+
LogUri: string;
|
|
79884
|
+
};
|
|
79885
|
+
/**
|
|
79886
|
+
* Type definition for `AWS::EMRContainers::Endpoint.Tag`.
|
|
79887
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-tag.html}
|
|
79888
|
+
*/
|
|
79889
|
+
export type EMRContainersEndpointTag = {
|
|
79890
|
+
/**
|
|
79891
|
+
* A user-defined key, which is the minimum required information for a valid tag.
|
|
79892
|
+
* @minLength `1`
|
|
79893
|
+
* @maxLength `128`
|
|
79894
|
+
*/
|
|
79895
|
+
Key: string;
|
|
79896
|
+
/**
|
|
79897
|
+
* A user-defined value, which is optional in a tag.
|
|
79898
|
+
* @minLength `0`
|
|
79899
|
+
* @maxLength `256`
|
|
79900
|
+
*/
|
|
79901
|
+
Value: string;
|
|
79902
|
+
};
|
|
79903
|
+
/**
|
|
79904
|
+
* Resource Schema of AWS::EMRContainers::SecurityConfiguration Type
|
|
79905
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html}
|
|
79906
|
+
*/
|
|
79907
|
+
export type EMRContainersSecurityConfigurationProps = {
|
|
79908
|
+
/**
|
|
79909
|
+
* Container provider for the security configuration.
|
|
79910
|
+
*/
|
|
79911
|
+
ContainerProvider?: EMRContainersSecurityConfigurationContainerProvider;
|
|
79912
|
+
/**
|
|
79913
|
+
* The name of the security configuration.
|
|
79914
|
+
* @minLength `1`
|
|
79915
|
+
* @maxLength `64`
|
|
79916
|
+
* @pattern `^[a-zA-Z0-9\-_]+$`
|
|
79917
|
+
*/
|
|
79918
|
+
Name?: string;
|
|
79919
|
+
/**
|
|
79920
|
+
* Security configuration input for the security configuration.
|
|
79921
|
+
*/
|
|
79922
|
+
SecurityConfigurationData: EMRContainersSecurityConfigurationSecurityConfigurationData;
|
|
79923
|
+
/**
|
|
79924
|
+
* An array of key-value pairs to apply to this security configuration.
|
|
79925
|
+
*/
|
|
79926
|
+
Tags?: EMRContainersSecurityConfigurationTag[];
|
|
79927
|
+
};
|
|
79928
|
+
/**
|
|
79929
|
+
* Attribute type definition for `AWS::EMRContainers::SecurityConfiguration`.
|
|
79930
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#aws-resource-emrcontainers-securityconfiguration-return-values}
|
|
79931
|
+
*/
|
|
79932
|
+
export type EMRContainersSecurityConfigurationAttributes = {
|
|
79933
|
+
/**
|
|
79934
|
+
* The ARN of the security configuration.
|
|
79935
|
+
*/
|
|
79936
|
+
Arn: string;
|
|
79937
|
+
/**
|
|
79938
|
+
* The ID of the security configuration.
|
|
79939
|
+
*/
|
|
79940
|
+
Id: string;
|
|
79941
|
+
};
|
|
79942
|
+
/**
|
|
79943
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.AtRestEncryptionConfiguration`.
|
|
79944
|
+
* At-rest encryption configuration.
|
|
79945
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-atrestencryptionconfiguration.html}
|
|
79946
|
+
*/
|
|
79947
|
+
export type EMRContainersSecurityConfigurationAtRestEncryptionConfiguration = {
|
|
79948
|
+
/**
|
|
79949
|
+
* Local disk encryption configuration.
|
|
79950
|
+
*/
|
|
79951
|
+
LocalDiskEncryptionConfiguration?: EMRContainersSecurityConfigurationLocalDiskEncryptionConfiguration;
|
|
79952
|
+
/**
|
|
79953
|
+
* S3 encryption configuration.
|
|
79954
|
+
*/
|
|
79955
|
+
S3EncryptionConfiguration?: EMRContainersSecurityConfigurationS3EncryptionConfiguration;
|
|
79956
|
+
};
|
|
79957
|
+
/**
|
|
79958
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.AuthenticationConfiguration`.
|
|
79959
|
+
* Authentication configuration for the security configuration.
|
|
79960
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authenticationconfiguration.html}
|
|
79961
|
+
*/
|
|
79962
|
+
export type EMRContainersSecurityConfigurationAuthenticationConfiguration = {
|
|
79963
|
+
/**
|
|
79964
|
+
* IAM configuration.
|
|
79965
|
+
*/
|
|
79966
|
+
IAMConfiguration?: EMRContainersSecurityConfigurationIAMConfiguration;
|
|
79967
|
+
/**
|
|
79968
|
+
* Identity Center configuration.
|
|
79969
|
+
*/
|
|
79970
|
+
IdentityCenterConfiguration?: EMRContainersSecurityConfigurationIdentityCenterConfiguration;
|
|
79971
|
+
};
|
|
79972
|
+
/**
|
|
79973
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.AuthorizationConfiguration`.
|
|
79974
|
+
* Authorization configuration for the security configuration.
|
|
79975
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authorizationconfiguration.html}
|
|
79976
|
+
*/
|
|
79977
|
+
export type EMRContainersSecurityConfigurationAuthorizationConfiguration = {
|
|
79978
|
+
/**
|
|
79979
|
+
* Lake Formation configuration.
|
|
79980
|
+
*/
|
|
79981
|
+
LakeFormationConfiguration?: EMRContainersSecurityConfigurationLakeFormationConfiguration;
|
|
79982
|
+
};
|
|
79983
|
+
/**
|
|
79984
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.ContainerInfo`.
|
|
79985
|
+
* Container information.
|
|
79986
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerinfo.html}
|
|
79987
|
+
*/
|
|
79988
|
+
export type EMRContainersSecurityConfigurationContainerInfo = {
|
|
79989
|
+
/**
|
|
79990
|
+
* EKS information.
|
|
79991
|
+
*/
|
|
79992
|
+
EksInfo?: EMRContainersSecurityConfigurationEksInfo;
|
|
79993
|
+
};
|
|
79994
|
+
/**
|
|
79995
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.ContainerProvider`.
|
|
79996
|
+
* Container provider information.
|
|
79997
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html}
|
|
79998
|
+
*/
|
|
79999
|
+
export type EMRContainersSecurityConfigurationContainerProvider = {
|
|
80000
|
+
/**
|
|
80001
|
+
* The container provider ID.
|
|
80002
|
+
*/
|
|
80003
|
+
Id: string;
|
|
80004
|
+
/**
|
|
80005
|
+
* Container information.
|
|
80006
|
+
*/
|
|
80007
|
+
Info?: EMRContainersSecurityConfigurationContainerInfo;
|
|
80008
|
+
/**
|
|
80009
|
+
* The container provider type.
|
|
80010
|
+
*/
|
|
80011
|
+
Type: "EKS";
|
|
80012
|
+
};
|
|
80013
|
+
/**
|
|
80014
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.EksInfo`.
|
|
80015
|
+
* EKS information.
|
|
80016
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-eksinfo.html}
|
|
80017
|
+
*/
|
|
80018
|
+
export type EMRContainersSecurityConfigurationEksInfo = {
|
|
80019
|
+
/**
|
|
80020
|
+
* The EKS namespace.
|
|
80021
|
+
*/
|
|
80022
|
+
Namespace?: string;
|
|
80023
|
+
};
|
|
80024
|
+
/**
|
|
80025
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.EncryptionConfiguration`.
|
|
80026
|
+
* Encryption configuration for the security configuration.
|
|
80027
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-encryptionconfiguration.html}
|
|
80028
|
+
*/
|
|
80029
|
+
export type EMRContainersSecurityConfigurationEncryptionConfiguration = {
|
|
80030
|
+
/**
|
|
80031
|
+
* At-rest encryption configuration.
|
|
80032
|
+
*/
|
|
80033
|
+
AtRestEncryptionConfiguration?: EMRContainersSecurityConfigurationAtRestEncryptionConfiguration;
|
|
80034
|
+
/**
|
|
80035
|
+
* In-transit encryption configuration.
|
|
80036
|
+
*/
|
|
80037
|
+
InTransitEncryptionConfiguration?: EMRContainersSecurityConfigurationInTransitEncryptionConfiguration;
|
|
80038
|
+
};
|
|
80039
|
+
/**
|
|
80040
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.IAMConfiguration`.
|
|
80041
|
+
* IAM configuration.
|
|
80042
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-iamconfiguration.html}
|
|
80043
|
+
*/
|
|
80044
|
+
export type EMRContainersSecurityConfigurationIAMConfiguration = {
|
|
80045
|
+
/**
|
|
80046
|
+
* The system role ARN.
|
|
80047
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):iam::\d{12}:role/.+$`
|
|
80048
|
+
*/
|
|
80049
|
+
SystemRole?: string;
|
|
80050
|
+
};
|
|
80051
|
+
/**
|
|
80052
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.IdentityCenterConfiguration`.
|
|
80053
|
+
* Identity Center configuration.
|
|
80054
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html}
|
|
80055
|
+
*/
|
|
80056
|
+
export type EMRContainersSecurityConfigurationIdentityCenterConfiguration = {
|
|
80057
|
+
/**
|
|
80058
|
+
* Whether to enable Identity Center integration.
|
|
80059
|
+
*/
|
|
80060
|
+
EnableIdentityCenter?: boolean;
|
|
80061
|
+
/**
|
|
80062
|
+
* Whether Identity Center application assignment is required.
|
|
80063
|
+
*/
|
|
80064
|
+
IdentityCenterApplicationAssignmentRequired?: boolean;
|
|
80065
|
+
/**
|
|
80066
|
+
* The ARN of the Identity Center instance.
|
|
80067
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
|
|
80068
|
+
*/
|
|
80069
|
+
IdentityCenterInstanceARN?: string;
|
|
80070
|
+
};
|
|
80071
|
+
/**
|
|
80072
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.InTransitEncryptionConfiguration`.
|
|
80073
|
+
* In-transit encryption configuration.
|
|
80074
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-intransitencryptionconfiguration.html}
|
|
80075
|
+
*/
|
|
80076
|
+
export type EMRContainersSecurityConfigurationInTransitEncryptionConfiguration = {
|
|
80077
|
+
/**
|
|
80078
|
+
* TLS certificate configuration for in-transit encryption.
|
|
80079
|
+
*/
|
|
80080
|
+
TLSCertificateConfiguration?: EMRContainersSecurityConfigurationTLSCertificateConfiguration;
|
|
80081
|
+
};
|
|
80082
|
+
/**
|
|
80083
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.LakeFormationConfiguration`.
|
|
80084
|
+
* Lake Formation configuration.
|
|
80085
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html}
|
|
80086
|
+
*/
|
|
80087
|
+
export type EMRContainersSecurityConfigurationLakeFormationConfiguration = {
|
|
80088
|
+
/**
|
|
80089
|
+
* The session tag to authorize Lake Formation access.
|
|
80090
|
+
* @minLength `1`
|
|
80091
|
+
* @maxLength `256`
|
|
80092
|
+
*/
|
|
80093
|
+
AuthorizedSessionTagValue?: string;
|
|
80094
|
+
/**
|
|
80095
|
+
* Whether query access control is enabled.
|
|
80096
|
+
*/
|
|
80097
|
+
QueryAccessControlEnabled?: boolean;
|
|
80098
|
+
/**
|
|
80099
|
+
* The ARN of the query engine role.
|
|
80100
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):iam::\d{12}:role/.+$`
|
|
80101
|
+
*/
|
|
80102
|
+
QueryEngineRoleArn?: string;
|
|
80103
|
+
/**
|
|
80104
|
+
* Secure namespace information for Lake Formation.
|
|
80105
|
+
*/
|
|
80106
|
+
SecureNamespaceInfo?: EMRContainersSecurityConfigurationSecureNamespaceInfo;
|
|
80107
|
+
};
|
|
80108
|
+
/**
|
|
80109
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.LocalDiskEncryptionConfiguration`.
|
|
80110
|
+
* Local disk encryption configuration.
|
|
80111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-localdiskencryptionconfiguration.html}
|
|
80112
|
+
*/
|
|
80113
|
+
export type EMRContainersSecurityConfigurationLocalDiskEncryptionConfiguration = {
|
|
80114
|
+
/**
|
|
80115
|
+
* The AWS KMS key ID.
|
|
80116
|
+
*/
|
|
80117
|
+
AwsKmsKeyId?: string;
|
|
80118
|
+
/**
|
|
80119
|
+
* The encryption key provider type.
|
|
80120
|
+
*/
|
|
80121
|
+
EncryptionKeyProviderType?: "AwsKms";
|
|
80122
|
+
};
|
|
80123
|
+
/**
|
|
80124
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.S3EncryptionConfiguration`.
|
|
80125
|
+
* S3 encryption configuration.
|
|
80126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-s3encryptionconfiguration.html}
|
|
80127
|
+
*/
|
|
80128
|
+
export type EMRContainersSecurityConfigurationS3EncryptionConfiguration = {
|
|
80129
|
+
/**
|
|
80130
|
+
* The S3 encryption option.
|
|
80131
|
+
*/
|
|
80132
|
+
EncryptionOption?: "SSE-S3" | "SSE-KMS" | "CSE-KMS";
|
|
80133
|
+
/**
|
|
80134
|
+
* The KMS key ID for encryption.
|
|
80135
|
+
*/
|
|
80136
|
+
KMSKeyId?: string;
|
|
80137
|
+
};
|
|
80138
|
+
/**
|
|
80139
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.SecureNamespaceInfo`.
|
|
80140
|
+
* Secure namespace information for Lake Formation.
|
|
80141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securenamespaceinfo.html}
|
|
80142
|
+
*/
|
|
80143
|
+
export type EMRContainersSecurityConfigurationSecureNamespaceInfo = {
|
|
80144
|
+
/**
|
|
80145
|
+
* The ID of the cluster.
|
|
80146
|
+
* @minLength `1`
|
|
80147
|
+
* @maxLength `100`
|
|
80148
|
+
*/
|
|
80149
|
+
ClusterId?: string;
|
|
80150
|
+
/**
|
|
80151
|
+
* The namespace.
|
|
80152
|
+
* @minLength `1`
|
|
80153
|
+
* @maxLength `63`
|
|
80154
|
+
*/
|
|
80155
|
+
Namespace?: string;
|
|
80156
|
+
};
|
|
80157
|
+
/**
|
|
80158
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.SecurityConfigurationData`.
|
|
80159
|
+
* Security configuration data containing encryption and authorization settings.
|
|
80160
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html}
|
|
80161
|
+
*/
|
|
80162
|
+
export type EMRContainersSecurityConfigurationSecurityConfigurationData = {
|
|
80163
|
+
/**
|
|
80164
|
+
* Authentication configuration for the security configuration.
|
|
80165
|
+
*/
|
|
80166
|
+
AuthenticationConfiguration?: EMRContainersSecurityConfigurationAuthenticationConfiguration;
|
|
80167
|
+
/**
|
|
80168
|
+
* Authorization configuration for the security configuration.
|
|
80169
|
+
*/
|
|
80170
|
+
AuthorizationConfiguration?: EMRContainersSecurityConfigurationAuthorizationConfiguration;
|
|
80171
|
+
/**
|
|
80172
|
+
* Encryption configuration for the security configuration.
|
|
80173
|
+
*/
|
|
80174
|
+
EncryptionConfiguration?: EMRContainersSecurityConfigurationEncryptionConfiguration;
|
|
80175
|
+
};
|
|
80176
|
+
/**
|
|
80177
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.Tag`.
|
|
80178
|
+
* An arbitrary set of tags (key-value pairs) for this security configuration.
|
|
80179
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tag.html}
|
|
80180
|
+
*/
|
|
80181
|
+
export type EMRContainersSecurityConfigurationTag = {
|
|
80182
|
+
/**
|
|
80183
|
+
* The key name of the tag.
|
|
80184
|
+
*/
|
|
80185
|
+
Key: string;
|
|
80186
|
+
/**
|
|
80187
|
+
* The value for the tag.
|
|
80188
|
+
*/
|
|
80189
|
+
Value: string;
|
|
80190
|
+
};
|
|
80191
|
+
/**
|
|
80192
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.TLSCertificateConfiguration`.
|
|
80193
|
+
* TLS certificate configuration for in-transit encryption.
|
|
80194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html}
|
|
80195
|
+
*/
|
|
80196
|
+
export type EMRContainersSecurityConfigurationTLSCertificateConfiguration = {
|
|
80197
|
+
/**
|
|
80198
|
+
* The certificate provider type.
|
|
80199
|
+
*/
|
|
80200
|
+
CertificateProviderType?: "PEM";
|
|
80201
|
+
/**
|
|
80202
|
+
* The ARN of the secret containing the private key.
|
|
80203
|
+
*/
|
|
80204
|
+
PrivateKeySecretArn?: string;
|
|
80205
|
+
/**
|
|
80206
|
+
* The ARN of the secret containing the public key.
|
|
80207
|
+
*/
|
|
80208
|
+
PublicKeySecretArn?: string;
|
|
80209
|
+
};
|
|
79672
80210
|
/**
|
|
79673
80211
|
* Resource Schema of AWS::EMRContainers::VirtualCluster Type
|
|
79674
80212
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-virtualcluster.html}
|
|
@@ -123841,6 +124379,7 @@ export type MediaLiveChannelProps = {
|
|
|
123841
124379
|
EncoderSettings?: MediaLiveChannelEncoderSettings;
|
|
123842
124380
|
InputAttachments?: MediaLiveChannelInputAttachment[];
|
|
123843
124381
|
InputSpecification?: MediaLiveChannelInputSpecification;
|
|
124382
|
+
LinkedChannelSettings?: MediaLiveChannelLinkedChannelSettings;
|
|
123844
124383
|
LogLevel?: string;
|
|
123845
124384
|
Maintenance?: MediaLiveChannelMaintenanceCreateSettings;
|
|
123846
124385
|
Name?: string;
|
|
@@ -124574,6 +125113,14 @@ export type MediaLiveChannelFmp4HlsSettings = {
|
|
|
124574
125113
|
NielsenId3Behavior?: string;
|
|
124575
125114
|
TimedMetadataBehavior?: string;
|
|
124576
125115
|
};
|
|
125116
|
+
/**
|
|
125117
|
+
* Type definition for `AWS::MediaLive::Channel.FollowerChannelSettings`.
|
|
125118
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-followerchannelsettings.html}
|
|
125119
|
+
*/
|
|
125120
|
+
export type MediaLiveChannelFollowerChannelSettings = {
|
|
125121
|
+
LinkedChannelType?: string;
|
|
125122
|
+
PrimaryChannelArn?: string;
|
|
125123
|
+
};
|
|
124577
125124
|
/**
|
|
124578
125125
|
* Type definition for `AWS::MediaLive::Channel.FrameCaptureCdnSettings`.
|
|
124579
125126
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-framecapturecdnsettings.html}
|
|
@@ -125005,6 +125552,14 @@ export type MediaLiveChannelInputSpecification = {
|
|
|
125005
125552
|
export type MediaLiveChannelKeyProviderSettings = {
|
|
125006
125553
|
StaticKeySettings?: MediaLiveChannelStaticKeySettings;
|
|
125007
125554
|
};
|
|
125555
|
+
/**
|
|
125556
|
+
* Type definition for `AWS::MediaLive::Channel.LinkedChannelSettings`.
|
|
125557
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-linkedchannelsettings.html}
|
|
125558
|
+
*/
|
|
125559
|
+
export type MediaLiveChannelLinkedChannelSettings = {
|
|
125560
|
+
FollowerChannelSettings?: MediaLiveChannelFollowerChannelSettings;
|
|
125561
|
+
PrimaryChannelSettings?: MediaLiveChannelPrimaryChannelSettings;
|
|
125562
|
+
};
|
|
125008
125563
|
/**
|
|
125009
125564
|
* Type definition for `AWS::MediaLive::Channel.M2tsSettings`.
|
|
125010
125565
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-m2tssettings.html}
|
|
@@ -125426,7 +125981,16 @@ export type MediaLiveChannelPassThroughSettings = Record<string, any>;
|
|
|
125426
125981
|
* Type definition for `AWS::MediaLive::Channel.PipelineLockingSettings`.
|
|
125427
125982
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-pipelinelockingsettings.html}
|
|
125428
125983
|
*/
|
|
125429
|
-
export type MediaLiveChannelPipelineLockingSettings =
|
|
125984
|
+
export type MediaLiveChannelPipelineLockingSettings = {
|
|
125985
|
+
PipelineLockingMethod?: string;
|
|
125986
|
+
};
|
|
125987
|
+
/**
|
|
125988
|
+
* Type definition for `AWS::MediaLive::Channel.PrimaryChannelSettings`.
|
|
125989
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-primarychannelsettings.html}
|
|
125990
|
+
*/
|
|
125991
|
+
export type MediaLiveChannelPrimaryChannelSettings = {
|
|
125992
|
+
LinkedChannelType?: string;
|
|
125993
|
+
};
|
|
125430
125994
|
/**
|
|
125431
125995
|
* Type definition for `AWS::MediaLive::Channel.RawSettings`.
|
|
125432
125996
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-rawsettings.html}
|
|
@@ -138743,11 +139307,19 @@ export type OpenSearchServerlessAccessPolicyAccessPolicyType = "data";
|
|
|
138743
139307
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html}
|
|
138744
139308
|
*/
|
|
138745
139309
|
export type OpenSearchServerlessCollectionProps = {
|
|
139310
|
+
/**
|
|
139311
|
+
* The name of the collection group to associate with the collection.
|
|
139312
|
+
*/
|
|
139313
|
+
CollectionGroupName?: string;
|
|
138746
139314
|
/**
|
|
138747
139315
|
* The description of the collection
|
|
138748
139316
|
* @maxLength `1000`
|
|
138749
139317
|
*/
|
|
138750
139318
|
Description?: string;
|
|
139319
|
+
/**
|
|
139320
|
+
* Encryption settings for the collection
|
|
139321
|
+
*/
|
|
139322
|
+
EncryptionConfig?: OpenSearchServerlessCollectionEncryptionConfig;
|
|
138751
139323
|
/**
|
|
138752
139324
|
* The name of the collection.
|
|
138753
139325
|
|
|
@@ -138801,7 +139373,7 @@ export type OpenSearchServerlessCollectionAttributes = {
|
|
|
138801
139373
|
*/
|
|
138802
139374
|
Id: string;
|
|
138803
139375
|
/**
|
|
138804
|
-
*
|
|
139376
|
+
* Key Management Service key used to encrypt the collection.
|
|
138805
139377
|
*/
|
|
138806
139378
|
KmsKeyArn: string;
|
|
138807
139379
|
};
|
|
@@ -138811,6 +139383,21 @@ export type OpenSearchServerlessCollectionAttributes = {
|
|
|
138811
139383
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-collectiontype.html}
|
|
138812
139384
|
*/
|
|
138813
139385
|
export type OpenSearchServerlessCollectionCollectionType = "SEARCH" | "TIMESERIES" | "VECTORSEARCH";
|
|
139386
|
+
/**
|
|
139387
|
+
* Type definition for `AWS::OpenSearchServerless::Collection.EncryptionConfig`.
|
|
139388
|
+
* Encryption settings for the collection
|
|
139389
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html}
|
|
139390
|
+
*/
|
|
139391
|
+
export type OpenSearchServerlessCollectionEncryptionConfig = {
|
|
139392
|
+
/**
|
|
139393
|
+
* Indicates whether to use an AWS owned key for encryption.
|
|
139394
|
+
*/
|
|
139395
|
+
AWSOwnedKey?: boolean;
|
|
139396
|
+
/**
|
|
139397
|
+
* Key Management Service key used to encrypt the collection.
|
|
139398
|
+
*/
|
|
139399
|
+
KmsKeyArn?: string;
|
|
139400
|
+
};
|
|
138814
139401
|
/**
|
|
138815
139402
|
* Type definition for `AWS::OpenSearchServerless::Collection.StandbyReplicas`.
|
|
138816
139403
|
* The possible standby replicas for the collection
|
|
@@ -140324,9 +140911,9 @@ export type OrganizationsPolicyProps = {
|
|
|
140324
140911
|
*/
|
|
140325
140912
|
TargetIds?: string[];
|
|
140326
140913
|
/**
|
|
140327
|
-
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY,
|
|
140914
|
+
* The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, BEDROCK_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, INSPECTOR_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY, RESOURCE_CONTROL_POLICY, S3_POLICY, SECURITYHUB_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, UPGRADE_ROLLOUT_POLICY
|
|
140328
140915
|
*/
|
|
140329
|
-
Type: "
|
|
140916
|
+
Type: "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "BEDROCK_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "INSPECTOR_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "RESOURCE_CONTROL_POLICY" | "S3_POLICY" | "SECURITYHUB_POLICY" | "SERVICE_CONTROL_POLICY" | "TAG_POLICY" | "UPGRADE_ROLLOUT_POLICY";
|
|
140330
140917
|
};
|
|
140331
140918
|
/**
|
|
140332
140919
|
* Attribute type definition for `AWS::Organizations::Policy`.
|
|
@@ -222710,6 +223297,8 @@ export interface ResourceTypes {
|
|
|
222710
223297
|
"AWS::EMR::Studio": EMRStudioProps;
|
|
222711
223298
|
"AWS::EMR::StudioSessionMapping": EMRStudioSessionMappingProps;
|
|
222712
223299
|
"AWS::EMR::WALWorkspace": EMRWALWorkspaceProps;
|
|
223300
|
+
"AWS::EMRContainers::Endpoint": EMRContainersEndpointProps;
|
|
223301
|
+
"AWS::EMRContainers::SecurityConfiguration": EMRContainersSecurityConfigurationProps;
|
|
222713
223302
|
"AWS::EMRContainers::VirtualCluster": EMRContainersVirtualClusterProps;
|
|
222714
223303
|
"AWS::EMRServerless::Application": EMRServerlessApplicationProps;
|
|
222715
223304
|
"AWS::EntityResolution::IdMappingWorkflow": EntityResolutionIdMappingWorkflowProps;
|
|
@@ -224152,6 +224741,8 @@ export interface AttributeTypes {
|
|
|
224152
224741
|
"AWS::EMR::InstanceGroupConfig": EMRInstanceGroupConfigAttributes;
|
|
224153
224742
|
"AWS::EMR::Step": EMRStepAttributes;
|
|
224154
224743
|
"AWS::EMR::Studio": EMRStudioAttributes;
|
|
224744
|
+
"AWS::EMRContainers::Endpoint": EMRContainersEndpointAttributes;
|
|
224745
|
+
"AWS::EMRContainers::SecurityConfiguration": EMRContainersSecurityConfigurationAttributes;
|
|
224155
224746
|
"AWS::EMRContainers::VirtualCluster": EMRContainersVirtualClusterAttributes;
|
|
224156
224747
|
"AWS::EMRServerless::Application": EMRServerlessApplicationAttributes;
|
|
224157
224748
|
"AWS::EntityResolution::IdMappingWorkflow": EntityResolutionIdMappingWorkflowAttributes;
|
|
@@ -225556,6 +226147,8 @@ export declare const ResourceType: {
|
|
|
225556
226147
|
readonly EMRStudio: "AWS::EMR::Studio";
|
|
225557
226148
|
readonly EMRStudioSessionMapping: "AWS::EMR::StudioSessionMapping";
|
|
225558
226149
|
readonly EMRWALWorkspace: "AWS::EMR::WALWorkspace";
|
|
226150
|
+
readonly EMRContainersEndpoint: "AWS::EMRContainers::Endpoint";
|
|
226151
|
+
readonly EMRContainersSecurityConfiguration: "AWS::EMRContainers::SecurityConfiguration";
|
|
225559
226152
|
readonly EMRContainersVirtualCluster: "AWS::EMRContainers::VirtualCluster";
|
|
225560
226153
|
readonly EMRServerlessApplication: "AWS::EMRServerless::Application";
|
|
225561
226154
|
readonly EntityResolutionIdMappingWorkflow: "AWS::EntityResolution::IdMappingWorkflow";
|