Class: Aws::SecurityAgent::Types::IntegratedResource

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb

Overview

Note:

IntegratedResource is a union - when making an API calls you must set exactly one of the members.

Integrated resource details from a provider

Direct Known Subclasses

GithubRepository, Unknown

Defined Under Namespace

Classes: GithubRepository, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#github_repositoryTypes::GitHubRepositoryResource

GitHub repository resource



2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2008

class IntegratedResource < Struct.new(
  :github_repository,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class GithubRepository < IntegratedResource; end
  class Unknown < IntegratedResource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2008
2009
2010
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2008

def unknown
  @unknown
end