Class: Aws::SecurityAgent::Types::IntegratedResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::IntegratedResource
- 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
Defined Under Namespace
Classes: GithubRepository, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#github_repository ⇒ Types::GitHubRepositoryResource
The GitHub repository resource information.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#github_repository ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2068 2069 2070 |
# File 'lib/aws-sdk-securityagent/types.rb', line 2068 def unknown @unknown end |