Class: Aws::EC2::Types::CreationDateConditionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CreationDateConditionRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
The maximum age for allowed images.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_days_since_created ⇒ Integer
The maximum number of days that have elapsed since the image was created.
Instance Attribute Details
#maximum_days_since_created ⇒ Integer
The maximum number of days that have elapsed since the image was
created. For example, a value of 300
allows images that were
created within the last 300 days.
15825 15826 15827 15828 15829 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 15825 class CreationDateConditionRequest < Struct.new( :maximum_days_since_created) SENSITIVE = [] include Aws::Structure end |