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.
Represents an integrated resource from a third-party provider. This is a union type that contains provider-specific resource information.
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.
2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2752 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
2752 2753 2754 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2752 def unknown @unknown end |