Class: Aws::ACM::Types::SubjectAlternativeNameFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::SubjectAlternativeNameFilter
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
Note:
SubjectAlternativeNameFilter is a union - when making an API calls you must set exactly one of the members.
Filters certificates by subject alternative name attributes.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dns_name ⇒ Types::DnsNameFilter
Filter by DNS name in subject alternative names.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#dns_name ⇒ Types::DnsNameFilter
Filter by DNS name in subject alternative names.
3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 3608 class SubjectAlternativeNameFilter < Struct.new( :dns_name, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DnsName < SubjectAlternativeNameFilter; end class Unknown < SubjectAlternativeNameFilter; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3608 3609 3610 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 3608 def unknown @unknown end |