Class: AwsIamGroups

Inherits:
Object
  • Object
show all
Includes:
AwsPluralResourceMixin
Defined in:
lib/resources/aws/aws_iam_groups.rb

Defined Under Namespace

Classes: Backend

Instance Attribute Summary

Attributes included from AwsPluralResourceMixin

#table

Instance Method Summary collapse

Methods included from AwsPluralResourceMixin

included

Methods included from AwsResourceMixin

#catch_aws_errors, #check_resource_param_names, #initialize, #inspec_runner

Instance Method Details

#fetch_from_apiObject



30
31
32
33
# File 'lib/resources/aws/aws_iam_groups.rb', line 30

def fetch_from_api
  backend = BackendFactory.create(inspec_runner)
  @table = backend.list_groups.to_h[:groups]
end

#to_sObject



26
27
28
# File 'lib/resources/aws/aws_iam_groups.rb', line 26

def to_s
  'IAM Groups'
end

#validate_params(resource_params) ⇒ Object



13
14
15
16
17
18
# File 'lib/resources/aws/aws_iam_groups.rb', line 13

def validate_params(resource_params)
  unless resource_params.empty?
    raise ArgumentError, 'aws_iam_groups does not accept resource parameters.'
  end
  resource_params
end