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
Note:
When making an API call, you may pass AccessMethod data as a hash:
{
custom_object_identifier: "CustomObjectIdentifier",
access_method_type: "CA_REPOSITORY", # accepts CA_REPOSITORY, RESOURCE_PKI_MANIFEST, RESOURCE_PKI_NOTIFY
}
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
.
256 257 258 259 260 261 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 256 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).
256 257 258 259 260 261 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 256 class AccessMethod < Struct.new( :custom_object_identifier, :access_method_type) SENSITIVE = [] include Aws::Structure end |