Class: Aws::SecurityAgent::Types::IntegratedResourceMetadata

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

Overview

Note:

IntegratedResourceMetadata is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of IntegratedResourceMetadata corresponding to the set member.

Contains metadata about an integrated resource. This is a union type that contains provider-specific metadata.

Defined Under Namespace

Classes: GithubRepository, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#github_repositoryTypes::GitHubRepositoryMetadata

The GitHub repository metadata.



2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2794

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

  class GithubRepository < IntegratedResourceMetadata; end
  class Unknown < IntegratedResourceMetadata; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2794
2795
2796
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2794

def unknown
  @unknown
end