@awboost/cfntypes 0.100.358 → 0.100.359

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.
@@ -26993,6 +26993,11 @@ export type BedrockAgentCoreGatewayProps = {
26993
26993
  */
26994
26994
  Description?: string;
26995
26995
  ExceptionLevel?: BedrockAgentCoreGatewayExceptionLevel;
26996
+ /**
26997
+ * @minLength `1`
26998
+ * @maxLength `2`
26999
+ */
27000
+ InterceptorConfigurations?: BedrockAgentCoreGatewayGatewayInterceptorConfiguration[];
26996
27001
  /**
26997
27002
  * @minLength `1`
26998
27003
  * @maxLength `2048`
@@ -27057,7 +27062,7 @@ export type BedrockAgentCoreGatewayAuthorizerConfiguration = {
27057
27062
  * Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerType`.
27058
27063
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizertype.html}
27059
27064
  */
27060
- export type BedrockAgentCoreGatewayAuthorizerType = "CUSTOM_JWT" | "AWS_IAM";
27065
+ export type BedrockAgentCoreGatewayAuthorizerType = "CUSTOM_JWT" | "AWS_IAM" | "NONE";
27061
27066
  /**
27062
27067
  * Type definition for `AWS::BedrockAgentCore::Gateway.CustomJWTAuthorizerConfiguration`.
27063
27068
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html}
@@ -27081,6 +27086,24 @@ export type BedrockAgentCoreGatewayCustomJWTAuthorizerConfiguration = {
27081
27086
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-exceptionlevel.html}
27082
27087
  */
27083
27088
  export type BedrockAgentCoreGatewayExceptionLevel = "DEBUG";
27089
+ /**
27090
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptionPoint`.
27091
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptionpoint.html}
27092
+ */
27093
+ export type BedrockAgentCoreGatewayGatewayInterceptionPoint = "REQUEST" | "RESPONSE";
27094
+ /**
27095
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptorConfiguration`.
27096
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptorconfiguration.html}
27097
+ */
27098
+ export type BedrockAgentCoreGatewayGatewayInterceptorConfiguration = {
27099
+ InputConfiguration?: BedrockAgentCoreGatewayInterceptorInputConfiguration;
27100
+ /**
27101
+ * @minLength `1`
27102
+ * @maxLength `2`
27103
+ */
27104
+ InterceptionPoints: BedrockAgentCoreGatewayGatewayInterceptionPoint[];
27105
+ Interceptor: BedrockAgentCoreGatewayInterceptorConfiguration;
27106
+ };
27084
27107
  /**
27085
27108
  * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolConfiguration`.
27086
27109
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocolconfiguration.html}
@@ -27098,6 +27121,32 @@ export type BedrockAgentCoreGatewayGatewayProtocolType = "MCP";
27098
27121
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewaystatus.html}
27099
27122
  */
27100
27123
  export type BedrockAgentCoreGatewayGatewayStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
27124
+ /**
27125
+ * Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorConfiguration`.
27126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorconfiguration.html}
27127
+ */
27128
+ export type BedrockAgentCoreGatewayInterceptorConfiguration = {
27129
+ Lambda: BedrockAgentCoreGatewayLambdaInterceptorConfiguration;
27130
+ };
27131
+ /**
27132
+ * Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorInputConfiguration`.
27133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorinputconfiguration.html}
27134
+ */
27135
+ export type BedrockAgentCoreGatewayInterceptorInputConfiguration = {
27136
+ PassRequestHeaders: boolean;
27137
+ };
27138
+ /**
27139
+ * Type definition for `AWS::BedrockAgentCore::Gateway.LambdaInterceptorConfiguration`.
27140
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-lambdainterceptorconfiguration.html}
27141
+ */
27142
+ export type BedrockAgentCoreGatewayLambdaInterceptorConfiguration = {
27143
+ /**
27144
+ * @minLength `1`
27145
+ * @maxLength `170`
27146
+ * @pattern `^arn:(aws[a-zA-Z-]*)?:lambda:([a-z]{2}(-gov)?-[a-z]+-\d{1}):(\d{12}):function:([a-zA-Z0-9-_.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
27147
+ */
27148
+ Arn: string;
27149
+ };
27101
27150
  /**
27102
27151
  * Type definition for `AWS::BedrockAgentCore::Gateway.MCPGatewayConfiguration`.
27103
27152
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-mcpgatewayconfiguration.html}
@@ -64676,22 +64725,26 @@ export type EC2NetworkInterfaceTag = {
64676
64725
  Value: string;
64677
64726
  };
64678
64727
  /**
64679
- * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
64728
+ * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
64729
+ * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
64680
64730
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
64681
64731
  */
64682
64732
  export type EC2NetworkInterfaceAttachmentProps = {
64683
64733
  /**
64684
- * Whether to delete the network interface when the instance terminates. By default, this value is set to true.
64734
+ * Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
64685
64735
  */
64686
64736
  DeleteOnTermination?: boolean;
64687
64737
  /**
64688
- * The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
64738
+ * The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
64689
64739
  */
64690
64740
  DeviceIndex: string;
64691
64741
  /**
64692
- * The number of ENA queues to be created with the instance.
64742
+ * The number of ENA queues created with the instance.
64693
64743
  */
64694
64744
  EnaQueueCount?: number;
64745
+ /**
64746
+ * Configures ENA Express for the network interface that this action attaches to the instance.
64747
+ */
64695
64748
  EnaSrdSpecification?: EC2NetworkInterfaceAttachmentEnaSrdSpecification;
64696
64749
  /**
64697
64750
  * The ID of the instance to which you will attach the ENI.
@@ -64707,17 +64760,22 @@ export type EC2NetworkInterfaceAttachmentProps = {
64707
64760
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
64708
64761
  */
64709
64762
  export type EC2NetworkInterfaceAttachmentAttributes = {
64710
- /**
64711
- * The ID of the network interface attachment.
64712
- */
64713
64763
  AttachmentId: string;
64714
64764
  };
64715
64765
  /**
64716
64766
  * Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
64767
+ * ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
64768
+ To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
64717
64769
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
64718
64770
  */
64719
64771
  export type EC2NetworkInterfaceAttachmentEnaSrdSpecification = {
64772
+ /**
64773
+ * Indicates whether ENA Express is enabled for the network interface.
64774
+ */
64720
64775
  EnaSrdEnabled?: boolean;
64776
+ /**
64777
+ * Configures ENA Express for UDP network traffic.
64778
+ */
64721
64779
  EnaSrdUdpSpecification?: {
64722
64780
  EnaSrdUdpEnabled?: boolean;
64723
64781
  };
@@ -69779,7 +69837,7 @@ export type ECRSigningConfigurationRepositoryFilter = {
69779
69837
  * Repository name pattern (supports '*' wildcard).
69780
69838
  * @minLength `1`
69781
69839
  * @maxLength `256`
69782
- * @pattern `^(?=.{1,256}$)(?:[a-z0-9*]+(?:[._-][a-z0-9*]*)/‍*)*[a-z0-9*]*(?:[._-][a-z0-9*]*)*$`
69840
+ * @pattern `^(?:[a-z0-9*]+(?:[._-][a-z0-9*]+)/‍*)*[a-z0-9*]+(?:[._-][a-z0-9*]+)*$`
69783
69841
  */
69784
69842
  Filter: string;
69785
69843
  /**
@@ -70919,6 +70977,8 @@ export type ECSServiceDeploymentConfiguration = {
70919
70977
  * The deployment strategy for the service. Choose from these valid values:
70920
70978
  + ``ROLLING`` - When you create a service which uses the rolling update (``ROLLING``) deployment strategy, the Amazon ECS service scheduler replaces the currently running tasks with new tasks. The number of tasks that Amazon ECS adds or removes from the service during a rolling update is controlled by the service deployment configuration.
70921
70979
  + ``BLUE_GREEN`` - A blue/green deployment strategy (``BLUE_GREEN``) is a release methodology that reduces downtime and risk by running two identical production environments called blue and green. With Amazon ECS blue/green deployments, you can validate new service revisions before directing production traffic to them. This approach provides a safer way to deploy changes with the ability to quickly roll back if needed.
70980
+ + ``LINEAR`` - A *linear* deployment strategy (``LINEAR``) gradually shifts traffic from the current production environment to a new environment in equal percentages over time. With Amazon ECS linear deployments, you can control the pace of traffic shifting and validate new service revisions with increasing amounts of production traffic.
70981
+ + ``CANARY`` - A *canary* deployment strategy (``CANARY``) shifts a small percentage of traffic to the new service revision first, then shifts the remaining traffic all at once after a specified time period. This allows you to test the new version with a subset of users before full deployment.
70922
70982
  */
70923
70983
  Strategy?: "ROLLING" | "BLUE_GREEN" | "LINEAR" | "CANARY";
70924
70984
  };
@@ -89874,6 +89934,468 @@ export type GroundStationDataflowEndpointGroupTag = {
89874
89934
  */
89875
89935
  Value: string;
89876
89936
  };
89937
+ /**
89938
+ * Resource type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
89939
+ * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
89940
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html}
89941
+ */
89942
+ export type GroundStationDataflowEndpointGroupV2Props = {
89943
+ /**
89944
+ * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
89945
+ * @min `30`
89946
+ * @max `480`
89947
+ */
89948
+ ContactPostPassDurationSeconds?: number;
89949
+ /**
89950
+ * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
89951
+ * @min `30`
89952
+ * @max `480`
89953
+ */
89954
+ ContactPrePassDurationSeconds?: number;
89955
+ /**
89956
+ * @minLength `1`
89957
+ */
89958
+ Endpoints?: GroundStationDataflowEndpointGroupV2CreateEndpointDetails[];
89959
+ Tags?: GroundStationDataflowEndpointGroupV2Tag[];
89960
+ };
89961
+ /**
89962
+ * Attribute type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
89963
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html#aws-resource-groundstation-dataflowendpointgroupv2-return-values}
89964
+ */
89965
+ export type GroundStationDataflowEndpointGroupV2Attributes = {
89966
+ /**
89967
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
89968
+ */
89969
+ Arn: string;
89970
+ /**
89971
+ * @minLength `1`
89972
+ */
89973
+ EndpointDetails: {
89974
+ /**
89975
+ * Information about DownlinkAwsGroundStationAgentEndpoint
89976
+ */
89977
+ DownlinkAwsGroundStationAgentEndpoint: {
89978
+ /**
89979
+ * The status of AgentEndpoint.
89980
+ */
89981
+ AgentStatus: GroundStationDataflowEndpointGroupV2AgentStatus;
89982
+ /**
89983
+ * The results of the audit.
89984
+ */
89985
+ AuditResults: GroundStationDataflowEndpointGroupV2AuditResults;
89986
+ /**
89987
+ * Dataflow details for downlink
89988
+ */
89989
+ DataflowDetails: {
89990
+ /**
89991
+ * Connection details for downlink, from ground station to agent, and customer to agent
89992
+ */
89993
+ AgentConnectionDetails: {
89994
+ /**
89995
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
89996
+ */
89997
+ AgentIpAndPortAddress: {
89998
+ /**
89999
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90000
+ * @min `1400`
90001
+ * @max `1500`
90002
+ */
90003
+ Mtu: number;
90004
+ /**
90005
+ * A socket address with a port range.
90006
+ */
90007
+ SocketAddress: {
90008
+ /**
90009
+ * IPv4 socket address.
90010
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
90011
+ */
90012
+ Name: string;
90013
+ /**
90014
+ * Port range of a socket address.
90015
+ */
90016
+ PortRange: {
90017
+ /**
90018
+ * A maximum value.
90019
+ */
90020
+ Maximum: number;
90021
+ /**
90022
+ * A minimum value.
90023
+ */
90024
+ Minimum: number;
90025
+ };
90026
+ };
90027
+ };
90028
+ /**
90029
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90030
+ */
90031
+ EgressAddressAndPort: {
90032
+ /**
90033
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90034
+ * @min `1400`
90035
+ * @max `1500`
90036
+ */
90037
+ Mtu: number;
90038
+ SocketAddress: {
90039
+ /**
90040
+ * IPv4 socket address.
90041
+ */
90042
+ Name: string;
90043
+ /**
90044
+ * Port of a socket address.
90045
+ */
90046
+ Port: number;
90047
+ };
90048
+ };
90049
+ };
90050
+ };
90051
+ /**
90052
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90053
+ */
90054
+ Name: string;
90055
+ };
90056
+ /**
90057
+ * Information about UplinkAwsGroundStationAgentEndpoint
90058
+ */
90059
+ UplinkAwsGroundStationAgentEndpoint: {
90060
+ /**
90061
+ * The status of AgentEndpoint.
90062
+ */
90063
+ AgentStatus: GroundStationDataflowEndpointGroupV2AgentStatus;
90064
+ /**
90065
+ * The results of the audit.
90066
+ */
90067
+ AuditResults: GroundStationDataflowEndpointGroupV2AuditResults;
90068
+ /**
90069
+ * Dataflow details for uplink
90070
+ */
90071
+ DataflowDetails: {
90072
+ /**
90073
+ * Connection details for uplink, from ground station to agent, and customer to agent
90074
+ */
90075
+ AgentConnectionDetails: {
90076
+ /**
90077
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
90078
+ */
90079
+ AgentIpAndPortAddress: {
90080
+ /**
90081
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90082
+ * @min `1400`
90083
+ * @max `1500`
90084
+ */
90085
+ Mtu: number;
90086
+ /**
90087
+ * A socket address with a port range.
90088
+ */
90089
+ SocketAddress: {
90090
+ /**
90091
+ * IPv4 socket address.
90092
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
90093
+ */
90094
+ Name: string;
90095
+ /**
90096
+ * Port range of a socket address.
90097
+ */
90098
+ PortRange: {
90099
+ /**
90100
+ * A maximum value.
90101
+ */
90102
+ Maximum: number;
90103
+ /**
90104
+ * A minimum value.
90105
+ */
90106
+ Minimum: number;
90107
+ };
90108
+ };
90109
+ };
90110
+ /**
90111
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90112
+ */
90113
+ IngressAddressAndPort: {
90114
+ /**
90115
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90116
+ * @min `1400`
90117
+ * @max `1500`
90118
+ */
90119
+ Mtu: number;
90120
+ SocketAddress: {
90121
+ /**
90122
+ * IPv4 socket address.
90123
+ */
90124
+ Name: string;
90125
+ /**
90126
+ * Port of a socket address.
90127
+ */
90128
+ Port: number;
90129
+ };
90130
+ };
90131
+ };
90132
+ };
90133
+ /**
90134
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90135
+ */
90136
+ Name: string;
90137
+ };
90138
+ }[];
90139
+ Id: string;
90140
+ };
90141
+ /**
90142
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.AgentStatus`.
90143
+ * The status of AgentEndpoint.
90144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-agentstatus.html}
90145
+ */
90146
+ export type GroundStationDataflowEndpointGroupV2AgentStatus = "SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE";
90147
+ /**
90148
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.AuditResults`.
90149
+ * The results of the audit.
90150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-auditresults.html}
90151
+ */
90152
+ export type GroundStationDataflowEndpointGroupV2AuditResults = "HEALTHY" | "UNHEALTHY";
90153
+ /**
90154
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.ConnectionDetails`.
90155
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html}
90157
+ */
90158
+ export type GroundStationDataflowEndpointGroupV2ConnectionDetails = {
90159
+ /**
90160
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90161
+ * @min `1400`
90162
+ * @max `1500`
90163
+ */
90164
+ Mtu?: number;
90165
+ SocketAddress: GroundStationDataflowEndpointGroupV2SocketAddress;
90166
+ };
90167
+ /**
90168
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.CreateEndpointDetails`.
90169
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html}
90170
+ */
90171
+ export type GroundStationDataflowEndpointGroupV2CreateEndpointDetails = {
90172
+ /**
90173
+ * Information about DownlinkAwsGroundStationAgentEndpoint used for create
90174
+ */
90175
+ DownlinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpoint;
90176
+ /**
90177
+ * Information about UplinkAwsGroundStationAgentEndpoint used for create
90178
+ */
90179
+ UplinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpoint;
90180
+ };
90181
+ /**
90182
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpoint`.
90183
+ * Information about DownlinkAwsGroundStationAgentEndpoint used for create
90184
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html}
90185
+ */
90186
+ export type GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpoint = {
90187
+ /**
90188
+ * Dataflow details for downlink
90189
+ */
90190
+ DataflowDetails: GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails;
90191
+ /**
90192
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90193
+ */
90194
+ Name: string;
90195
+ };
90196
+ /**
90197
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetails`.
90198
+ * Information about DownlinkAwsGroundStationAgentEndpoint
90199
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html}
90200
+ */
90201
+ export type GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpointDetails = {
90202
+ /**
90203
+ * The status of AgentEndpoint.
90204
+ */
90205
+ AgentStatus?: GroundStationDataflowEndpointGroupV2AgentStatus;
90206
+ /**
90207
+ * The results of the audit.
90208
+ */
90209
+ AuditResults?: GroundStationDataflowEndpointGroupV2AuditResults;
90210
+ /**
90211
+ * Dataflow details for downlink
90212
+ */
90213
+ DataflowDetails: GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails;
90214
+ /**
90215
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90216
+ */
90217
+ Name: string;
90218
+ };
90219
+ /**
90220
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkConnectionDetails`.
90221
+ * Connection details for downlink, from ground station to agent, and customer to agent
90222
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html}
90223
+ */
90224
+ export type GroundStationDataflowEndpointGroupV2DownlinkConnectionDetails = {
90225
+ /**
90226
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
90227
+ */
90228
+ AgentIpAndPortAddress: GroundStationDataflowEndpointGroupV2RangedConnectionDetails;
90229
+ /**
90230
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90231
+ */
90232
+ EgressAddressAndPort: GroundStationDataflowEndpointGroupV2ConnectionDetails;
90233
+ };
90234
+ /**
90235
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkDataflowDetails`.
90236
+ * Dataflow details for downlink
90237
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails.html}
90238
+ */
90239
+ export type GroundStationDataflowEndpointGroupV2DownlinkDataflowDetails = {
90240
+ /**
90241
+ * Connection details for downlink, from ground station to agent, and customer to agent
90242
+ */
90243
+ AgentConnectionDetails?: GroundStationDataflowEndpointGroupV2DownlinkConnectionDetails;
90244
+ };
90245
+ /**
90246
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.EndpointDetails`.
90247
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-endpointdetails.html}
90248
+ */
90249
+ export type GroundStationDataflowEndpointGroupV2EndpointDetails = {
90250
+ /**
90251
+ * Information about DownlinkAwsGroundStationAgentEndpoint
90252
+ */
90253
+ DownlinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2DownlinkAwsGroundStationAgentEndpointDetails;
90254
+ /**
90255
+ * Information about UplinkAwsGroundStationAgentEndpoint
90256
+ */
90257
+ UplinkAwsGroundStationAgentEndpoint?: GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpointDetails;
90258
+ };
90259
+ /**
90260
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.IntegerRange`.
90261
+ * An integer range that has a minimum and maximum value.
90262
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-integerrange.html}
90263
+ */
90264
+ export type GroundStationDataflowEndpointGroupV2IntegerRange = {
90265
+ /**
90266
+ * A maximum value.
90267
+ */
90268
+ Maximum: number;
90269
+ /**
90270
+ * A minimum value.
90271
+ */
90272
+ Minimum: number;
90273
+ };
90274
+ /**
90275
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.RangedConnectionDetails`.
90276
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
90277
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html}
90278
+ */
90279
+ export type GroundStationDataflowEndpointGroupV2RangedConnectionDetails = {
90280
+ /**
90281
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
90282
+ * @min `1400`
90283
+ * @max `1500`
90284
+ */
90285
+ Mtu?: number;
90286
+ /**
90287
+ * A socket address with a port range.
90288
+ */
90289
+ SocketAddress: GroundStationDataflowEndpointGroupV2RangedSocketAddress;
90290
+ };
90291
+ /**
90292
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.RangedSocketAddress`.
90293
+ * A socket address with a port range.
90294
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedsocketaddress.html}
90295
+ */
90296
+ export type GroundStationDataflowEndpointGroupV2RangedSocketAddress = {
90297
+ /**
90298
+ * IPv4 socket address.
90299
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
90300
+ */
90301
+ Name: string;
90302
+ /**
90303
+ * Port range of a socket address.
90304
+ */
90305
+ PortRange: GroundStationDataflowEndpointGroupV2IntegerRange;
90306
+ };
90307
+ /**
90308
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.SocketAddress`.
90309
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html}
90310
+ */
90311
+ export type GroundStationDataflowEndpointGroupV2SocketAddress = {
90312
+ /**
90313
+ * IPv4 socket address.
90314
+ */
90315
+ Name: string;
90316
+ /**
90317
+ * Port of a socket address.
90318
+ */
90319
+ Port: number;
90320
+ };
90321
+ /**
90322
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.Tag`.
90323
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-tag.html}
90324
+ */
90325
+ export type GroundStationDataflowEndpointGroupV2Tag = {
90326
+ /**
90327
+ * @pattern `^[ a-zA-Z0-9\+\-=._:/@]{1,128}$`
90328
+ */
90329
+ Key: string;
90330
+ /**
90331
+ * @pattern `^[ a-zA-Z0-9\+\-=._:/@]{1,256}$`
90332
+ */
90333
+ Value: string;
90334
+ };
90335
+ /**
90336
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpoint`.
90337
+ * Information about UplinkAwsGroundStationAgentEndpoint used for create
90338
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html}
90339
+ */
90340
+ export type GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpoint = {
90341
+ /**
90342
+ * Dataflow details for uplink
90343
+ */
90344
+ DataflowDetails: GroundStationDataflowEndpointGroupV2UplinkDataflowDetails;
90345
+ /**
90346
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90347
+ */
90348
+ Name: string;
90349
+ };
90350
+ /**
90351
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetails`.
90352
+ * Information about UplinkAwsGroundStationAgentEndpoint
90353
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html}
90354
+ */
90355
+ export type GroundStationDataflowEndpointGroupV2UplinkAwsGroundStationAgentEndpointDetails = {
90356
+ /**
90357
+ * The status of AgentEndpoint.
90358
+ */
90359
+ AgentStatus?: GroundStationDataflowEndpointGroupV2AgentStatus;
90360
+ /**
90361
+ * The results of the audit.
90362
+ */
90363
+ AuditResults?: GroundStationDataflowEndpointGroupV2AuditResults;
90364
+ /**
90365
+ * Dataflow details for uplink
90366
+ */
90367
+ DataflowDetails: GroundStationDataflowEndpointGroupV2UplinkDataflowDetails;
90368
+ /**
90369
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
90370
+ */
90371
+ Name: string;
90372
+ };
90373
+ /**
90374
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkConnectionDetails`.
90375
+ * Connection details for uplink, from ground station to agent, and customer to agent
90376
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html}
90377
+ */
90378
+ export type GroundStationDataflowEndpointGroupV2UplinkConnectionDetails = {
90379
+ /**
90380
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
90381
+ */
90382
+ AgentIpAndPortAddress: GroundStationDataflowEndpointGroupV2RangedConnectionDetails;
90383
+ /**
90384
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
90385
+ */
90386
+ IngressAddressAndPort: GroundStationDataflowEndpointGroupV2ConnectionDetails;
90387
+ };
90388
+ /**
90389
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkDataflowDetails`.
90390
+ * Dataflow details for uplink
90391
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails.html}
90392
+ */
90393
+ export type GroundStationDataflowEndpointGroupV2UplinkDataflowDetails = {
90394
+ /**
90395
+ * Connection details for uplink, from ground station to agent, and customer to agent
90396
+ */
90397
+ AgentConnectionDetails?: GroundStationDataflowEndpointGroupV2UplinkConnectionDetails;
90398
+ };
89877
90399
  /**
89878
90400
  * Resource type definition for `AWS::GroundStation::MissionProfile`.
89879
90401
  * AWS Ground Station Mission Profile resource type for CloudFormation.
@@ -105128,6 +105650,10 @@ export type KafkaConnectConnectorProps = {
105128
105650
  * Details of what logs are delivered and where they are delivered.
105129
105651
  */
105130
105652
  LogDelivery?: KafkaConnectConnectorLogDelivery;
105653
+ /**
105654
+ * The network type of the Connector.
105655
+ */
105656
+ NetworkType?: "IPV4" | "DUAL";
105131
105657
  /**
105132
105658
  * List of plugins to use with the connector.
105133
105659
  * @minLength `1`
@@ -183530,6 +184056,9 @@ export type S3AccessPointVpcConfiguration = {
183530
184056
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html}
183531
184057
  */
183532
184058
  export type S3BucketProps = {
184059
+ /**
184060
+ * The ABAC status of the general purpose bucket. When ABAC is enabled for the general purpose bucket, you can use tags to manage access to the general purpose buckets as well as for cost tracking purposes. When ABAC is disabled for the general purpose buckets, you can only use tags for cost tracking purposes. For more information, see [Using tags with S3 general purpose buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html).
184061
+ */
183533
184062
  AbacStatus?: "Enabled" | "Disabled";
183534
184063
  /**
183535
184064
  * Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
@@ -183772,12 +184301,20 @@ export type S3BucketAnalyticsConfiguration = {
183772
184301
  };
183773
184302
  /**
183774
184303
  * Type definition for `AWS::S3::Bucket.BlockedEncryptionTypes`.
184304
+ * A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
184305
+ This data type is used with the following actions:
184306
+ + [PutBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html)
184307
+ + [GetBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html)
184308
+ + [DeleteBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html)
184309
+
184310
+ + Permissions You must have the s3:PutEncryptionConfiguration permission to block or unblock an encryption type for a bucket. You must have the s3:GetEncryptionConfiguration permission to view a bucket's encryption type.
183775
184311
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-blockedencryptiontypes.html}
183776
184312
  */
183777
184313
  export type S3BucketBlockedEncryptionTypes = {
183778
184314
  /**
183779
- * List of encryption types.
183780
- */
184315
+ * The object encryption type that you want to block or unblock for an Amazon S3 general purpose bucket.
184316
+ Currently, this parameter only supports blocking or unblocking server side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
184317
+ */
183781
184318
  EncryptionType?: ("NONE" | "SSE-C")[];
183782
184319
  };
183783
184320
  /**
@@ -184004,7 +184541,7 @@ export type S3BucketInventoryConfiguration = {
184004
184541
  /**
184005
184542
  * Contains the optional fields that are included in the inventory results.
184006
184543
  */
184007
- OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")[];
184544
+ OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")[];
184008
184545
  /**
184009
184546
  * Specifies the inventory filter prefix.
184010
184547
  */
@@ -184342,7 +184879,7 @@ export type S3BucketPartitionedPrefix = {
184342
184879
  };
184343
184880
  /**
184344
184881
  * Type definition for `AWS::S3::Bucket.PublicAccessBlockConfiguration`.
184345
- * The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
184882
+ * The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. Bucket-level settings work alongside account-level settings (which may inherit from organization-level policies). For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
184346
184883
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html}
184347
184884
  */
184348
184885
  export type S3BucketPublicAccessBlockConfiguration = {
@@ -184806,6 +185343,10 @@ export type S3BucketServerSideEncryptionByDefault = {
184806
185343
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
184807
185344
  */
184808
185345
  export type S3BucketServerSideEncryptionRule = {
185346
+ /**
185347
+ * A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
185348
+ Currently, this parameter only supports blocking or unblocking server-side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
185349
+ */
184809
185350
  BlockedEncryptionTypes?: S3BucketBlockedEncryptionTypes;
184810
185351
  /**
184811
185352
  * Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the ``BucketKeyEnabled`` element to ``true`` causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.
@@ -197451,6 +197992,9 @@ export type SecretsManagerSecretProps = {
197451
197992
  + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
197452
197993
  */
197453
197994
  Tags?: SecretsManagerSecretTag[];
197995
+ /**
197996
+ * The exact string that identifies the third-party partner that holds the external secret. For more information, see [Managed external secret partners](https://docs.aws.amazon.com/secretsmanager/latest/userguide/mes-partners.html).
197997
+ */
197454
197998
  Type?: string;
197455
197999
  };
197456
198000
  /**
@@ -203207,6 +203751,72 @@ export type SESTemplateTemplate = {
203207
203751
  */
203208
203752
  TextPart?: string;
203209
203753
  };
203754
+ /**
203755
+ * Resource Type definition for AWS::SES::Tenant
203756
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
203757
+ */
203758
+ export type SESTenantProps = {
203759
+ /**
203760
+ * The list of resources to associate with the tenant.
203761
+ * @minLength `0`
203762
+ */
203763
+ ResourceAssociations?: SESTenantResourceAssociation[];
203764
+ /**
203765
+ * The tags (keys and values) associated with the tenant.
203766
+ * @minLength `0`
203767
+ * @maxLength `50`
203768
+ */
203769
+ Tags?: SESTenantTag[];
203770
+ /**
203771
+ * The name of the tenant.
203772
+ * @minLength `1`
203773
+ * @maxLength `64`
203774
+ * @pattern `^[\w\-_]+$`
203775
+ */
203776
+ TenantName: string;
203777
+ };
203778
+ /**
203779
+ * Attribute type definition for `AWS::SES::Tenant`.
203780
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#aws-resource-ses-tenant-return-values}
203781
+ */
203782
+ export type SESTenantAttributes = {
203783
+ /**
203784
+ * Amazon Resource Name (ARN) of the tenant.
203785
+ * @minLength `1`
203786
+ */
203787
+ Arn: string;
203788
+ };
203789
+ /**
203790
+ * Type definition for `AWS::SES::Tenant.ResourceAssociation`.
203791
+ * The resource to associate with the tenant
203792
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-resourceassociation.html}
203793
+ */
203794
+ export type SESTenantResourceAssociation = {
203795
+ /**
203796
+ * The ARN of the resource to associate with the tenant
203797
+ * @minLength `1`
203798
+ */
203799
+ ResourceArn: string;
203800
+ };
203801
+ /**
203802
+ * Type definition for `AWS::SES::Tenant.Tag`.
203803
+ * An object that defines the tags (keys and values) that you want to associate with the tenant.
203804
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-tag.html}
203805
+ */
203806
+ export type SESTenantTag = {
203807
+ /**
203808
+ * The key of the key-value tag.
203809
+ * @minLength `1`
203810
+ * @maxLength `128`
203811
+ */
203812
+ Key: string;
203813
+ /**
203814
+ * The value of the key-value tag.
203815
+ * @minLength `0`
203816
+ * @maxLength `256`
203817
+ */
203818
+ Value: string;
203819
+ };
203210
203820
  /**
203211
203821
  * Resource Type definition for AWS::SES::VdmAttributes
203212
203822
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-vdmattributes.html}
@@ -204956,19 +205566,61 @@ export type SSMMaintenanceWindowTargetTargets = {
204956
205566
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html}
204957
205567
  */
204958
205568
  export type SSMMaintenanceWindowTaskProps = {
205569
+ /**
205570
+ * The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.
205571
+ */
204959
205572
  CutoffBehavior?: string;
205573
+ /**
205574
+ * A description of the task.
205575
+ */
204960
205576
  Description?: string;
205577
+ /**
205578
+ * Information about an Amazon S3 bucket to write Run Command task-level logs to.
205579
+ */
204961
205580
  LoggingInfo?: SSMMaintenanceWindowTaskLoggingInfo;
205581
+ /**
205582
+ * The maximum number of targets this task can be run for, in parallel.
205583
+ */
204962
205584
  MaxConcurrency?: string;
205585
+ /**
205586
+ * The maximum number of errors allowed before this task stops being scheduled.
205587
+ */
204963
205588
  MaxErrors?: string;
205589
+ /**
205590
+ * The task name.
205591
+ */
204964
205592
  Name?: string;
205593
+ /**
205594
+ * The priority of the task in the maintenance window. The lower the number, the higher the priority. Tasks that have the same priority are scheduled in parallel.
205595
+ */
204965
205596
  Priority: number;
205597
+ /**
205598
+ * The Amazon Resource Name (ARN) of the IAM service role for AWS Systems Manager to assume when running a maintenance window task.
205599
+ */
204966
205600
  ServiceRoleArn?: string;
205601
+ /**
205602
+ * The targets (either instances or window target ids).
205603
+ */
204967
205604
  Targets?: SSMMaintenanceWindowTaskTarget[];
205605
+ /**
205606
+ * The resource that the task uses during execution.
205607
+ */
204968
205608
  TaskArn: string;
205609
+ /**
205610
+ * The parameters to pass to the task when it runs. Populate only the fields that match the task type. All other fields should be empty.
205611
+ */
204969
205612
  TaskInvocationParameters?: SSMMaintenanceWindowTaskTaskInvocationParameters;
205613
+ /**
205614
+ * The parameters to pass to the task when it runs.
205615
+ */
204970
205616
  TaskParameters?: Record<string, any>;
205617
+ /**
205618
+ * The type of task.
205619
+ */
204971
205620
  TaskType: string;
205621
+ /**
205622
+ * The ID of the maintenance window where the task is registered.
205623
+ */
204972
205624
  WindowId: string;
204973
205625
  };
204974
205626
  /**
@@ -204976,14 +205628,23 @@ export type SSMMaintenanceWindowTaskProps = {
204976
205628
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#aws-resource-ssm-maintenancewindowtask-return-values}
204977
205629
  */
204978
205630
  export type SSMMaintenanceWindowTaskAttributes = {
204979
- Id: string;
205631
+ /**
205632
+ * Unique identifier of the maintenance window task.
205633
+ */
205634
+ WindowTaskId: string;
204980
205635
  };
204981
205636
  /**
204982
205637
  * Type definition for `AWS::SSM::MaintenanceWindowTask.CloudWatchOutputConfig`.
204983
205638
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-cloudwatchoutputconfig.html}
204984
205639
  */
204985
205640
  export type SSMMaintenanceWindowTaskCloudWatchOutputConfig = {
205641
+ /**
205642
+ * The name of the CloudWatch log group where you want to send command output.
205643
+ */
204986
205644
  CloudWatchLogGroupName?: string;
205645
+ /**
205646
+ * Enables Systems Manager to send command output to CloudWatch Logs.
205647
+ */
204987
205648
  CloudWatchOutputEnabled?: boolean;
204988
205649
  };
204989
205650
  /**
@@ -219822,6 +220483,7 @@ export interface ResourceTypes {
219822
220483
  "AWS::GreengrassV2::Deployment": GreengrassV2DeploymentProps;
219823
220484
  "AWS::GroundStation::Config": GroundStationConfigProps;
219824
220485
  "AWS::GroundStation::DataflowEndpointGroup": GroundStationDataflowEndpointGroupProps;
220486
+ "AWS::GroundStation::DataflowEndpointGroupV2": GroundStationDataflowEndpointGroupV2Props;
219825
220487
  "AWS::GroundStation::MissionProfile": GroundStationMissionProfileProps;
219826
220488
  "AWS::GuardDuty::Detector": GuardDutyDetectorProps;
219827
220489
  "AWS::GuardDuty::Filter": GuardDutyFilterProps;
@@ -220471,6 +221133,7 @@ export interface ResourceTypes {
220471
221133
  "AWS::SES::ReceiptRule": SESReceiptRuleProps;
220472
221134
  "AWS::SES::ReceiptRuleSet": SESReceiptRuleSetProps;
220473
221135
  "AWS::SES::Template": SESTemplateProps;
221136
+ "AWS::SES::Tenant": SESTenantProps;
220474
221137
  "AWS::SES::VdmAttributes": SESVdmAttributesProps;
220475
221138
  "AWS::Shield::DRTAccess": ShieldDRTAccessProps;
220476
221139
  "AWS::Shield::ProactiveEngagement": ShieldProactiveEngagementProps;
@@ -221243,6 +221906,7 @@ export interface AttributeTypes {
221243
221906
  "AWS::GreengrassV2::Deployment": GreengrassV2DeploymentAttributes;
221244
221907
  "AWS::GroundStation::Config": GroundStationConfigAttributes;
221245
221908
  "AWS::GroundStation::DataflowEndpointGroup": GroundStationDataflowEndpointGroupAttributes;
221909
+ "AWS::GroundStation::DataflowEndpointGroupV2": GroundStationDataflowEndpointGroupV2Attributes;
221246
221910
  "AWS::GroundStation::MissionProfile": GroundStationMissionProfileAttributes;
221247
221911
  "AWS::GuardDuty::Detector": GuardDutyDetectorAttributes;
221248
221912
  "AWS::GuardDuty::IPSet": GuardDutyIPSetAttributes;
@@ -221813,6 +222477,7 @@ export interface AttributeTypes {
221813
222477
  "AWS::SES::ReceiptRule": SESReceiptRuleAttributes;
221814
222478
  "AWS::SES::ReceiptRuleSet": SESReceiptRuleSetAttributes;
221815
222479
  "AWS::SES::Template": SESTemplateAttributes;
222480
+ "AWS::SES::Tenant": SESTenantAttributes;
221816
222481
  "AWS::SES::VdmAttributes": SESVdmAttributesAttributes;
221817
222482
  "AWS::Shield::DRTAccess": ShieldDRTAccessAttributes;
221818
222483
  "AWS::Shield::ProactiveEngagement": ShieldProactiveEngagementAttributes;
@@ -222646,6 +223311,7 @@ export declare const ResourceType: {
222646
223311
  readonly GreengrassV2Deployment: "AWS::GreengrassV2::Deployment";
222647
223312
  readonly GroundStationConfig: "AWS::GroundStation::Config";
222648
223313
  readonly GroundStationDataflowEndpointGroup: "AWS::GroundStation::DataflowEndpointGroup";
223314
+ readonly GroundStationDataflowEndpointGroupV2: "AWS::GroundStation::DataflowEndpointGroupV2";
222649
223315
  readonly GroundStationMissionProfile: "AWS::GroundStation::MissionProfile";
222650
223316
  readonly GuardDutyDetector: "AWS::GuardDuty::Detector";
222651
223317
  readonly GuardDutyFilter: "AWS::GuardDuty::Filter";
@@ -223295,6 +223961,7 @@ export declare const ResourceType: {
223295
223961
  readonly SESReceiptRule: "AWS::SES::ReceiptRule";
223296
223962
  readonly SESReceiptRuleSet: "AWS::SES::ReceiptRuleSet";
223297
223963
  readonly SESTemplate: "AWS::SES::Template";
223964
+ readonly SESTenant: "AWS::SES::Tenant";
223298
223965
  readonly SESVdmAttributes: "AWS::SES::VdmAttributes";
223299
223966
  readonly ShieldDRTAccess: "AWS::Shield::DRTAccess";
223300
223967
  readonly ShieldProactiveEngagement: "AWS::Shield::ProactiveEngagement";