Class: Aws::ACMPCA::Types::AccessMethod
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::AccessMethod
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
Describes the type and format of extension access. Only one of
CustomObjectIdentifier
or AccessMethodType
may be provided.
Providing both results in InvalidArgsException
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_method_type ⇒ String
Specifies the
AccessMethod
. -
#custom_object_identifier ⇒ String
An object identifier (OID) specifying the
AccessMethod
.
Instance Attribute Details
#access_method_type ⇒ String
Specifies the AccessMethod
.
175 176 177 178 179 180 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 175 class AccessMethod < Struct.new( :custom_object_identifier, :access_method_type) SENSITIVE = [] include Aws::Structure end |
#custom_object_identifier ⇒ String
An object identifier (OID) specifying the AccessMethod
. The OID
must satisfy the regular expression shown below. For more
information, see NIST's definition of Object Identifier (OID).
175 176 177 178 179 180 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 175 class AccessMethod < Struct.new( :custom_object_identifier, :access_method_type) SENSITIVE = [] include Aws::Structure end |