Class: Aws::ACMPCA::Types::AccessMethod

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

Instance Attribute Details

#access_method_typeString

Specifies the ‘AccessMethod`.

Returns:

  • (String)


175
176
177
178
179
180
# File '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_identifierString

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)].

[1]: csrc.nist.gov/glossary/term/Object_Identifier

Returns:

  • (String)


175
176
177
178
179
180
# File 'lib/aws-sdk-acmpca/types.rb', line 175

class AccessMethod < Struct.new(
  :custom_object_identifier,
  :access_method_type)
  SENSITIVE = []
  include Aws::Structure
end