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