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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure, Aws::Structure::Union
Defined in:
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.

Represents an integrated resource from a third-party provider. This is a union type that contains provider-specific resource information.

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

The GitHub repository resource information.



2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
# File 'lib/aws-sdk-securityagent/types.rb', line 2068

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



2068
2069
2070
# File 'lib/aws-sdk-securityagent/types.rb', line 2068

def unknown
  @unknown
end