Class: Aws::ECS::Types::CreatedAt
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::CreatedAt
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The optional filter to narrow the ListServiceDeployment
results.
If you do not specify a value, service deployments that were created before the current time are included in the result.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#after ⇒ Time
Include service deployments in the result that were created after this time.
-
#before ⇒ Time
Include service deployments in the result that were created before this time.
Instance Attribute Details
#after ⇒ Time
Include service deployments in the result that were created after this time. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
3272 3273 3274 3275 3276 3277 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 3272 class CreatedAt < Struct.new( :before, :after) SENSITIVE = [] include Aws::Structure end |
#before ⇒ Time
Include service deployments in the result that were created before this time. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
3272 3273 3274 3275 3276 3277 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 3272 class CreatedAt < Struct.new( :before, :after) SENSITIVE = [] include Aws::Structure end |