Class: Aws::ECS::Types::CreatedAt

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#afterTime

Include service deployments in the result that were created after this time. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

Returns:

  • (Time)


3250
3251
3252
3253
3254
3255
# File 'lib/aws-sdk-ecs/types.rb', line 3250

class CreatedAt < Struct.new(
  :before,
  :after)
  SENSITIVE = []
  include Aws::Structure
end

#beforeTime

Include service deployments in the result that were created before this time. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.

Returns:

  • (Time)


3250
3251
3252
3253
3254
3255
# File 'lib/aws-sdk-ecs/types.rb', line 3250

class CreatedAt < Struct.new(
  :before,
  :after)
  SENSITIVE = []
  include Aws::Structure
end