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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#access_method_typeString

Specifies the AccessMethod.

Returns:

  • (String)


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

Returns:

  • (String)


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