Class: Aws::EC2::Types::DeprecationTimeCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DeprecationTimeCondition
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
The maximum period since deprecation for allowed images.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#maximum_days_since_deprecated ⇒ Integer
The maximum number of days that have elapsed since the image was deprecated.
Instance Attribute Details
#maximum_days_since_deprecated ⇒ Integer
The maximum number of days that have elapsed since the image was
deprecated. When set to 0
, no deprecated images are allowed.
18985 18986 18987 18988 18989 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 18985 class DeprecationTimeCondition < Struct.new( :maximum_days_since_deprecated) SENSITIVE = [] include Aws::Structure end |