Class: Aws::AccessAnalyzer::Types::DeleteAnalyzerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::DeleteAnalyzerRequest
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Note:
When making an API call, you may pass DeleteAnalyzerRequest data as a hash:
{
analyzer_name: "Name", # required
client_token: "String",
}
Deletes an analyzer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analyzer_name ⇒ String
The name of the analyzer to delete.
-
#client_token ⇒ String
A client token.
Instance Attribute Details
#analyzer_name ⇒ String
The name of the analyzer to delete.
1010 1011 1012 1013 1014 1015 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 1010 class DeleteAnalyzerRequest < Struct.new( :analyzer_name, :client_token) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A client token.
A suitable default value is auto-generated. You should normally not need to pass this option.
1010 1011 1012 1013 1014 1015 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 1010 class DeleteAnalyzerRequest < Struct.new( :analyzer_name, :client_token) SENSITIVE = [] include Aws::Structure end |