Class: Aws::SecurityAgent::Types::IntegratedResourceMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::IntegratedResourceMetadata
- 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.
Metadata about an integrated resource
Direct Known Subclasses
Defined Under Namespace
Classes: GithubRepository, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#github_repository ⇒ Types::GitHubRepositoryMetadata
Metadata for a GitHub repository resource.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#github_repository ⇒ Types::GitHubRepositoryMetadata
Metadata for a GitHub repository resource
2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2048 class IntegratedResourceMetadata < Struct.new( :github_repository, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class GithubRepository < IntegratedResourceMetadata; end class Unknown < IntegratedResourceMetadata; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2048 2049 2050 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2048 def unknown @unknown end |