# frozen_string_literal: true # WARNING ABOUT GENERATED CODE # # This file is generated. See the contributing guide for more information: # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md # # WARNING ABOUT GENERATED CODE require 'seahorse/client/plugins/content_length.rb' require 'aws-sdk-core/plugins/credentials_configuration.rb' require 'aws-sdk-core/plugins/logging.rb' require 'aws-sdk-core/plugins/param_converter.rb' require 'aws-sdk-core/plugins/param_validator.rb' require 'aws-sdk-core/plugins/user_agent.rb' require 'aws-sdk-core/plugins/helpful_socket_errors.rb' require 'aws-sdk-core/plugins/retry_errors.rb' require 'aws-sdk-core/plugins/global_configuration.rb' require 'aws-sdk-core/plugins/regional_endpoint.rb' require 'aws-sdk-core/plugins/endpoint_discovery.rb' require 'aws-sdk-core/plugins/endpoint_pattern.rb' require 'aws-sdk-core/plugins/response_paging.rb' require 'aws-sdk-core/plugins/stub_responses.rb' require 'aws-sdk-core/plugins/idempotency_token.rb' require 'aws-sdk-core/plugins/jsonvalue_converter.rb' require 'aws-sdk-core/plugins/client_metrics_plugin.rb' require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb' require 'aws-sdk-core/plugins/transfer_encoding.rb' require 'aws-sdk-core/plugins/http_checksum.rb' require 'aws-sdk-core/plugins/checksum_algorithm.rb' require 'aws-sdk-core/plugins/defaults_mode.rb' require 'aws-sdk-core/plugins/recursion_detection.rb' require 'aws-sdk-core/plugins/signature_v4.rb' require 'aws-sdk-core/plugins/protocols/rest_json.rb' Aws::Plugins::GlobalConfiguration.add_identifier(:securityhub) module Aws::SecurityHub # An API client for SecurityHub. To construct a client, you need to configure a `:region` and `:credentials`. # # client = Aws::SecurityHub::Client.new( # region: region_name, # credentials: credentials, # # ... # ) # # For details on configuring region and credentials see # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html). # # See {#initialize} for a full list of supported configuration options. class Client < Seahorse::Client::Base include Aws::ClientStubs @identifier = :securityhub set_api(ClientApi::API) add_plugin(Seahorse::Client::Plugins::ContentLength) add_plugin(Aws::Plugins::CredentialsConfiguration) add_plugin(Aws::Plugins::Logging) add_plugin(Aws::Plugins::ParamConverter) add_plugin(Aws::Plugins::ParamValidator) add_plugin(Aws::Plugins::UserAgent) add_plugin(Aws::Plugins::HelpfulSocketErrors) add_plugin(Aws::Plugins::RetryErrors) add_plugin(Aws::Plugins::GlobalConfiguration) add_plugin(Aws::Plugins::RegionalEndpoint) add_plugin(Aws::Plugins::EndpointDiscovery) add_plugin(Aws::Plugins::EndpointPattern) add_plugin(Aws::Plugins::ResponsePaging) add_plugin(Aws::Plugins::StubResponses) add_plugin(Aws::Plugins::IdempotencyToken) add_plugin(Aws::Plugins::JsonvalueConverter) add_plugin(Aws::Plugins::ClientMetricsPlugin) add_plugin(Aws::Plugins::ClientMetricsSendPlugin) add_plugin(Aws::Plugins::TransferEncoding) add_plugin(Aws::Plugins::HttpChecksum) add_plugin(Aws::Plugins::ChecksumAlgorithm) add_plugin(Aws::Plugins::DefaultsMode) add_plugin(Aws::Plugins::RecursionDetection) add_plugin(Aws::Plugins::SignatureV4) add_plugin(Aws::Plugins::Protocols::RestJson) # @overload initialize(options) # @param [Hash] options # @option options [required, Aws::CredentialProvider] :credentials # Your AWS credentials. This can be an instance of any one of the # following classes: # # * `Aws::Credentials` - Used for configuring static, non-refreshing # credentials. # # * `Aws::SharedCredentials` - Used for loading static credentials from a # shared file, such as `~/.aws/config`. # # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role. # # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to # assume a role after providing credentials via the web. # # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an # access token generated from `aws login`. # # * `Aws::ProcessCredentials` - Used for loading credentials from a # process that outputs to stdout. # # * `Aws::InstanceProfileCredentials` - Used for loading credentials # from an EC2 IMDS on an EC2 instance. # # * `Aws::ECSCredentials` - Used for loading credentials from # instances running in ECS. # # * `Aws::CognitoIdentityCredentials` - Used for loading credentials # from the Cognito Identity service. # # When `:credentials` are not configured directly, the following # locations will be searched for credentials: # # * `Aws.config[:credentials]` # * The `:access_key_id`, `:secret_access_key`, and `:session_token` options. # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'] # * `~/.aws/credentials` # * `~/.aws/config` # * EC2/ECS IMDS instance profile - When used by default, the timeouts # are very aggressive. Construct and pass an instance of # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to # enable retries and extended timeouts. Instance profile credential # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED'] # to true. # # @option options [required, String] :region # The AWS region to connect to. The configured `:region` is # used to determine the service `:endpoint`. When not passed, # a default `:region` is searched for in the following locations: # # * `Aws.config[:region]` # * `ENV['AWS_REGION']` # * `ENV['AMAZON_REGION']` # * `ENV['AWS_DEFAULT_REGION']` # * `~/.aws/credentials` # * `~/.aws/config` # # @option options [String] :access_key_id # # @option options [Boolean] :active_endpoint_cache (false) # When set to `true`, a thread polling for endpoints will be running in # the background every 60 secs (default). Defaults to `false`. # # @option options [Boolean] :adaptive_retry_wait_to_fill (true) # Used only in `adaptive` retry mode. When true, the request will sleep # until there is sufficent client side capacity to retry the request. # When false, the request will raise a `RetryCapacityNotAvailableError` and will # not retry instead of sleeping. # # @option options [Boolean] :client_side_monitoring (false) # When `true`, client-side metrics will be collected for all API requests from # this client. # # @option options [String] :client_side_monitoring_client_id ("") # Allows you to provide an identifier for this client which will be attached to # all generated client side metrics. Defaults to an empty string. # # @option options [String] :client_side_monitoring_host ("127.0.0.1") # Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client # side monitoring agent is running on, where client metrics will be published via UDP. # # @option options [Integer] :client_side_monitoring_port (31000) # Required for publishing client metrics. The port that the client side monitoring # agent is running on, where client metrics will be published via UDP. # # @option options [Aws::ClientSideMonitoring::Publisher] :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) # Allows you to provide a custom client-side monitoring publisher class. By default, # will use the Client Side Monitoring Agent Publisher. # # @option options [Boolean] :convert_params (true) # When `true`, an attempt is made to coerce request parameters into # the required types. # # @option options [Boolean] :correct_clock_skew (true) # Used only in `standard` and adaptive retry modes. Specifies whether to apply # a clock skew correction and retry requests with skewed client clocks. # # @option options [String] :defaults_mode ("legacy") # See {Aws::DefaultsModeConfiguration} for a list of the # accepted modes and the configuration defaults that are included. # # @option options [Boolean] :disable_host_prefix_injection (false) # Set to true to disable SDK automatically adding host prefix # to default service endpoint when available. # # @option options [String] :endpoint # The client endpoint is normally constructed from the `:region` # option. You should only configure an `:endpoint` when connecting # to test or custom endpoints. This should be a valid HTTP(S) URI. # # @option options [Integer] :endpoint_cache_max_entries (1000) # Used for the maximum size limit of the LRU cache storing endpoints data # for endpoint discovery enabled operations. Defaults to 1000. # # @option options [Integer] :endpoint_cache_max_threads (10) # Used for the maximum threads in use for polling endpoints to be cached, defaults to 10. # # @option options [Integer] :endpoint_cache_poll_interval (60) # When :endpoint_discovery and :active_endpoint_cache is enabled, # Use this option to config the time interval in seconds for making # requests fetching endpoints information. Defaults to 60 sec. # # @option options [Boolean] :endpoint_discovery (false) # When set to `true`, endpoint discovery will be enabled for operations when available. # # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default) # The log formatter. # # @option options [Symbol] :log_level (:info) # The log level to send messages to the `:logger` at. # # @option options [Logger] :logger # The Logger instance to send log messages to. If this option # is not set, logging will be disabled. # # @option options [Integer] :max_attempts (3) # An integer representing the maximum number attempts that will be made for # a single request, including the initial attempt. For example, # setting this value to 5 will result in a request being retried up to # 4 times. Used in `standard` and `adaptive` retry modes. # # @option options [String] :profile ("default") # Used when loading credentials from the shared credentials file # at HOME/.aws/credentials. When not specified, 'default' is used. # # @option options [Proc] :retry_backoff # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay. # This option is only used in the `legacy` retry mode. # # @option options [Float] :retry_base_delay (0.3) # The base delay in seconds used by the default backoff function. This option # is only used in the `legacy` retry mode. # # @option options [Symbol] :retry_jitter (:none) # A delay randomiser function used by the default backoff function. # Some predefined functions can be referenced by name - :none, :equal, :full, # otherwise a Proc that takes and returns a number. This option is only used # in the `legacy` retry mode. # # @see https://www.awsarchitectureblog.com/2015/03/backoff.html # # @option options [Integer] :retry_limit (3) # The maximum number of times to retry failed requests. Only # ~ 500 level server errors and certain ~ 400 level client errors # are retried. Generally, these are throttling errors, data # checksum errors, networking errors, timeout errors, auth errors, # endpoint discovery, and errors from expired credentials. # This option is only used in the `legacy` retry mode. # # @option options [Integer] :retry_max_delay (0) # The maximum number of seconds to delay between retries (0 for no limit) # used by the default backoff function. This option is only used in the # `legacy` retry mode. # # @option options [String] :retry_mode ("legacy") # Specifies which retry algorithm to use. Values are: # # * `legacy` - The pre-existing retry behavior. This is default value if # no retry mode is provided. # # * `standard` - A standardized set of retry rules across the AWS SDKs. # This includes support for retry quotas, which limit the number of # unsuccessful retries a client can make. # # * `adaptive` - An experimental retry mode that includes all the # functionality of `standard` mode along with automatic client side # throttling. This is a provisional mode that may change behavior # in the future. # # # @option options [String] :secret_access_key # # @option options [String] :session_token # # @option options [Boolean] :stub_responses (false) # Causes the client to return stubbed responses. By default # fake responses are generated and returned. You can specify # the response data to return or errors to raise by calling # {ClientStubs#stub_responses}. See {ClientStubs} for more information. # # ** Please note ** When response stubbing is enabled, no HTTP # requests are made, and retries are disabled. # # @option options [Boolean] :use_dualstack_endpoint # When set to `true`, dualstack enabled endpoints (with `.aws` TLD) # will be used if available. # # @option options [Boolean] :use_fips_endpoint # When set to `true`, fips compatible endpoints will be used if available. # When a `fips` region is used, the region is normalized and this config # is set to `true`. # # @option options [Boolean] :validate_params (true) # When `true`, request parameters are validated before # sending the request. # # @option options [URI::HTTP,String] :http_proxy A proxy to send # requests through. Formatted like 'http://proxy.com:123'. # # @option options [Float] :http_open_timeout (15) The number of # seconds to wait when opening a HTTP session before raising a # `Timeout::Error`. # # @option options [Float] :http_read_timeout (60) The default # number of seconds to wait for response data. This value can # safely be set per-request on the session. # # @option options [Float] :http_idle_timeout (5) The number of # seconds a connection is allowed to sit idle before it is # considered stale. Stale connections are closed and removed # from the pool before making a request. # # @option options [Float] :http_continue_timeout (1) The number of # seconds to wait for a 100-continue response before sending the # request body. This option has no effect unless the request has # "Expect" header set to "100-continue". Defaults to `nil` which # disables this behaviour. This value can safely be set per # request on the session. # # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout # in seconds. # # @option options [Boolean] :http_wire_trace (false) When `true`, # HTTP debug output will be sent to the `:logger`. # # @option options [Boolean] :ssl_verify_peer (true) When `true`, # SSL peer certificates are verified when establishing a # connection. # # @option options [String] :ssl_ca_bundle Full path to the SSL # certificate authority bundle file that should be used when # verifying peer certificates. If you do not pass # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default # will be used if available. # # @option options [String] :ssl_ca_directory Full path of the # directory that contains the unbundled SSL certificate # authority files for verifying peer certificates. If you do # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the # system default will be used if available. # def initialize(*args) super end # @!group API Operations # Accepts the invitation to be a member account and be monitored by the # Security Hub administrator account that the invitation was sent from. # # This operation is only used by member accounts that are not added # through Organizations. # # When the member account accepts the invitation, permission is granted # to the administrator account to view findings generated in the member # account. # # @option params [required, String] :administrator_id # The account ID of the Security Hub administrator account that sent the # invitation. # # @option params [required, String] :invitation_id # The identifier of the invitation sent from the Security Hub # administrator account. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.accept_administrator_invitation({ # administrator_id: "NonEmptyString", # required # invitation_id: "NonEmptyString", # required # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AcceptAdministratorInvitation AWS API Documentation # # @overload accept_administrator_invitation(params = {}) # @param [Hash] params ({}) def accept_administrator_invitation(params = {}, options = {}) req = build_request(:accept_administrator_invitation, params) req.send_request(options) end # This method is deprecated. Instead, use # `AcceptAdministratorInvitation`. # # The Security Hub console continues to use `AcceptInvitation`. It will # eventually change to use `AcceptAdministratorInvitation`. Any IAM # policies that specifically control access to this function must # continue to use `AcceptInvitation`. You should also add # `AcceptAdministratorInvitation` to your policies to ensure that the # correct permissions are in place after the console begins to use # `AcceptAdministratorInvitation`. # # Accepts the invitation to be a member account and be monitored by the # Security Hub administrator account that the invitation was sent from. # # This operation is only used by member accounts that are not added # through Organizations. # # When the member account accepts the invitation, permission is granted # to the administrator account to view findings generated in the member # account. # # @option params [required, String] :master_id # The account ID of the Security Hub administrator account that sent the # invitation. # # @option params [required, String] :invitation_id # The identifier of the invitation sent from the Security Hub # administrator account. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.accept_invitation({ # master_id: "NonEmptyString", # required # invitation_id: "NonEmptyString", # required # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AcceptInvitation AWS API Documentation # # @overload accept_invitation(params = {}) # @param [Hash] params ({}) def accept_invitation(params = {}, options = {}) req = build_request(:accept_invitation, params) req.send_request(options) end # Disables the standards specified by the provided # `StandardsSubscriptionArns`. # # For more information, see [Security Standards][1] section of the # *Security Hub User Guide*. # # # # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards.html # # @option params [required, Array] :standards_subscription_arns # The ARNs of the standards subscriptions to disable. # # @return [Types::BatchDisableStandardsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::BatchDisableStandardsResponse#standards_subscriptions #standards_subscriptions} => Array<Types::StandardsSubscription> # # @example Request syntax with placeholder values # # resp = client.batch_disable_standards({ # standards_subscription_arns: ["NonEmptyString"], # required # }) # # @example Response structure # # resp.standards_subscriptions #=> Array # resp.standards_subscriptions[0].standards_subscription_arn #=> String # resp.standards_subscriptions[0].standards_arn #=> String # resp.standards_subscriptions[0].standards_input #=> Hash # resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String # resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE" # resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR" # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchDisableStandards AWS API Documentation # # @overload batch_disable_standards(params = {}) # @param [Hash] params ({}) def batch_disable_standards(params = {}, options = {}) req = build_request(:batch_disable_standards, params) req.send_request(options) end # Enables the standards specified by the provided `StandardsArn`. To # obtain the ARN for a standard, use the `DescribeStandards` operation. # # For more information, see the [Security Standards][1] section of the # *Security Hub User Guide*. # # # # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards.html # # @option params [required, Array] :standards_subscription_requests # The list of standards checks to enable. # # @return [Types::BatchEnableStandardsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::BatchEnableStandardsResponse#standards_subscriptions #standards_subscriptions} => Array<Types::StandardsSubscription> # # @example Request syntax with placeholder values # # resp = client.batch_enable_standards({ # standards_subscription_requests: [ # required # { # standards_arn: "NonEmptyString", # required # standards_input: { # "NonEmptyString" => "NonEmptyString", # }, # }, # ], # }) # # @example Response structure # # resp.standards_subscriptions #=> Array # resp.standards_subscriptions[0].standards_subscription_arn #=> String # resp.standards_subscriptions[0].standards_arn #=> String # resp.standards_subscriptions[0].standards_input #=> Hash # resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String # resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE" # resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR" # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchEnableStandards AWS API Documentation # # @overload batch_enable_standards(params = {}) # @param [Hash] params ({}) def batch_enable_standards(params = {}, options = {}) req = build_request(:batch_enable_standards, params) req.send_request(options) end # Imports security findings generated by a finding provider into # Security Hub. This action is requested by the finding provider to # import its findings into Security Hub. # # `BatchImportFindings` must be called by one of the following: # # * The Amazon Web Services account that is associated with a finding if # you are using the [default product ARN][1] or are a partner sending # findings from within a customer's Amazon Web Services account. In # these cases, the identifier of the account that you are calling # `BatchImportFindings` from needs to be the same as the # `AwsAccountId` attribute for the finding. # # * An Amazon Web Services account that Security Hub has allow-listed # for an official partner integration. In this case, you can call # `BatchImportFindings` from the allow-listed account and send # findings from different customer accounts in the same batch. # # The maximum allowed size for a finding is 240 Kb. An error is returned # for any finding larger than 240 Kb. # # After a finding is created, `BatchImportFindings` cannot be used to # update the following finding fields and objects, which Security Hub # customers use to manage their investigation workflow. # # * `Note` # # * `UserDefinedFields` # # * `VerificationState` # # * `Workflow` # # Finding providers also should not use `BatchImportFindings` to update # the following attributes. # # * `Confidence` # # * `Criticality` # # * `RelatedFindings` # # * `Severity` # # * `Types` # # Instead, finding providers use `FindingProviderFields` to provide # values for these attributes. # # # # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-custom-providers.html#securityhub-custom-providers-bfi-reqs # # @option params [required, Array] :findings # A list of findings to import. To successfully import a finding, it # must follow the [Amazon Web Services Security Finding Format][1]. # Maximum of 100 findings per request. # # # # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-findings-format.html # # @return [Types::BatchImportFindingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::BatchImportFindingsResponse#failed_count #failed_count} => Integer # * {Types::BatchImportFindingsResponse#success_count #success_count} => Integer # * {Types::BatchImportFindingsResponse#failed_findings #failed_findings} => Array<Types::ImportFindingsError> # # @example Request syntax with placeholder values # # resp = client.batch_import_findings({ # findings: [ # required # { # schema_version: "NonEmptyString", # required # id: "NonEmptyString", # required # product_arn: "NonEmptyString", # required # product_name: "NonEmptyString", # company_name: "NonEmptyString", # region: "NonEmptyString", # generator_id: "NonEmptyString", # required # aws_account_id: "NonEmptyString", # required # types: ["NonEmptyString"], # first_observed_at: "NonEmptyString", # last_observed_at: "NonEmptyString", # created_at: "NonEmptyString", # required # updated_at: "NonEmptyString", # required # severity: { # product: 1.0, # label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL # normalized: 1, # original: "NonEmptyString", # }, # confidence: 1, # criticality: 1, # title: "NonEmptyString", # required # description: "NonEmptyString", # required # remediation: { # recommendation: { # text: "NonEmptyString", # url: "NonEmptyString", # }, # }, # source_url: "NonEmptyString", # product_fields: { # "NonEmptyString" => "NonEmptyString", # }, # user_defined_fields: { # "NonEmptyString" => "NonEmptyString", # }, # malware: [ # { # name: "NonEmptyString", # required # type: "ADWARE", # accepts ADWARE, BLENDED_THREAT, BOTNET_AGENT, COIN_MINER, EXPLOIT_KIT, KEYLOGGER, MACRO, POTENTIALLY_UNWANTED, SPYWARE, RANSOMWARE, REMOTE_ACCESS, ROOTKIT, TROJAN, VIRUS, WORM # path: "NonEmptyString", # state: "OBSERVED", # accepts OBSERVED, REMOVAL_FAILED, REMOVED # }, # ], # network: { # direction: "IN", # accepts IN, OUT # protocol: "NonEmptyString", # open_port_range: { # begin: 1, # end: 1, # }, # source_ip_v4: "NonEmptyString", # source_ip_v6: "NonEmptyString", # source_port: 1, # source_domain: "NonEmptyString", # source_mac: "NonEmptyString", # destination_ip_v4: "NonEmptyString", # destination_ip_v6: "NonEmptyString", # destination_port: 1, # destination_domain: "NonEmptyString", # }, # network_path: [ # { # component_id: "NonEmptyString", # component_type: "NonEmptyString", # egress: { # protocol: "NonEmptyString", # destination: { # address: ["NonEmptyString"], # port_ranges: [ # { # begin: 1, # end: 1, # }, # ], # }, # source: { # address: ["NonEmptyString"], # port_ranges: [ # { # begin: 1, # end: 1, # }, # ], # }, # }, # ingress: { # protocol: "NonEmptyString", # destination: { # address: ["NonEmptyString"], # port_ranges: [ # { # begin: 1, # end: 1, # }, # ], # }, # source: { # address: ["NonEmptyString"], # port_ranges: [ # { # begin: 1, # end: 1, # }, # ], # }, # }, # }, # ], # process: { # name: "NonEmptyString", # path: "NonEmptyString", # pid: 1, # parent_pid: 1, # launched_at: "NonEmptyString", # terminated_at: "NonEmptyString", # }, # threats: [ # { # name: "NonEmptyString", # severity: "NonEmptyString", # item_count: 1, # file_paths: [ # { # file_path: "NonEmptyString", # file_name: "NonEmptyString", # resource_id: "NonEmptyString", # hash: "NonEmptyString", # }, # ], # }, # ], # threat_intel_indicators: [ # { # type: "DOMAIN", # accepts DOMAIN, EMAIL_ADDRESS, HASH_MD5, HASH_SHA1, HASH_SHA256, HASH_SHA512, IPV4_ADDRESS, IPV6_ADDRESS, MUTEX, PROCESS, URL # value: "NonEmptyString", # category: "BACKDOOR", # accepts BACKDOOR, CARD_STEALER, COMMAND_AND_CONTROL, DROP_SITE, EXPLOIT_SITE, KEYLOGGER # last_observed_at: "NonEmptyString", # source: "NonEmptyString", # source_url: "NonEmptyString", # }, # ], # resources: [ # required # { # type: "NonEmptyString", # required # id: "NonEmptyString", # required # partition: "aws", # accepts aws, aws-cn, aws-us-gov # region: "NonEmptyString", # resource_role: "NonEmptyString", # tags: { # "NonEmptyString" => "NonEmptyString", # }, # data_classification: { # detailed_results_location: "NonEmptyString", # result: { # mime_type: "NonEmptyString", # size_classified: 1, # additional_occurrences: false, # status: { # code: "NonEmptyString", # reason: "NonEmptyString", # }, # sensitive_data: [ # { # category: "NonEmptyString", # detections: [ # { # count: 1, # type: "NonEmptyString", # occurrences: { # line_ranges: [ # { # start: 1, # end: 1, # start_column: 1, # }, # ], # offset_ranges: [ # { # start: 1, # end: 1, # start_column: 1, # }, # ], # pages: [ # { # page_number: 1, # line_range: { # start: 1, # end: 1, # start_column: 1, # }, # offset_range: { # start: 1, # end: 1, # start_column: 1, # }, # }, # ], # records: [ # { # json_path: "NonEmptyString", # record_index: 1, # }, # ], # cells: [ # { # column: 1, # row: 1, # column_name: "NonEmptyString", # cell_reference: "NonEmptyString", # }, # ], # }, # }, # ], # total_count: 1, # }, # ], # custom_data_identifiers: { # detections: [ # { # count: 1, # arn: "NonEmptyString", # name: "NonEmptyString", # occurrences: { # line_ranges: [ # { # start: 1, # end: 1, # start_column: 1, # }, # ], # offset_ranges: [ # { # start: 1, # end: 1, # start_column: 1, # }, # ], # pages: [ # { # page_number: 1, # line_range: { # start: 1, # end: 1, # start_column: 1, # }, # offset_range: { # start: 1, # end: 1, # start_column: 1, # }, # }, # ], # records: [ # { # json_path: "NonEmptyString", # record_index: 1, # }, # ], # cells: [ # { # column: 1, # row: 1, # column_name: "NonEmptyString", # cell_reference: "NonEmptyString", # }, # ], # }, # }, # ], # total_count: 1, # }, # }, # }, # details: { # aws_auto_scaling_auto_scaling_group: { # launch_configuration_name: "NonEmptyString", # load_balancer_names: ["NonEmptyString"], # health_check_type: "NonEmptyString", # health_check_grace_period: 1, # created_time: "NonEmptyString", # mixed_instances_policy: { # instances_distribution: { # on_demand_allocation_strategy: "NonEmptyString", # on_demand_base_capacity: 1, # on_demand_percentage_above_base_capacity: 1, # spot_allocation_strategy: "NonEmptyString", # spot_instance_pools: 1, # spot_max_price: "NonEmptyString", # }, # launch_template: { # launch_template_specification: { # launch_template_id: "NonEmptyString", # launch_template_name: "NonEmptyString", # version: "NonEmptyString", # }, # overrides: [ # { # instance_type: "NonEmptyString", # weighted_capacity: "NonEmptyString", # }, # ], # }, # }, # availability_zones: [ # { # value: "NonEmptyString", # }, # ], # launch_template: { # launch_template_id: "NonEmptyString", # launch_template_name: "NonEmptyString", # version: "NonEmptyString", # }, # capacity_rebalance: false, # }, # aws_code_build_project: { # encryption_key: "NonEmptyString", # artifacts: [ # { # artifact_identifier: "NonEmptyString", # encryption_disabled: false, # location: "NonEmptyString", # name: "NonEmptyString", # namespace_type: "NonEmptyString", # override_artifact_name: false, # packaging: "NonEmptyString", # path: "NonEmptyString", # type: "NonEmptyString", # }, # ], # environment: { # certificate: "NonEmptyString", # environment_variables: [ # { # name: "NonEmptyString", # type: "NonEmptyString", # value: "NonEmptyString", # }, # ], # privileged_mode: false, # image_pull_credentials_type: "NonEmptyString", # registry_credential: { # credential: "NonEmptyString", # credential_provider: "NonEmptyString", # }, # type: "NonEmptyString", # }, # name: "NonEmptyString", # source: { # type: "NonEmptyString", # location: "NonEmptyString", # git_clone_depth: 1, # insecure_ssl: false, # }, # service_role: "NonEmptyString", # logs_config: { # cloud_watch_logs: { # group_name: "NonEmptyString", # status: "NonEmptyString", # stream_name: "NonEmptyString", # }, # s3_logs: { # encryption_disabled: false, # location: "NonEmptyString", # status: "NonEmptyString", # }, # }, # vpc_config: { # vpc_id: "NonEmptyString", # subnets: ["NonEmptyString"], # security_group_ids: ["NonEmptyString"], # }, # secondary_artifacts: [ # { # artifact_identifier: "NonEmptyString", # encryption_disabled: false, # location: "NonEmptyString", # name: "NonEmptyString", # namespace_type: "NonEmptyString", # override_artifact_name: false, # packaging: "NonEmptyString", # path: "NonEmptyString", # type: "NonEmptyString", # }, # ], # }, # aws_cloud_front_distribution: { # cache_behaviors: { # items: [ # { # viewer_protocol_policy: "NonEmptyString", # }, # ], # }, # default_cache_behavior: { # viewer_protocol_policy: "NonEmptyString", # }, # default_root_object: "NonEmptyString", # domain_name: "NonEmptyString", # etag: "NonEmptyString", # last_modified_time: "NonEmptyString", # logging: { # bucket: "NonEmptyString", # enabled: false, # include_cookies: false, # prefix: "NonEmptyString", # }, # origins: { # items: [ # { # domain_name: "NonEmptyString", # id: "NonEmptyString", # origin_path: "NonEmptyString", # s3_origin_config: { # origin_access_identity: "NonEmptyString", # }, # custom_origin_config: { # http_port: 1, # https_port: 1, # origin_keepalive_timeout: 1, # origin_protocol_policy: "NonEmptyString", # origin_read_timeout: 1, # origin_ssl_protocols: { # items: ["NonEmptyString"], # quantity: 1, # }, # }, # }, # ], # }, # origin_groups: { # items: [ # { # failover_criteria: { # status_codes: { # items: [1], # quantity: 1, # }, # }, # }, # ], # }, # viewer_certificate: { # acm_certificate_arn: "NonEmptyString", # certificate: "NonEmptyString", # certificate_source: "NonEmptyString", # cloud_front_default_certificate: false, # iam_certificate_id: "NonEmptyString", # minimum_protocol_version: "NonEmptyString", # ssl_support_method: "NonEmptyString", # }, # status: "NonEmptyString", # web_acl_id: "NonEmptyString", # }, # aws_ec2_instance: { # type: "NonEmptyString", # image_id: "NonEmptyString", # ip_v4_addresses: ["NonEmptyString"], # ip_v6_addresses: ["NonEmptyString"], # key_name: "NonEmptyString", # iam_instance_profile_arn: "NonEmptyString", # vpc_id: "NonEmptyString", # subnet_id: "NonEmptyString", # launched_at: "NonEmptyString", # network_interfaces: [ # { # network_interface_id: "NonEmptyString", # }, # ], # virtualization_type: "NonEmptyString", # metadata_options: { # http_endpoint: "NonEmptyString", # http_protocol_ipv_6: "NonEmptyString", # http_put_response_hop_limit: 1, # http_tokens: "NonEmptyString", # instance_metadata_tags: "NonEmptyString", # }, # }, # aws_ec2_network_interface: { # attachment: { # attach_time: "NonEmptyString", # attachment_id: "NonEmptyString", # delete_on_termination: false, # device_index: 1, # instance_id: "NonEmptyString", # instance_owner_id: "NonEmptyString", # status: "NonEmptyString", # }, # network_interface_id: "NonEmptyString", # security_groups: [ # { # group_name: "NonEmptyString", # group_id: "NonEmptyString", # }, # ], # source_dest_check: false, # ip_v6_addresses: [ # { # ip_v6_address: "NonEmptyString", # }, # ], # private_ip_addresses: [ # { # private_ip_address: "NonEmptyString", # private_dns_name: "NonEmptyString", # }, # ], # public_dns_name: "NonEmptyString", # public_ip: "NonEmptyString", # }, # aws_ec2_security_group: { # group_name: "NonEmptyString", # group_id: "NonEmptyString", # owner_id: "NonEmptyString", # vpc_id: "NonEmptyString", # ip_permissions: [ # { # ip_protocol: "NonEmptyString", # from_port: 1, # to_port: 1, # user_id_group_pairs: [ # { # group_id: "NonEmptyString", # group_name: "NonEmptyString", # peering_status: "NonEmptyString", # user_id: "NonEmptyString", # vpc_id: "NonEmptyString", # vpc_peering_connection_id: "NonEmptyString", # }, # ], # ip_ranges: [ # { # cidr_ip: "NonEmptyString", # }, # ], # ipv_6_ranges: [ # { # cidr_ipv_6: "NonEmptyString", # }, # ], # prefix_list_ids: [ # { # prefix_list_id: "NonEmptyString", # }, # ], # }, # ], # ip_permissions_egress: [ # { # ip_protocol: "NonEmptyString", # from_port: 1, # to_port: 1, # user_id_group_pairs: [ # { # group_id: "NonEmptyString", # group_name: "NonEmptyString", # peering_status: "NonEmptyString", # user_id: "NonEmptyString", # vpc_id: "NonEmptyString", # vpc_peering_connection_id: "NonEmptyString", # }, # ], # ip_ranges: [ # { # cidr_ip: "NonEmptyString", # }, # ], # ipv_6_ranges: [ # { # cidr_ipv_6: "NonEmptyString", # }, # ], # prefix_list_ids: [ # { # prefix_list_id: "NonEmptyString", # }, # ], # }, # ], # }, # aws_ec2_volume: { # create_time: "NonEmptyString", # device_name: "NonEmptyString", # encrypted: false, # size: 1, # snapshot_id: "NonEmptyString", # status: "NonEmptyString", # kms_key_id: "NonEmptyString", # attachments: [ # { # attach_time: "NonEmptyString", # delete_on_termination: false, # instance_id: "NonEmptyString", # status: "NonEmptyString", # }, # ], # volume_id: "NonEmptyString", # volume_type: "NonEmptyString", # volume_scan_status: "NonEmptyString", # }, # aws_ec2_vpc: { # cidr_block_association_set: [ # { # association_id: "NonEmptyString", # cidr_block: "NonEmptyString", # cidr_block_state: "NonEmptyString", # }, # ], # ipv_6_cidr_block_association_set: [ # { # association_id: "NonEmptyString", # ipv_6_cidr_block: "NonEmptyString", # cidr_block_state: "NonEmptyString", # }, # ], # dhcp_options_id: "NonEmptyString", # state: "NonEmptyString", # }, # aws_ec2_eip: { # instance_id: "NonEmptyString", # public_ip: "NonEmptyString", # allocation_id: "NonEmptyString", # association_id: "NonEmptyString", # domain: "NonEmptyString", # public_ipv_4_pool: "NonEmptyString", # network_border_group: "NonEmptyString", # network_interface_id: "NonEmptyString", # network_interface_owner_id: "NonEmptyString", # private_ip_address: "NonEmptyString", # }, # aws_ec2_subnet: { # assign_ipv_6_address_on_creation: false, # availability_zone: "NonEmptyString", # availability_zone_id: "NonEmptyString", # available_ip_address_count: 1, # cidr_block: "NonEmptyString", # default_for_az: false, # map_public_ip_on_launch: false, # owner_id: "NonEmptyString", # state: "NonEmptyString", # subnet_arn: "NonEmptyString", # subnet_id: "NonEmptyString", # vpc_id: "NonEmptyString", # ipv_6_cidr_block_association_set: [ # { # association_id: "NonEmptyString", # ipv_6_cidr_block: "NonEmptyString", # cidr_block_state: "NonEmptyString", # }, # ], # }, # aws_ec2_network_acl: { # is_default: false, # network_acl_id: "NonEmptyString", # owner_id: "NonEmptyString", # vpc_id: "NonEmptyString", # associations: [ # { # network_acl_association_id: "NonEmptyString", # network_acl_id: "NonEmptyString", # subnet_id: "NonEmptyString", # }, # ], # entries: [ # { # cidr_block: "NonEmptyString", # egress: false, # icmp_type_code: { # code: 1, # type: 1, # }, # ipv_6_cidr_block: "NonEmptyString", # port_range: { # from: 1, # to: 1, # }, # protocol: "NonEmptyString", # rule_action: "NonEmptyString", # rule_number: 1, # }, # ], # }, # aws_elbv_2_load_balancer: { # availability_zones: [ # { # zone_name: "NonEmptyString", # subnet_id: "NonEmptyString", # }, # ], # canonical_hosted_zone_id: "NonEmptyString", # created_time: "NonEmptyString", # dns_name: "NonEmptyString", # ip_address_type: "NonEmptyString", # scheme: "NonEmptyString", # security_groups: ["NonEmptyString"], # state: { # code: "NonEmptyString", # reason: "NonEmptyString", # }, # type: "NonEmptyString", # vpc_id: "NonEmptyString", # load_balancer_attributes: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # }, # ], # }, # aws_elastic_beanstalk_environment: { # application_name: "NonEmptyString", # cname: "NonEmptyString", # date_created: "NonEmptyString", # date_updated: "NonEmptyString", # description: "NonEmptyString", # endpoint_url: "NonEmptyString", # environment_arn: "NonEmptyString", # environment_id: "NonEmptyString", # environment_links: [ # { # environment_name: "NonEmptyString", # link_name: "NonEmptyString", # }, # ], # environment_name: "NonEmptyString", # option_settings: [ # { # namespace: "NonEmptyString", # option_name: "NonEmptyString", # resource_name: "NonEmptyString", # value: "NonEmptyString", # }, # ], # platform_arn: "NonEmptyString", # solution_stack_name: "NonEmptyString", # status: "NonEmptyString", # tier: { # name: "NonEmptyString", # type: "NonEmptyString", # version: "NonEmptyString", # }, # version_label: "NonEmptyString", # }, # aws_elasticsearch_domain: { # access_policies: "NonEmptyString", # domain_endpoint_options: { # enforce_https: false, # tls_security_policy: "NonEmptyString", # }, # domain_id: "NonEmptyString", # domain_name: "NonEmptyString", # endpoint: "NonEmptyString", # endpoints: { # "NonEmptyString" => "NonEmptyString", # }, # elasticsearch_version: "NonEmptyString", # elasticsearch_cluster_config: { # dedicated_master_count: 1, # dedicated_master_enabled: false, # dedicated_master_type: "NonEmptyString", # instance_count: 1, # instance_type: "NonEmptyString", # zone_awareness_config: { # availability_zone_count: 1, # }, # zone_awareness_enabled: false, # }, # encryption_at_rest_options: { # enabled: false, # kms_key_id: "NonEmptyString", # }, # log_publishing_options: { # index_slow_logs: { # cloud_watch_logs_log_group_arn: "NonEmptyString", # enabled: false, # }, # search_slow_logs: { # cloud_watch_logs_log_group_arn: "NonEmptyString", # enabled: false, # }, # audit_logs: { # cloud_watch_logs_log_group_arn: "NonEmptyString", # enabled: false, # }, # }, # node_to_node_encryption_options: { # enabled: false, # }, # service_software_options: { # automated_update_date: "NonEmptyString", # cancellable: false, # current_version: "NonEmptyString", # description: "NonEmptyString", # new_version: "NonEmptyString", # update_available: false, # update_status: "NonEmptyString", # }, # vpc_options: { # availability_zones: ["NonEmptyString"], # security_group_ids: ["NonEmptyString"], # subnet_ids: ["NonEmptyString"], # vpc_id: "NonEmptyString", # }, # }, # aws_s3_bucket: { # owner_id: "NonEmptyString", # owner_name: "NonEmptyString", # owner_account_id: "NonEmptyString", # created_at: "NonEmptyString", # server_side_encryption_configuration: { # rules: [ # { # apply_server_side_encryption_by_default: { # sse_algorithm: "NonEmptyString", # kms_master_key_id: "NonEmptyString", # }, # }, # ], # }, # bucket_lifecycle_configuration: { # rules: [ # { # abort_incomplete_multipart_upload: { # days_after_initiation: 1, # }, # expiration_date: "NonEmptyString", # expiration_in_days: 1, # expired_object_delete_marker: false, # filter: { # predicate: { # operands: [ # { # prefix: "NonEmptyString", # tag: { # key: "NonEmptyString", # value: "NonEmptyString", # }, # type: "NonEmptyString", # }, # ], # prefix: "NonEmptyString", # tag: { # key: "NonEmptyString", # value: "NonEmptyString", # }, # type: "NonEmptyString", # }, # }, # id: "NonEmptyString", # noncurrent_version_expiration_in_days: 1, # noncurrent_version_transitions: [ # { # days: 1, # storage_class: "NonEmptyString", # }, # ], # prefix: "NonEmptyString", # status: "NonEmptyString", # transitions: [ # { # date: "NonEmptyString", # days: 1, # storage_class: "NonEmptyString", # }, # ], # }, # ], # }, # public_access_block_configuration: { # block_public_acls: false, # block_public_policy: false, # ignore_public_acls: false, # restrict_public_buckets: false, # }, # access_control_list: "NonEmptyString", # bucket_logging_configuration: { # destination_bucket_name: "NonEmptyString", # log_file_prefix: "NonEmptyString", # }, # bucket_website_configuration: { # error_document: "NonEmptyString", # index_document_suffix: "NonEmptyString", # redirect_all_requests_to: { # hostname: "NonEmptyString", # protocol: "NonEmptyString", # }, # routing_rules: [ # { # condition: { # http_error_code_returned_equals: "NonEmptyString", # key_prefix_equals: "NonEmptyString", # }, # redirect: { # hostname: "NonEmptyString", # http_redirect_code: "NonEmptyString", # protocol: "NonEmptyString", # replace_key_prefix_with: "NonEmptyString", # replace_key_with: "NonEmptyString", # }, # }, # ], # }, # bucket_notification_configuration: { # configurations: [ # { # events: ["NonEmptyString"], # filter: { # s3_key_filter: { # filter_rules: [ # { # name: "Prefix", # accepts Prefix, Suffix # value: "NonEmptyString", # }, # ], # }, # }, # destination: "NonEmptyString", # type: "NonEmptyString", # }, # ], # }, # bucket_versioning_configuration: { # is_mfa_delete_enabled: false, # status: "NonEmptyString", # }, # }, # aws_s3_account_public_access_block: { # block_public_acls: false, # block_public_policy: false, # ignore_public_acls: false, # restrict_public_buckets: false, # }, # aws_s3_object: { # last_modified: "NonEmptyString", # etag: "NonEmptyString", # version_id: "NonEmptyString", # content_type: "NonEmptyString", # server_side_encryption: "NonEmptyString", # ssekms_key_id: "NonEmptyString", # }, # aws_secrets_manager_secret: { # rotation_rules: { # automatically_after_days: 1, # }, # rotation_occurred_within_frequency: false, # kms_key_id: "NonEmptyString", # rotation_enabled: false, # rotation_lambda_arn: "NonEmptyString", # deleted: false, # name: "NonEmptyString", # description: "NonEmptyString", # }, # aws_iam_access_key: { # user_name: "NonEmptyString", # status: "Active", # accepts Active, Inactive # created_at: "NonEmptyString", # principal_id: "NonEmptyString", # principal_type: "NonEmptyString", # principal_name: "NonEmptyString", # account_id: "NonEmptyString", # access_key_id: "NonEmptyString", # session_context: { # attributes: { # mfa_authenticated: false, # creation_date: "NonEmptyString", # }, # session_issuer: { # type: "NonEmptyString", # principal_id: "NonEmptyString", # arn: "NonEmptyString", # account_id: "NonEmptyString", # user_name: "NonEmptyString", # }, # }, # }, # aws_iam_user: { # attached_managed_policies: [ # { # policy_name: "NonEmptyString", # policy_arn: "NonEmptyString", # }, # ], # create_date: "NonEmptyString", # group_list: ["NonEmptyString"], # path: "NonEmptyString", # permissions_boundary: { # permissions_boundary_arn: "NonEmptyString", # permissions_boundary_type: "NonEmptyString", # }, # user_id: "NonEmptyString", # user_name: "NonEmptyString", # user_policy_list: [ # { # policy_name: "NonEmptyString", # }, # ], # }, # aws_iam_policy: { # attachment_count: 1, # create_date: "NonEmptyString", # default_version_id: "NonEmptyString", # description: "NonEmptyString", # is_attachable: false, # path: "NonEmptyString", # permissions_boundary_usage_count: 1, # policy_id: "NonEmptyString", # policy_name: "NonEmptyString", # policy_version_list: [ # { # version_id: "NonEmptyString", # is_default_version: false, # create_date: "NonEmptyString", # }, # ], # update_date: "NonEmptyString", # }, # aws_api_gateway_v2_stage: { # client_certificate_id: "NonEmptyString", # created_date: "NonEmptyString", # description: "NonEmptyString", # default_route_settings: { # detailed_metrics_enabled: false, # logging_level: "NonEmptyString", # data_trace_enabled: false, # throttling_burst_limit: 1, # throttling_rate_limit: 1.0, # }, # deployment_id: "NonEmptyString", # last_updated_date: "NonEmptyString", # route_settings: { # detailed_metrics_enabled: false, # logging_level: "NonEmptyString", # data_trace_enabled: false, # throttling_burst_limit: 1, # throttling_rate_limit: 1.0, # }, # stage_name: "NonEmptyString", # stage_variables: { # "NonEmptyString" => "NonEmptyString", # }, # access_log_settings: { # format: "NonEmptyString", # destination_arn: "NonEmptyString", # }, # auto_deploy: false, # last_deployment_status_message: "NonEmptyString", # api_gateway_managed: false, # }, # aws_api_gateway_v2_api: { # api_endpoint: "NonEmptyString", # api_id: "NonEmptyString", # api_key_selection_expression: "NonEmptyString", # created_date: "NonEmptyString", # description: "NonEmptyString", # version: "NonEmptyString", # name: "NonEmptyString", # protocol_type: "NonEmptyString", # route_selection_expression: "NonEmptyString", # cors_configuration: { # allow_origins: ["NonEmptyString"], # allow_credentials: false, # expose_headers: ["NonEmptyString"], # max_age: 1, # allow_methods: ["NonEmptyString"], # allow_headers: ["NonEmptyString"], # }, # }, # aws_dynamo_db_table: { # attribute_definitions: [ # { # attribute_name: "NonEmptyString", # attribute_type: "NonEmptyString", # }, # ], # billing_mode_summary: { # billing_mode: "NonEmptyString", # last_update_to_pay_per_request_date_time: "NonEmptyString", # }, # creation_date_time: "NonEmptyString", # global_secondary_indexes: [ # { # backfilling: false, # index_arn: "NonEmptyString", # index_name: "NonEmptyString", # index_size_bytes: 1, # index_status: "NonEmptyString", # item_count: 1, # key_schema: [ # { # attribute_name: "NonEmptyString", # key_type: "NonEmptyString", # }, # ], # projection: { # non_key_attributes: ["NonEmptyString"], # projection_type: "NonEmptyString", # }, # provisioned_throughput: { # last_decrease_date_time: "NonEmptyString", # last_increase_date_time: "NonEmptyString", # number_of_decreases_today: 1, # read_capacity_units: 1, # write_capacity_units: 1, # }, # }, # ], # global_table_version: "NonEmptyString", # item_count: 1, # key_schema: [ # { # attribute_name: "NonEmptyString", # key_type: "NonEmptyString", # }, # ], # latest_stream_arn: "NonEmptyString", # latest_stream_label: "NonEmptyString", # local_secondary_indexes: [ # { # index_arn: "NonEmptyString", # index_name: "NonEmptyString", # key_schema: [ # { # attribute_name: "NonEmptyString", # key_type: "NonEmptyString", # }, # ], # projection: { # non_key_attributes: ["NonEmptyString"], # projection_type: "NonEmptyString", # }, # }, # ], # provisioned_throughput: { # last_decrease_date_time: "NonEmptyString", # last_increase_date_time: "NonEmptyString", # number_of_decreases_today: 1, # read_capacity_units: 1, # write_capacity_units: 1, # }, # replicas: [ # { # global_secondary_indexes: [ # { # index_name: "NonEmptyString", # provisioned_throughput_override: { # read_capacity_units: 1, # }, # }, # ], # kms_master_key_id: "NonEmptyString", # provisioned_throughput_override: { # read_capacity_units: 1, # }, # region_name: "NonEmptyString", # replica_status: "NonEmptyString", # replica_status_description: "NonEmptyString", # }, # ], # restore_summary: { # source_backup_arn: "NonEmptyString", # source_table_arn: "NonEmptyString", # restore_date_time: "NonEmptyString", # restore_in_progress: false, # }, # sse_description: { # inaccessible_encryption_date_time: "NonEmptyString", # status: "NonEmptyString", # sse_type: "NonEmptyString", # kms_master_key_arn: "NonEmptyString", # }, # stream_specification: { # stream_enabled: false, # stream_view_type: "NonEmptyString", # }, # table_id: "NonEmptyString", # table_name: "NonEmptyString", # table_size_bytes: 1, # table_status: "NonEmptyString", # }, # aws_api_gateway_stage: { # deployment_id: "NonEmptyString", # client_certificate_id: "NonEmptyString", # stage_name: "NonEmptyString", # description: "NonEmptyString", # cache_cluster_enabled: false, # cache_cluster_size: "NonEmptyString", # cache_cluster_status: "NonEmptyString", # method_settings: [ # { # metrics_enabled: false, # logging_level: "NonEmptyString", # data_trace_enabled: false, # throttling_burst_limit: 1, # throttling_rate_limit: 1.0, # caching_enabled: false, # cache_ttl_in_seconds: 1, # cache_data_encrypted: false, # require_authorization_for_cache_control: false, # unauthorized_cache_control_header_strategy: "NonEmptyString", # http_method: "NonEmptyString", # resource_path: "NonEmptyString", # }, # ], # variables: { # "NonEmptyString" => "NonEmptyString", # }, # documentation_version: "NonEmptyString", # access_log_settings: { # format: "NonEmptyString", # destination_arn: "NonEmptyString", # }, # canary_settings: { # percent_traffic: 1.0, # deployment_id: "NonEmptyString", # stage_variable_overrides: { # "NonEmptyString" => "NonEmptyString", # }, # use_stage_cache: false, # }, # tracing_enabled: false, # created_date: "NonEmptyString", # last_updated_date: "NonEmptyString", # web_acl_arn: "NonEmptyString", # }, # aws_api_gateway_rest_api: { # id: "NonEmptyString", # name: "NonEmptyString", # description: "NonEmptyString", # created_date: "NonEmptyString", # version: "NonEmptyString", # binary_media_types: ["NonEmptyString"], # minimum_compression_size: 1, # api_key_source: "NonEmptyString", # endpoint_configuration: { # types: ["NonEmptyString"], # }, # }, # aws_cloud_trail_trail: { # cloud_watch_logs_log_group_arn: "NonEmptyString", # cloud_watch_logs_role_arn: "NonEmptyString", # has_custom_event_selectors: false, # home_region: "NonEmptyString", # include_global_service_events: false, # is_multi_region_trail: false, # is_organization_trail: false, # kms_key_id: "NonEmptyString", # log_file_validation_enabled: false, # name: "NonEmptyString", # s3_bucket_name: "NonEmptyString", # s3_key_prefix: "NonEmptyString", # sns_topic_arn: "NonEmptyString", # sns_topic_name: "NonEmptyString", # trail_arn: "NonEmptyString", # }, # aws_ssm_patch_compliance: { # patch: { # compliance_summary: { # status: "NonEmptyString", # compliant_critical_count: 1, # compliant_high_count: 1, # compliant_medium_count: 1, # execution_type: "NonEmptyString", # non_compliant_critical_count: 1, # compliant_informational_count: 1, # non_compliant_informational_count: 1, # compliant_unspecified_count: 1, # non_compliant_low_count: 1, # non_compliant_high_count: 1, # compliant_low_count: 1, # compliance_type: "NonEmptyString", # patch_baseline_id: "NonEmptyString", # overall_severity: "NonEmptyString", # non_compliant_medium_count: 1, # non_compliant_unspecified_count: 1, # patch_group: "NonEmptyString", # }, # }, # }, # aws_certificate_manager_certificate: { # certificate_authority_arn: "NonEmptyString", # created_at: "NonEmptyString", # domain_name: "NonEmptyString", # domain_validation_options: [ # { # domain_name: "NonEmptyString", # resource_record: { # name: "NonEmptyString", # type: "NonEmptyString", # value: "NonEmptyString", # }, # validation_domain: "NonEmptyString", # validation_emails: ["NonEmptyString"], # validation_method: "NonEmptyString", # validation_status: "NonEmptyString", # }, # ], # extended_key_usages: [ # { # name: "NonEmptyString", # o_id: "NonEmptyString", # }, # ], # failure_reason: "NonEmptyString", # imported_at: "NonEmptyString", # in_use_by: ["NonEmptyString"], # issued_at: "NonEmptyString", # issuer: "NonEmptyString", # key_algorithm: "NonEmptyString", # key_usages: [ # { # name: "NonEmptyString", # }, # ], # not_after: "NonEmptyString", # not_before: "NonEmptyString", # options: { # certificate_transparency_logging_preference: "NonEmptyString", # }, # renewal_eligibility: "NonEmptyString", # renewal_summary: { # domain_validation_options: [ # { # domain_name: "NonEmptyString", # resource_record: { # name: "NonEmptyString", # type: "NonEmptyString", # value: "NonEmptyString", # }, # validation_domain: "NonEmptyString", # validation_emails: ["NonEmptyString"], # validation_method: "NonEmptyString", # validation_status: "NonEmptyString", # }, # ], # renewal_status: "NonEmptyString", # renewal_status_reason: "NonEmptyString", # updated_at: "NonEmptyString", # }, # serial: "NonEmptyString", # signature_algorithm: "NonEmptyString", # status: "NonEmptyString", # subject: "NonEmptyString", # subject_alternative_names: ["NonEmptyString"], # type: "NonEmptyString", # }, # aws_redshift_cluster: { # allow_version_upgrade: false, # automated_snapshot_retention_period: 1, # availability_zone: "NonEmptyString", # cluster_availability_status: "NonEmptyString", # cluster_create_time: "NonEmptyString", # cluster_identifier: "NonEmptyString", # cluster_nodes: [ # { # node_role: "NonEmptyString", # private_ip_address: "NonEmptyString", # public_ip_address: "NonEmptyString", # }, # ], # cluster_parameter_groups: [ # { # cluster_parameter_status_list: [ # { # parameter_name: "NonEmptyString", # parameter_apply_status: "NonEmptyString", # parameter_apply_error_description: "NonEmptyString", # }, # ], # parameter_apply_status: "NonEmptyString", # parameter_group_name: "NonEmptyString", # }, # ], # cluster_public_key: "NonEmptyString", # cluster_revision_number: "NonEmptyString", # cluster_security_groups: [ # { # cluster_security_group_name: "NonEmptyString", # status: "NonEmptyString", # }, # ], # cluster_snapshot_copy_status: { # destination_region: "NonEmptyString", # manual_snapshot_retention_period: 1, # retention_period: 1, # snapshot_copy_grant_name: "NonEmptyString", # }, # cluster_status: "NonEmptyString", # cluster_subnet_group_name: "NonEmptyString", # cluster_version: "NonEmptyString", # db_name: "NonEmptyString", # deferred_maintenance_windows: [ # { # defer_maintenance_end_time: "NonEmptyString", # defer_maintenance_identifier: "NonEmptyString", # defer_maintenance_start_time: "NonEmptyString", # }, # ], # elastic_ip_status: { # elastic_ip: "NonEmptyString", # status: "NonEmptyString", # }, # elastic_resize_number_of_node_options: "NonEmptyString", # encrypted: false, # endpoint: { # address: "NonEmptyString", # port: 1, # }, # enhanced_vpc_routing: false, # expected_next_snapshot_schedule_time: "NonEmptyString", # expected_next_snapshot_schedule_time_status: "NonEmptyString", # hsm_status: { # hsm_client_certificate_identifier: "NonEmptyString", # hsm_configuration_identifier: "NonEmptyString", # status: "NonEmptyString", # }, # iam_roles: [ # { # apply_status: "NonEmptyString", # iam_role_arn: "NonEmptyString", # }, # ], # kms_key_id: "NonEmptyString", # maintenance_track_name: "NonEmptyString", # manual_snapshot_retention_period: 1, # master_username: "NonEmptyString", # next_maintenance_window_start_time: "NonEmptyString", # node_type: "NonEmptyString", # number_of_nodes: 1, # pending_actions: ["NonEmptyString"], # pending_modified_values: { # automated_snapshot_retention_period: 1, # cluster_identifier: "NonEmptyString", # cluster_type: "NonEmptyString", # cluster_version: "NonEmptyString", # encryption_type: "NonEmptyString", # enhanced_vpc_routing: false, # maintenance_track_name: "NonEmptyString", # master_user_password: "NonEmptyString", # node_type: "NonEmptyString", # number_of_nodes: 1, # publicly_accessible: false, # }, # preferred_maintenance_window: "NonEmptyString", # publicly_accessible: false, # resize_info: { # allow_cancel_resize: false, # resize_type: "NonEmptyString", # }, # restore_status: { # current_restore_rate_in_mega_bytes_per_second: 1.0, # elapsed_time_in_seconds: 1, # estimated_time_to_completion_in_seconds: 1, # progress_in_mega_bytes: 1, # snapshot_size_in_mega_bytes: 1, # status: "NonEmptyString", # }, # snapshot_schedule_identifier: "NonEmptyString", # snapshot_schedule_state: "NonEmptyString", # vpc_id: "NonEmptyString", # vpc_security_groups: [ # { # status: "NonEmptyString", # vpc_security_group_id: "NonEmptyString", # }, # ], # logging_status: { # bucket_name: "NonEmptyString", # last_failure_message: "NonEmptyString", # last_failure_time: "NonEmptyString", # last_successful_delivery_time: "NonEmptyString", # logging_enabled: false, # s3_key_prefix: "NonEmptyString", # }, # }, # aws_elb_load_balancer: { # availability_zones: ["NonEmptyString"], # backend_server_descriptions: [ # { # instance_port: 1, # policy_names: ["NonEmptyString"], # }, # ], # canonical_hosted_zone_name: "NonEmptyString", # canonical_hosted_zone_name_id: "NonEmptyString", # created_time: "NonEmptyString", # dns_name: "NonEmptyString", # health_check: { # healthy_threshold: 1, # interval: 1, # target: "NonEmptyString", # timeout: 1, # unhealthy_threshold: 1, # }, # instances: [ # { # instance_id: "NonEmptyString", # }, # ], # listener_descriptions: [ # { # listener: { # instance_port: 1, # instance_protocol: "NonEmptyString", # load_balancer_port: 1, # protocol: "NonEmptyString", # ssl_certificate_id: "NonEmptyString", # }, # policy_names: ["NonEmptyString"], # }, # ], # load_balancer_attributes: { # access_log: { # emit_interval: 1, # enabled: false, # s3_bucket_name: "NonEmptyString", # s3_bucket_prefix: "NonEmptyString", # }, # connection_draining: { # enabled: false, # timeout: 1, # }, # connection_settings: { # idle_timeout: 1, # }, # cross_zone_load_balancing: { # enabled: false, # }, # additional_attributes: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # }, # ], # }, # load_balancer_name: "NonEmptyString", # policies: { # app_cookie_stickiness_policies: [ # { # cookie_name: "NonEmptyString", # policy_name: "NonEmptyString", # }, # ], # lb_cookie_stickiness_policies: [ # { # cookie_expiration_period: 1, # policy_name: "NonEmptyString", # }, # ], # other_policies: ["NonEmptyString"], # }, # scheme: "NonEmptyString", # security_groups: ["NonEmptyString"], # source_security_group: { # group_name: "NonEmptyString", # owner_alias: "NonEmptyString", # }, # subnets: ["NonEmptyString"], # vpc_id: "NonEmptyString", # }, # aws_iam_group: { # attached_managed_policies: [ # { # policy_name: "NonEmptyString", # policy_arn: "NonEmptyString", # }, # ], # create_date: "NonEmptyString", # group_id: "NonEmptyString", # group_name: "NonEmptyString", # group_policy_list: [ # { # policy_name: "NonEmptyString", # }, # ], # path: "NonEmptyString", # }, # aws_iam_role: { # assume_role_policy_document: "AwsIamRoleAssumeRolePolicyDocument", # attached_managed_policies: [ # { # policy_name: "NonEmptyString", # policy_arn: "NonEmptyString", # }, # ], # create_date: "NonEmptyString", # instance_profile_list: [ # { # arn: "NonEmptyString", # create_date: "NonEmptyString", # instance_profile_id: "NonEmptyString", # instance_profile_name: "NonEmptyString", # path: "NonEmptyString", # roles: [ # { # arn: "NonEmptyString", # assume_role_policy_document: "AwsIamRoleAssumeRolePolicyDocument", # create_date: "NonEmptyString", # path: "NonEmptyString", # role_id: "NonEmptyString", # role_name: "NonEmptyString", # }, # ], # }, # ], # permissions_boundary: { # permissions_boundary_arn: "NonEmptyString", # permissions_boundary_type: "NonEmptyString", # }, # role_id: "NonEmptyString", # role_name: "NonEmptyString", # role_policy_list: [ # { # policy_name: "NonEmptyString", # }, # ], # max_session_duration: 1, # path: "NonEmptyString", # }, # aws_kms_key: { # aws_account_id: "NonEmptyString", # creation_date: 1.0, # key_id: "NonEmptyString", # key_manager: "NonEmptyString", # key_state: "NonEmptyString", # origin: "NonEmptyString", # description: "NonEmptyString", # key_rotation_status: false, # }, # aws_lambda_function: { # code: { # s3_bucket: "NonEmptyString", # s3_key: "NonEmptyString", # s3_object_version: "NonEmptyString", # zip_file: "NonEmptyString", # }, # code_sha_256: "NonEmptyString", # dead_letter_config: { # target_arn: "NonEmptyString", # }, # environment: { # variables: { # "NonEmptyString" => "NonEmptyString", # }, # error: { # error_code: "NonEmptyString", # message: "NonEmptyString", # }, # }, # function_name: "NonEmptyString", # handler: "NonEmptyString", # kms_key_arn: "NonEmptyString", # last_modified: "NonEmptyString", # layers: [ # { # arn: "NonEmptyString", # code_size: 1, # }, # ], # master_arn: "NonEmptyString", # memory_size: 1, # revision_id: "NonEmptyString", # role: "NonEmptyString", # runtime: "NonEmptyString", # timeout: 1, # tracing_config: { # mode: "NonEmptyString", # }, # vpc_config: { # security_group_ids: ["NonEmptyString"], # subnet_ids: ["NonEmptyString"], # vpc_id: "NonEmptyString", # }, # version: "NonEmptyString", # }, # aws_lambda_layer_version: { # version: 1, # compatible_runtimes: ["NonEmptyString"], # created_date: "NonEmptyString", # }, # aws_rds_db_instance: { # associated_roles: [ # { # role_arn: "NonEmptyString", # feature_name: "NonEmptyString", # status: "NonEmptyString", # }, # ], # ca_certificate_identifier: "NonEmptyString", # db_cluster_identifier: "NonEmptyString", # db_instance_identifier: "NonEmptyString", # db_instance_class: "NonEmptyString", # db_instance_port: 1, # dbi_resource_id: "NonEmptyString", # db_name: "NonEmptyString", # deletion_protection: false, # endpoint: { # address: "NonEmptyString", # port: 1, # hosted_zone_id: "NonEmptyString", # }, # engine: "NonEmptyString", # engine_version: "NonEmptyString", # iam_database_authentication_enabled: false, # instance_create_time: "NonEmptyString", # kms_key_id: "NonEmptyString", # publicly_accessible: false, # storage_encrypted: false, # tde_credential_arn: "NonEmptyString", # vpc_security_groups: [ # { # vpc_security_group_id: "NonEmptyString", # status: "NonEmptyString", # }, # ], # multi_az: false, # enhanced_monitoring_resource_arn: "NonEmptyString", # db_instance_status: "NonEmptyString", # master_username: "NonEmptyString", # allocated_storage: 1, # preferred_backup_window: "NonEmptyString", # backup_retention_period: 1, # db_security_groups: ["NonEmptyString"], # db_parameter_groups: [ # { # db_parameter_group_name: "NonEmptyString", # parameter_apply_status: "NonEmptyString", # }, # ], # availability_zone: "NonEmptyString", # db_subnet_group: { # db_subnet_group_name: "NonEmptyString", # db_subnet_group_description: "NonEmptyString", # vpc_id: "NonEmptyString", # subnet_group_status: "NonEmptyString", # subnets: [ # { # subnet_identifier: "NonEmptyString", # subnet_availability_zone: { # name: "NonEmptyString", # }, # subnet_status: "NonEmptyString", # }, # ], # db_subnet_group_arn: "NonEmptyString", # }, # preferred_maintenance_window: "NonEmptyString", # pending_modified_values: { # db_instance_class: "NonEmptyString", # allocated_storage: 1, # master_user_password: "NonEmptyString", # port: 1, # backup_retention_period: 1, # multi_az: false, # engine_version: "NonEmptyString", # license_model: "NonEmptyString", # iops: 1, # db_instance_identifier: "NonEmptyString", # storage_type: "NonEmptyString", # ca_certificate_identifier: "NonEmptyString", # db_subnet_group_name: "NonEmptyString", # pending_cloud_watch_logs_exports: { # log_types_to_enable: ["NonEmptyString"], # log_types_to_disable: ["NonEmptyString"], # }, # processor_features: [ # { # name: "NonEmptyString", # value: "NonEmptyString", # }, # ], # }, # latest_restorable_time: "NonEmptyString", # auto_minor_version_upgrade: false, # read_replica_source_db_instance_identifier: "NonEmptyString", # read_replica_db_instance_identifiers: ["NonEmptyString"], # read_replica_db_cluster_identifiers: ["NonEmptyString"], # license_model: "NonEmptyString", # iops: 1, # option_group_memberships: [ # { # option_group_name: "NonEmptyString", # status: "NonEmptyString", # }, # ], # character_set_name: "NonEmptyString", # secondary_availability_zone: "NonEmptyString", # status_infos: [ # { # status_type: "NonEmptyString", # normal: false, # status: "NonEmptyString", # message: "NonEmptyString", # }, # ], # storage_type: "NonEmptyString", # domain_memberships: [ # { # domain: "NonEmptyString", # status: "NonEmptyString", # fqdn: "NonEmptyString", # iam_role_name: "NonEmptyString", # }, # ], # copy_tags_to_snapshot: false, # monitoring_interval: 1, # monitoring_role_arn: "NonEmptyString", # promotion_tier: 1, # timezone: "NonEmptyString", # performance_insights_enabled: false, # performance_insights_kms_key_id: "NonEmptyString", # performance_insights_retention_period: 1, # enabled_cloud_watch_logs_exports: ["NonEmptyString"], # processor_features: [ # { # name: "NonEmptyString", # value: "NonEmptyString", # }, # ], # listener_endpoint: { # address: "NonEmptyString", # port: 1, # hosted_zone_id: "NonEmptyString", # }, # max_allocated_storage: 1, # }, # aws_sns_topic: { # kms_master_key_id: "NonEmptyString", # subscription: [ # { # endpoint: "NonEmptyString", # protocol: "NonEmptyString", # }, # ], # topic_name: "NonEmptyString", # owner: "NonEmptyString", # sqs_success_feedback_role_arn: "NonEmptyString", # sqs_failure_feedback_role_arn: "NonEmptyString", # application_success_feedback_role_arn: "NonEmptyString", # firehose_success_feedback_role_arn: "NonEmptyString", # firehose_failure_feedback_role_arn: "NonEmptyString", # http_success_feedback_role_arn: "NonEmptyString", # http_failure_feedback_role_arn: "NonEmptyString", # }, # aws_sqs_queue: { # kms_data_key_reuse_period_seconds: 1, # kms_master_key_id: "NonEmptyString", # queue_name: "NonEmptyString", # dead_letter_target_arn: "NonEmptyString", # }, # aws_waf_web_acl: { # name: "NonEmptyString", # default_action: "NonEmptyString", # rules: [ # { # action: { # type: "NonEmptyString", # }, # excluded_rules: [ # { # rule_id: "NonEmptyString", # }, # ], # override_action: { # type: "NonEmptyString", # }, # priority: 1, # rule_id: "NonEmptyString", # type: "NonEmptyString", # }, # ], # web_acl_id: "NonEmptyString", # }, # aws_rds_db_snapshot: { # db_snapshot_identifier: "NonEmptyString", # db_instance_identifier: "NonEmptyString", # snapshot_create_time: "NonEmptyString", # engine: "NonEmptyString", # allocated_storage: 1, # status: "NonEmptyString", # port: 1, # availability_zone: "NonEmptyString", # vpc_id: "NonEmptyString", # instance_create_time: "NonEmptyString", # master_username: "NonEmptyString", # engine_version: "NonEmptyString", # license_model: "NonEmptyString", # snapshot_type: "NonEmptyString", # iops: 1, # option_group_name: "NonEmptyString", # percent_progress: 1, # source_region: "NonEmptyString", # source_db_snapshot_identifier: "NonEmptyString", # storage_type: "NonEmptyString", # tde_credential_arn: "NonEmptyString", # encrypted: false, # kms_key_id: "NonEmptyString", # timezone: "NonEmptyString", # iam_database_authentication_enabled: false, # processor_features: [ # { # name: "NonEmptyString", # value: "NonEmptyString", # }, # ], # dbi_resource_id: "NonEmptyString", # }, # aws_rds_db_cluster_snapshot: { # availability_zones: ["NonEmptyString"], # snapshot_create_time: "NonEmptyString", # engine: "NonEmptyString", # allocated_storage: 1, # status: "NonEmptyString", # port: 1, # vpc_id: "NonEmptyString", # cluster_create_time: "NonEmptyString", # master_username: "NonEmptyString", # engine_version: "NonEmptyString", # license_model: "NonEmptyString", # snapshot_type: "NonEmptyString", # percent_progress: 1, # storage_encrypted: false, # kms_key_id: "NonEmptyString", # db_cluster_identifier: "NonEmptyString", # db_cluster_snapshot_identifier: "NonEmptyString", # iam_database_authentication_enabled: false, # }, # aws_rds_db_cluster: { # allocated_storage: 1, # availability_zones: ["NonEmptyString"], # backup_retention_period: 1, # database_name: "NonEmptyString", # status: "NonEmptyString", # endpoint: "NonEmptyString", # reader_endpoint: "NonEmptyString", # custom_endpoints: ["NonEmptyString"], # multi_az: false, # engine: "NonEmptyString", # engine_version: "NonEmptyString", # port: 1, # master_username: "NonEmptyString", # preferred_backup_window: "NonEmptyString", # preferred_maintenance_window: "NonEmptyString", # read_replica_identifiers: ["NonEmptyString"], # vpc_security_groups: [ # { # vpc_security_group_id: "NonEmptyString", # status: "NonEmptyString", # }, # ], # hosted_zone_id: "NonEmptyString", # storage_encrypted: false, # kms_key_id: "NonEmptyString", # db_cluster_resource_id: "NonEmptyString", # associated_roles: [ # { # role_arn: "NonEmptyString", # status: "NonEmptyString", # }, # ], # cluster_create_time: "NonEmptyString", # enabled_cloud_watch_logs_exports: ["NonEmptyString"], # engine_mode: "NonEmptyString", # deletion_protection: false, # http_endpoint_enabled: false, # activity_stream_status: "NonEmptyString", # copy_tags_to_snapshot: false, # cross_account_clone: false, # domain_memberships: [ # { # domain: "NonEmptyString", # status: "NonEmptyString", # fqdn: "NonEmptyString", # iam_role_name: "NonEmptyString", # }, # ], # db_cluster_parameter_group: "NonEmptyString", # db_subnet_group: "NonEmptyString", # db_cluster_option_group_memberships: [ # { # db_cluster_option_group_name: "NonEmptyString", # status: "NonEmptyString", # }, # ], # db_cluster_identifier: "NonEmptyString", # db_cluster_members: [ # { # is_cluster_writer: false, # promotion_tier: 1, # db_instance_identifier: "NonEmptyString", # db_cluster_parameter_group_status: "NonEmptyString", # }, # ], # iam_database_authentication_enabled: false, # }, # aws_ecs_cluster: { # cluster_arn: "NonEmptyString", # active_services_count: 1, # capacity_providers: ["NonEmptyString"], # cluster_settings: [ # { # name: "NonEmptyString", # value: "NonEmptyString", # }, # ], # configuration: { # execute_command_configuration: { # kms_key_id: "NonEmptyString", # log_configuration: { # cloud_watch_encryption_enabled: false, # cloud_watch_log_group_name: "NonEmptyString", # s3_bucket_name: "NonEmptyString", # s3_encryption_enabled: false, # s3_key_prefix: "NonEmptyString", # }, # logging: "NonEmptyString", # }, # }, # default_capacity_provider_strategy: [ # { # base: 1, # capacity_provider: "NonEmptyString", # weight: 1, # }, # ], # cluster_name: "NonEmptyString", # registered_container_instances_count: 1, # running_tasks_count: 1, # status: "NonEmptyString", # }, # aws_ecs_container: { # name: "NonEmptyString", # image: "NonEmptyString", # mount_points: [ # { # source_volume: "NonEmptyString", # container_path: "NonEmptyString", # }, # ], # privileged: false, # }, # aws_ecs_task_definition: { # container_definitions: [ # { # command: ["NonEmptyString"], # cpu: 1, # depends_on: [ # { # condition: "NonEmptyString", # container_name: "NonEmptyString", # }, # ], # disable_networking: false, # dns_search_domains: ["NonEmptyString"], # dns_servers: ["NonEmptyString"], # docker_labels: { # "NonEmptyString" => "NonEmptyString", # }, # docker_security_options: ["NonEmptyString"], # entry_point: ["NonEmptyString"], # environment: [ # { # name: "NonEmptyString", # value: "NonEmptyString", # }, # ], # environment_files: [ # { # type: "NonEmptyString", # value: "NonEmptyString", # }, # ], # essential: false, # extra_hosts: [ # { # hostname: "NonEmptyString", # ip_address: "NonEmptyString", # }, # ], # firelens_configuration: { # options: { # "NonEmptyString" => "NonEmptyString", # }, # type: "NonEmptyString", # }, # health_check: { # command: ["NonEmptyString"], # interval: 1, # retries: 1, # start_period: 1, # timeout: 1, # }, # hostname: "NonEmptyString", # image: "NonEmptyString", # interactive: false, # links: ["NonEmptyString"], # linux_parameters: { # capabilities: { # add: ["NonEmptyString"], # drop: ["NonEmptyString"], # }, # devices: [ # { # container_path: "NonEmptyString", # host_path: "NonEmptyString", # permissions: ["NonEmptyString"], # }, # ], # init_process_enabled: false, # max_swap: 1, # shared_memory_size: 1, # swappiness: 1, # tmpfs: [ # { # container_path: "NonEmptyString", # mount_options: ["NonEmptyString"], # size: 1, # }, # ], # }, # log_configuration: { # log_driver: "NonEmptyString", # options: { # "NonEmptyString" => "NonEmptyString", # }, # secret_options: [ # { # name: "NonEmptyString", # value_from: "NonEmptyString", # }, # ], # }, # memory: 1, # memory_reservation: 1, # mount_points: [ # { # container_path: "NonEmptyString", # read_only: false, # source_volume: "NonEmptyString", # }, # ], # name: "NonEmptyString", # port_mappings: [ # { # container_port: 1, # host_port: 1, # protocol: "NonEmptyString", # }, # ], # privileged: false, # pseudo_terminal: false, # readonly_root_filesystem: false, # repository_credentials: { # credentials_parameter: "NonEmptyString", # }, # resource_requirements: [ # { # type: "NonEmptyString", # value: "NonEmptyString", # }, # ], # secrets: [ # { # name: "NonEmptyString", # value_from: "NonEmptyString", # }, # ], # start_timeout: 1, # stop_timeout: 1, # system_controls: [ # { # namespace: "NonEmptyString", # value: "NonEmptyString", # }, # ], # ulimits: [ # { # hard_limit: 1, # name: "NonEmptyString", # soft_limit: 1, # }, # ], # user: "NonEmptyString", # volumes_from: [ # { # read_only: false, # source_container: "NonEmptyString", # }, # ], # working_directory: "NonEmptyString", # }, # ], # cpu: "NonEmptyString", # execution_role_arn: "NonEmptyString", # family: "NonEmptyString", # inference_accelerators: [ # { # device_name: "NonEmptyString", # device_type: "NonEmptyString", # }, # ], # ipc_mode: "NonEmptyString", # memory: "NonEmptyString", # network_mode: "NonEmptyString", # pid_mode: "NonEmptyString", # placement_constraints: [ # { # expression: "NonEmptyString", # type: "NonEmptyString", # }, # ], # proxy_configuration: { # container_name: "NonEmptyString", # proxy_configuration_properties: [ # { # name: "NonEmptyString", # value: "NonEmptyString", # }, # ], # type: "NonEmptyString", # }, # requires_compatibilities: ["NonEmptyString"], # task_role_arn: "NonEmptyString", # volumes: [ # { # docker_volume_configuration: { # autoprovision: false, # driver: "NonEmptyString", # driver_opts: { # "NonEmptyString" => "NonEmptyString", # }, # labels: { # "NonEmptyString" => "NonEmptyString", # }, # scope: "NonEmptyString", # }, # efs_volume_configuration: { # authorization_config: { # access_point_id: "NonEmptyString", # iam: "NonEmptyString", # }, # filesystem_id: "NonEmptyString", # root_directory: "NonEmptyString", # transit_encryption: "NonEmptyString", # transit_encryption_port: 1, # }, # host: { # source_path: "NonEmptyString", # }, # name: "NonEmptyString", # }, # ], # }, # container: { # container_runtime: "NonEmptyString", # name: "NonEmptyString", # image_id: "NonEmptyString", # image_name: "NonEmptyString", # launched_at: "NonEmptyString", # volume_mounts: [ # { # name: "NonEmptyString", # mount_path: "NonEmptyString", # }, # ], # privileged: false, # }, # other: { # "NonEmptyString" => "NonEmptyString", # }, # aws_rds_event_subscription: { # cust_subscription_id: "NonEmptyString", # customer_aws_id: "NonEmptyString", # enabled: false, # event_categories_list: ["NonEmptyString"], # event_subscription_arn: "NonEmptyString", # sns_topic_arn: "NonEmptyString", # source_ids_list: ["NonEmptyString"], # source_type: "NonEmptyString", # status: "NonEmptyString", # subscription_creation_time: "NonEmptyString", # }, # aws_ecs_service: { # capacity_provider_strategy: [ # { # base: 1, # capacity_provider: "NonEmptyString", # weight: 1, # }, # ], # cluster: "NonEmptyString", # deployment_configuration: { # deployment_circuit_breaker: { # enable: false, # rollback: false, # }, # maximum_percent: 1, # minimum_healthy_percent: 1, # }, # deployment_controller: { # type: "NonEmptyString", # }, # desired_count: 1, # enable_ecs_managed_tags: false, # enable_execute_command: false, # health_check_grace_period_seconds: 1, # launch_type: "NonEmptyString", # load_balancers: [ # { # container_name: "NonEmptyString", # container_port: 1, # load_balancer_name: "NonEmptyString", # target_group_arn: "NonEmptyString", # }, # ], # name: "NonEmptyString", # network_configuration: { # aws_vpc_configuration: { # assign_public_ip: "NonEmptyString", # security_groups: ["NonEmptyString"], # subnets: ["NonEmptyString"], # }, # }, # placement_constraints: [ # { # expression: "NonEmptyString", # type: "NonEmptyString", # }, # ], # placement_strategies: [ # { # field: "NonEmptyString", # type: "NonEmptyString", # }, # ], # platform_version: "NonEmptyString", # propagate_tags: "NonEmptyString", # role: "NonEmptyString", # scheduling_strategy: "NonEmptyString", # service_arn: "NonEmptyString", # service_name: "NonEmptyString", # service_registries: [ # { # container_name: "NonEmptyString", # container_port: 1, # port: 1, # registry_arn: "NonEmptyString", # }, # ], # task_definition: "NonEmptyString", # }, # aws_auto_scaling_launch_configuration: { # associate_public_ip_address: false, # block_device_mappings: [ # { # device_name: "NonEmptyString", # ebs: { # delete_on_termination: false, # encrypted: false, # iops: 1, # snapshot_id: "NonEmptyString", # volume_size: 1, # volume_type: "NonEmptyString", # }, # no_device: false, # virtual_name: "NonEmptyString", # }, # ], # classic_link_vpc_id: "NonEmptyString", # classic_link_vpc_security_groups: ["NonEmptyString"], # created_time: "NonEmptyString", # ebs_optimized: false, # iam_instance_profile: "NonEmptyString", # image_id: "NonEmptyString", # instance_monitoring: { # enabled: false, # }, # instance_type: "NonEmptyString", # kernel_id: "NonEmptyString", # key_name: "NonEmptyString", # launch_configuration_name: "NonEmptyString", # placement_tenancy: "NonEmptyString", # ramdisk_id: "NonEmptyString", # security_groups: ["NonEmptyString"], # spot_price: "NonEmptyString", # user_data: "NonEmptyString", # metadata_options: { # http_endpoint: "NonEmptyString", # http_put_response_hop_limit: 1, # http_tokens: "NonEmptyString", # }, # }, # aws_ec2_vpn_connection: { # vpn_connection_id: "NonEmptyString", # state: "NonEmptyString", # customer_gateway_id: "NonEmptyString", # customer_gateway_configuration: "NonEmptyString", # type: "NonEmptyString", # vpn_gateway_id: "NonEmptyString", # category: "NonEmptyString", # vgw_telemetry: [ # { # accepted_route_count: 1, # certificate_arn: "NonEmptyString", # last_status_change: "NonEmptyString", # outside_ip_address: "NonEmptyString", # status: "NonEmptyString", # status_message: "NonEmptyString", # }, # ], # options: { # static_routes_only: false, # tunnel_options: [ # { # dpd_timeout_seconds: 1, # ike_versions: ["NonEmptyString"], # outside_ip_address: "NonEmptyString", # phase_1_dh_group_numbers: [1], # phase_1_encryption_algorithms: ["NonEmptyString"], # phase_1_integrity_algorithms: ["NonEmptyString"], # phase_1_lifetime_seconds: 1, # phase_2_dh_group_numbers: [1], # phase_2_encryption_algorithms: ["NonEmptyString"], # phase_2_integrity_algorithms: ["NonEmptyString"], # phase_2_lifetime_seconds: 1, # pre_shared_key: "NonEmptyString", # rekey_fuzz_percentage: 1, # rekey_margin_time_seconds: 1, # replay_window_size: 1, # tunnel_inside_cidr: "NonEmptyString", # }, # ], # }, # routes: [ # { # destination_cidr_block: "NonEmptyString", # state: "NonEmptyString", # }, # ], # transit_gateway_id: "NonEmptyString", # }, # aws_ecr_container_image: { # registry_id: "NonEmptyString", # repository_name: "NonEmptyString", # architecture: "NonEmptyString", # image_digest: "NonEmptyString", # image_tags: ["NonEmptyString"], # image_published_at: "NonEmptyString", # }, # aws_open_search_service_domain: { # arn: "NonEmptyString", # access_policies: "NonEmptyString", # domain_name: "NonEmptyString", # id: "NonEmptyString", # domain_endpoint: "NonEmptyString", # engine_version: "NonEmptyString", # encryption_at_rest_options: { # enabled: false, # kms_key_id: "NonEmptyString", # }, # node_to_node_encryption_options: { # enabled: false, # }, # service_software_options: { # automated_update_date: "NonEmptyString", # cancellable: false, # current_version: "NonEmptyString", # description: "NonEmptyString", # new_version: "NonEmptyString", # update_available: false, # update_status: "NonEmptyString", # optional_deployment: false, # }, # cluster_config: { # instance_count: 1, # warm_enabled: false, # warm_count: 1, # dedicated_master_enabled: false, # zone_awareness_config: { # availability_zone_count: 1, # }, # dedicated_master_count: 1, # instance_type: "NonEmptyString", # warm_type: "NonEmptyString", # zone_awareness_enabled: false, # dedicated_master_type: "NonEmptyString", # }, # domain_endpoint_options: { # custom_endpoint_certificate_arn: "NonEmptyString", # custom_endpoint_enabled: false, # enforce_https: false, # custom_endpoint: "NonEmptyString", # tls_security_policy: "NonEmptyString", # }, # vpc_options: { # security_group_ids: ["NonEmptyString"], # subnet_ids: ["NonEmptyString"], # }, # log_publishing_options: { # index_slow_logs: { # cloud_watch_logs_log_group_arn: "NonEmptyString", # enabled: false, # }, # search_slow_logs: { # cloud_watch_logs_log_group_arn: "NonEmptyString", # enabled: false, # }, # audit_logs: { # cloud_watch_logs_log_group_arn: "NonEmptyString", # enabled: false, # }, # }, # domain_endpoints: { # "NonEmptyString" => "NonEmptyString", # }, # advanced_security_options: { # enabled: false, # internal_user_database_enabled: false, # master_user_options: { # master_user_arn: "NonEmptyString", # master_user_name: "NonEmptyString", # master_user_password: "NonEmptyString", # }, # }, # }, # aws_ec2_vpc_endpoint_service: { # acceptance_required: false, # availability_zones: ["NonEmptyString"], # base_endpoint_dns_names: ["NonEmptyString"], # manages_vpc_endpoints: false, # gateway_load_balancer_arns: ["NonEmptyString"], # network_load_balancer_arns: ["NonEmptyString"], # private_dns_name: "NonEmptyString", # service_id: "NonEmptyString", # service_name: "NonEmptyString", # service_state: "NonEmptyString", # service_type: [ # { # service_type: "NonEmptyString", # }, # ], # }, # aws_xray_encryption_config: { # key_id: "NonEmptyString", # status: "NonEmptyString", # type: "NonEmptyString", # }, # aws_waf_rate_based_rule: { # metric_name: "NonEmptyString", # name: "NonEmptyString", # rate_key: "NonEmptyString", # rate_limit: 1, # rule_id: "NonEmptyString", # match_predicates: [ # { # data_id: "NonEmptyString", # negated: false, # type: "NonEmptyString", # }, # ], # }, # aws_waf_regional_rate_based_rule: { # metric_name: "NonEmptyString", # name: "NonEmptyString", # rate_key: "NonEmptyString", # rate_limit: 1, # rule_id: "NonEmptyString", # match_predicates: [ # { # data_id: "NonEmptyString", # negated: false, # type: "NonEmptyString", # }, # ], # }, # aws_ecr_repository: { # arn: "NonEmptyString", # image_scanning_configuration: { # scan_on_push: false, # }, # image_tag_mutability: "NonEmptyString", # lifecycle_policy: { # lifecycle_policy_text: "NonEmptyString", # registry_id: "NonEmptyString", # }, # repository_name: "NonEmptyString", # repository_policy_text: "NonEmptyString", # }, # aws_eks_cluster: { # arn: "NonEmptyString", # certificate_authority_data: "NonEmptyString", # cluster_status: "NonEmptyString", # endpoint: "NonEmptyString", # name: "NonEmptyString", # resources_vpc_config: { # security_group_ids: ["NonEmptyString"], # subnet_ids: ["NonEmptyString"], # }, # role_arn: "NonEmptyString", # version: "NonEmptyString", # logging: { # cluster_logging: [ # { # enabled: false, # types: ["NonEmptyString"], # }, # ], # }, # }, # aws_network_firewall_firewall_policy: { # firewall_policy: { # stateful_rule_group_references: [ # { # resource_arn: "NonEmptyString", # }, # ], # stateless_custom_actions: [ # { # action_definition: { # publish_metric_action: { # dimensions: [ # { # value: "NonEmptyString", # }, # ], # }, # }, # action_name: "NonEmptyString", # }, # ], # stateless_default_actions: ["NonEmptyString"], # stateless_fragment_default_actions: ["NonEmptyString"], # stateless_rule_group_references: [ # { # priority: 1, # resource_arn: "NonEmptyString", # }, # ], # }, # firewall_policy_arn: "NonEmptyString", # firewall_policy_id: "NonEmptyString", # firewall_policy_name: "NonEmptyString", # description: "NonEmptyString", # }, # aws_network_firewall_firewall: { # delete_protection: false, # description: "NonEmptyString", # firewall_arn: "NonEmptyString", # firewall_id: "NonEmptyString", # firewall_name: "NonEmptyString", # firewall_policy_arn: "NonEmptyString", # firewall_policy_change_protection: false, # subnet_change_protection: false, # subnet_mappings: [ # { # subnet_id: "NonEmptyString", # }, # ], # vpc_id: "NonEmptyString", # }, # aws_network_firewall_rule_group: { # capacity: 1, # description: "NonEmptyString", # rule_group: { # rule_variables: { # ip_sets: { # definition: ["NonEmptyString"], # }, # port_sets: { # definition: ["NonEmptyString"], # }, # }, # rules_source: { # rules_source_list: { # generated_rules_type: "NonEmptyString", # target_types: ["NonEmptyString"], # targets: ["NonEmptyString"], # }, # rules_string: "NonEmptyString", # stateful_rules: [ # { # action: "NonEmptyString", # header: { # destination: "NonEmptyString", # destination_port: "NonEmptyString", # direction: "NonEmptyString", # protocol: "NonEmptyString", # source: "NonEmptyString", # source_port: "NonEmptyString", # }, # rule_options: [ # { # keyword: "NonEmptyString", # settings: ["NonEmptyString"], # }, # ], # }, # ], # stateless_rules_and_custom_actions: { # custom_actions: [ # { # action_definition: { # publish_metric_action: { # dimensions: [ # { # value: "NonEmptyString", # }, # ], # }, # }, # action_name: "NonEmptyString", # }, # ], # stateless_rules: [ # { # priority: 1, # rule_definition: { # actions: ["NonEmptyString"], # match_attributes: { # destination_ports: [ # { # from_port: 1, # to_port: 1, # }, # ], # destinations: [ # { # address_definition: "NonEmptyString", # }, # ], # protocols: [1], # source_ports: [ # { # from_port: 1, # to_port: 1, # }, # ], # sources: [ # { # address_definition: "NonEmptyString", # }, # ], # tcp_flags: [ # { # flags: ["NonEmptyString"], # masks: ["NonEmptyString"], # }, # ], # }, # }, # }, # ], # }, # }, # }, # rule_group_arn: "NonEmptyString", # rule_group_id: "NonEmptyString", # rule_group_name: "NonEmptyString", # type: "NonEmptyString", # }, # aws_rds_db_security_group: { # db_security_group_arn: "NonEmptyString", # db_security_group_description: "NonEmptyString", # db_security_group_name: "NonEmptyString", # ec2_security_groups: [ # { # ec2_security_group_id: "NonEmptyString", # ec2_security_group_name: "NonEmptyString", # ec2_security_group_owner_id: "NonEmptyString", # status: "NonEmptyString", # }, # ], # ip_ranges: [ # { # cidr_ip: "NonEmptyString", # status: "NonEmptyString", # }, # ], # owner_id: "NonEmptyString", # vpc_id: "NonEmptyString", # }, # aws_kinesis_stream: { # name: "NonEmptyString", # arn: "NonEmptyString", # stream_encryption: { # encryption_type: "NonEmptyString", # key_id: "NonEmptyString", # }, # shard_count: 1, # retention_period_hours: 1, # }, # aws_ec2_transit_gateway: { # id: "NonEmptyString", # description: "NonEmptyString", # default_route_table_propagation: "NonEmptyString", # auto_accept_shared_attachments: "NonEmptyString", # default_route_table_association: "NonEmptyString", # transit_gateway_cidr_blocks: ["NonEmptyString"], # association_default_route_table_id: "NonEmptyString", # propagation_default_route_table_id: "NonEmptyString", # vpn_ecmp_support: "NonEmptyString", # dns_support: "NonEmptyString", # multicast_support: "NonEmptyString", # amazon_side_asn: 1, # }, # aws_efs_access_point: { # access_point_id: "NonEmptyString", # arn: "NonEmptyString", # client_token: "NonEmptyString", # file_system_id: "NonEmptyString", # posix_user: { # gid: "NonEmptyString", # secondary_gids: ["NonEmptyString"], # uid: "NonEmptyString", # }, # root_directory: { # creation_info: { # owner_gid: "NonEmptyString", # owner_uid: "NonEmptyString", # permissions: "NonEmptyString", # }, # path: "NonEmptyString", # }, # }, # aws_cloud_formation_stack: { # capabilities: ["NonEmptyString"], # creation_time: "NonEmptyString", # description: "NonEmptyString", # disable_rollback: false, # drift_information: { # stack_drift_status: "NonEmptyString", # }, # enable_termination_protection: false, # last_updated_time: "NonEmptyString", # notification_arns: ["NonEmptyString"], # outputs: [ # { # description: "NonEmptyString", # output_key: "NonEmptyString", # output_value: "NonEmptyString", # }, # ], # role_arn: "NonEmptyString", # stack_id: "NonEmptyString", # stack_name: "NonEmptyString", # stack_status: "NonEmptyString", # stack_status_reason: "NonEmptyString", # timeout_in_minutes: 1, # }, # aws_cloud_watch_alarm: { # actions_enabled: false, # alarm_actions: ["NonEmptyString"], # alarm_arn: "NonEmptyString", # alarm_configuration_updated_timestamp: "NonEmptyString", # alarm_description: "NonEmptyString", # alarm_name: "NonEmptyString", # comparison_operator: "NonEmptyString", # datapoints_to_alarm: 1, # dimensions: [ # { # name: "NonEmptyString", # value: "NonEmptyString", # }, # ], # evaluate_low_sample_count_percentile: "NonEmptyString", # evaluation_periods: 1, # extended_statistic: "NonEmptyString", # insufficient_data_actions: ["NonEmptyString"], # metric_name: "NonEmptyString", # namespace: "NonEmptyString", # ok_actions: ["NonEmptyString"], # period: 1, # statistic: "NonEmptyString", # threshold: 1.0, # threshold_metric_id: "NonEmptyString", # treat_missing_data: "NonEmptyString", # unit: "NonEmptyString", # }, # aws_ec2_vpc_peering_connection: { # accepter_vpc_info: { # cidr_block: "NonEmptyString", # cidr_block_set: [ # { # cidr_block: "NonEmptyString", # }, # ], # ipv_6_cidr_block_set: [ # { # ipv_6_cidr_block: "NonEmptyString", # }, # ], # owner_id: "NonEmptyString", # peering_options: { # allow_dns_resolution_from_remote_vpc: false, # allow_egress_from_local_classic_link_to_remote_vpc: false, # allow_egress_from_local_vpc_to_remote_classic_link: false, # }, # region: "NonEmptyString", # vpc_id: "NonEmptyString", # }, # expiration_time: "NonEmptyString", # requester_vpc_info: { # cidr_block: "NonEmptyString", # cidr_block_set: [ # { # cidr_block: "NonEmptyString", # }, # ], # ipv_6_cidr_block_set: [ # { # ipv_6_cidr_block: "NonEmptyString", # }, # ], # owner_id: "NonEmptyString", # peering_options: { # allow_dns_resolution_from_remote_vpc: false, # allow_egress_from_local_classic_link_to_remote_vpc: false, # allow_egress_from_local_vpc_to_remote_classic_link: false, # }, # region: "NonEmptyString", # vpc_id: "NonEmptyString", # }, # status: { # code: "NonEmptyString", # message: "NonEmptyString", # }, # vpc_peering_connection_id: "NonEmptyString", # }, # aws_waf_regional_rule_group: { # metric_name: "NonEmptyString", # name: "NonEmptyString", # rule_group_id: "NonEmptyString", # rules: [ # { # action: { # type: "NonEmptyString", # }, # priority: 1, # rule_id: "NonEmptyString", # type: "NonEmptyString", # }, # ], # }, # aws_waf_regional_rule: { # metric_name: "NonEmptyString", # name: "NonEmptyString", # predicate_list: [ # { # data_id: "NonEmptyString", # negated: false, # type: "NonEmptyString", # }, # ], # rule_id: "NonEmptyString", # }, # aws_waf_regional_web_acl: { # default_action: "NonEmptyString", # metric_name: "NonEmptyString", # name: "NonEmptyString", # rules_list: [ # { # action: { # type: "NonEmptyString", # }, # override_action: { # type: "NonEmptyString", # }, # priority: 1, # rule_id: "NonEmptyString", # type: "NonEmptyString", # }, # ], # web_acl_id: "NonEmptyString", # }, # aws_waf_rule: { # metric_name: "NonEmptyString", # name: "NonEmptyString", # predicate_list: [ # { # data_id: "NonEmptyString", # negated: false, # type: "NonEmptyString", # }, # ], # rule_id: "NonEmptyString", # }, # aws_waf_rule_group: { # metric_name: "NonEmptyString", # name: "NonEmptyString", # rule_group_id: "NonEmptyString", # rules: [ # { # action: { # type: "NonEmptyString", # }, # priority: 1, # rule_id: "NonEmptyString", # type: "NonEmptyString", # }, # ], # }, # aws_ecs_task: { # cluster_arn: "NonEmptyString", # task_definition_arn: "NonEmptyString", # version: "NonEmptyString", # created_at: "NonEmptyString", # started_at: "NonEmptyString", # started_by: "NonEmptyString", # group: "NonEmptyString", # volumes: [ # { # name: "NonEmptyString", # host: { # source_path: "NonEmptyString", # }, # }, # ], # containers: [ # { # name: "NonEmptyString", # image: "NonEmptyString", # mount_points: [ # { # source_volume: "NonEmptyString", # container_path: "NonEmptyString", # }, # ], # privileged: false, # }, # ], # }, # }, # }, # ], # compliance: { # status: "PASSED", # accepts PASSED, WARNING, FAILED, NOT_AVAILABLE # related_requirements: ["NonEmptyString"], # status_reasons: [ # { # reason_code: "NonEmptyString", # required # description: "NonEmptyString", # }, # ], # }, # verification_state: "UNKNOWN", # accepts UNKNOWN, TRUE_POSITIVE, FALSE_POSITIVE, BENIGN_POSITIVE # workflow_state: "NEW", # accepts NEW, ASSIGNED, IN_PROGRESS, DEFERRED, RESOLVED # workflow: { # status: "NEW", # accepts NEW, NOTIFIED, RESOLVED, SUPPRESSED # }, # record_state: "ACTIVE", # accepts ACTIVE, ARCHIVED # related_findings: [ # { # product_arn: "NonEmptyString", # required # id: "NonEmptyString", # required # }, # ], # note: { # text: "NonEmptyString", # required # updated_by: "NonEmptyString", # required # updated_at: "NonEmptyString", # required # }, # vulnerabilities: [ # { # id: "NonEmptyString", # required # vulnerable_packages: [ # { # name: "NonEmptyString", # version: "NonEmptyString", # epoch: "NonEmptyString", # release: "NonEmptyString", # architecture: "NonEmptyString", # package_manager: "NonEmptyString", # file_path: "NonEmptyString", # }, # ], # cvss: [ # { # version: "NonEmptyString", # base_score: 1.0, # base_vector: "NonEmptyString", # source: "NonEmptyString", # adjustments: [ # { # metric: "NonEmptyString", # reason: "NonEmptyString", # }, # ], # }, # ], # related_vulnerabilities: ["NonEmptyString"], # vendor: { # name: "NonEmptyString", # required # url: "NonEmptyString", # vendor_severity: "NonEmptyString", # vendor_created_at: "NonEmptyString", # vendor_updated_at: "NonEmptyString", # }, # reference_urls: ["NonEmptyString"], # }, # ], # patch_summary: { # id: "NonEmptyString", # required # installed_count: 1, # missing_count: 1, # failed_count: 1, # installed_other_count: 1, # installed_rejected_count: 1, # installed_pending_reboot: 1, # operation_start_time: "NonEmptyString", # operation_end_time: "NonEmptyString", # reboot_option: "NonEmptyString", # operation: "NonEmptyString", # }, # action: { # action_type: "NonEmptyString", # network_connection_action: { # connection_direction: "NonEmptyString", # remote_ip_details: { # ip_address_v4: "NonEmptyString", # organization: { # asn: 1, # asn_org: "NonEmptyString", # isp: "NonEmptyString", # org: "NonEmptyString", # }, # country: { # country_code: "NonEmptyString", # country_name: "NonEmptyString", # }, # city: { # city_name: "NonEmptyString", # }, # geo_location: { # lon: 1.0, # lat: 1.0, # }, # }, # remote_port_details: { # port: 1, # port_name: "NonEmptyString", # }, # local_port_details: { # port: 1, # port_name: "NonEmptyString", # }, # protocol: "NonEmptyString", # blocked: false, # }, # aws_api_call_action: { # api: "NonEmptyString", # service_name: "NonEmptyString", # caller_type: "NonEmptyString", # remote_ip_details: { # ip_address_v4: "NonEmptyString", # organization: { # asn: 1, # asn_org: "NonEmptyString", # isp: "NonEmptyString", # org: "NonEmptyString", # }, # country: { # country_code: "NonEmptyString", # country_name: "NonEmptyString", # }, # city: { # city_name: "NonEmptyString", # }, # geo_location: { # lon: 1.0, # lat: 1.0, # }, # }, # domain_details: { # domain: "NonEmptyString", # }, # affected_resources: { # "NonEmptyString" => "NonEmptyString", # }, # first_seen: "NonEmptyString", # last_seen: "NonEmptyString", # }, # dns_request_action: { # domain: "NonEmptyString", # protocol: "NonEmptyString", # blocked: false, # }, # port_probe_action: { # port_probe_details: [ # { # local_port_details: { # port: 1, # port_name: "NonEmptyString", # }, # local_ip_details: { # ip_address_v4: "NonEmptyString", # }, # remote_ip_details: { # ip_address_v4: "NonEmptyString", # organization: { # asn: 1, # asn_org: "NonEmptyString", # isp: "NonEmptyString", # org: "NonEmptyString", # }, # country: { # country_code: "NonEmptyString", # country_name: "NonEmptyString", # }, # city: { # city_name: "NonEmptyString", # }, # geo_location: { # lon: 1.0, # lat: 1.0, # }, # }, # }, # ], # blocked: false, # }, # }, # finding_provider_fields: { # confidence: 1, # criticality: 1, # related_findings: [ # { # product_arn: "NonEmptyString", # required # id: "NonEmptyString", # required # }, # ], # severity: { # label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL # original: "NonEmptyString", # }, # types: ["NonEmptyString"], # }, # sample: false, # }, # ], # }) # # @example Response structure # # resp.failed_count #=> Integer # resp.success_count #=> Integer # resp.failed_findings #=> Array # resp.failed_findings[0].id #=> String # resp.failed_findings[0].error_code #=> String # resp.failed_findings[0].error_message #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchImportFindings AWS API Documentation # # @overload batch_import_findings(params = {}) # @param [Hash] params ({}) def batch_import_findings(params = {}, options = {}) req = build_request(:batch_import_findings, params) req.send_request(options) end # Used by Security Hub customers to update information about their # investigation into a finding. Requested by administrator accounts or # member accounts. Administrator accounts can update findings for their # account and their member accounts. Member accounts can update findings # for their account. # # Updates from `BatchUpdateFindings` do not affect the value of # `UpdatedAt` for a finding. # # Administrator and member accounts can use `BatchUpdateFindings` to # update the following finding fields and objects. # # * `Confidence` # # * `Criticality` # # * `Note` # # * `RelatedFindings` # # * `Severity` # # * `Types` # # * `UserDefinedFields` # # * `VerificationState` # # * `Workflow` # # You can configure IAM policies to restrict access to fields and field # values. For example, you might not want member accounts to be able to # suppress findings or change the finding severity. See [Configuring # access to BatchUpdateFindings][1] in the *Security Hub User Guide*. # # # # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/finding-update-batchupdatefindings.html#batchupdatefindings-configure-access # # @option params [required, Array] :finding_identifiers # The list of findings to update. `BatchUpdateFindings` can be used to # update up to 100 findings at a time. # # For each finding, the list provides the finding identifier and the ARN # of the finding provider. # # @option params [Types::NoteUpdate] :note # The updated note. # # @option params [Types::SeverityUpdate] :severity # Used to update the finding severity. # # @option params [String] :verification_state # Indicates the veracity of a finding. # # The available values for `VerificationState` are as follows. # # * `UNKNOWN` – The default disposition of a security finding # # * `TRUE_POSITIVE` – The security finding is confirmed # # * `FALSE_POSITIVE` – The security finding was determined to be a false # alarm # # * `BENIGN_POSITIVE` – A special case of `TRUE_POSITIVE` where the # finding doesn't pose any threat, is expected, or both # # @option params [Integer] :confidence # The updated value for the finding confidence. Confidence is defined as # the likelihood that a finding accurately identifies the behavior or # issue that it was intended to identify. # # Confidence is scored on a 0-100 basis using a ratio scale, where 0 # means zero percent confidence and 100 means 100 percent confidence. # # @option params [Integer] :criticality # The updated value for the level of importance assigned to the # resources associated with the findings. # # A score of 0 means that the underlying resources have no criticality, # and a score of 100 is reserved for the most critical resources. # # @option params [Array] :types # One or more finding types in the format of # namespace/category/classifier that classify a finding. # # Valid namespace values are as follows. # # * Software and Configuration Checks # # * TTPs # # * Effects # # * Unusual Behaviors # # * Sensitive Data Identifications # # @option params [Hash] :user_defined_fields # A list of name/value string pairs associated with the finding. These # are custom, user-defined fields added to a finding. # # @option params [Types::WorkflowUpdate] :workflow # Used to update the workflow status of a finding. # # The workflow status indicates the progress of the investigation into # the finding. # # @option params [Array] :related_findings # A list of findings that are related to the updated findings. # # @return [Types::BatchUpdateFindingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::BatchUpdateFindingsResponse#processed_findings #processed_findings} => Array<Types::AwsSecurityFindingIdentifier> # * {Types::BatchUpdateFindingsResponse#unprocessed_findings #unprocessed_findings} => Array<Types::BatchUpdateFindingsUnprocessedFinding> # # @example Request syntax with placeholder values # # resp = client.batch_update_findings({ # finding_identifiers: [ # required # { # id: "NonEmptyString", # required # product_arn: "NonEmptyString", # required # }, # ], # note: { # text: "NonEmptyString", # required # updated_by: "NonEmptyString", # required # }, # severity: { # normalized: 1, # product: 1.0, # label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL # }, # verification_state: "UNKNOWN", # accepts UNKNOWN, TRUE_POSITIVE, FALSE_POSITIVE, BENIGN_POSITIVE # confidence: 1, # criticality: 1, # types: ["NonEmptyString"], # user_defined_fields: { # "NonEmptyString" => "NonEmptyString", # }, # workflow: { # status: "NEW", # accepts NEW, NOTIFIED, RESOLVED, SUPPRESSED # }, # related_findings: [ # { # product_arn: "NonEmptyString", # required # id: "NonEmptyString", # required # }, # ], # }) # # @example Response structure # # resp.processed_findings #=> Array # resp.processed_findings[0].id #=> String # resp.processed_findings[0].product_arn #=> String # resp.unprocessed_findings #=> Array # resp.unprocessed_findings[0].finding_identifier.id #=> String # resp.unprocessed_findings[0].finding_identifier.product_arn #=> String # resp.unprocessed_findings[0].error_code #=> String # resp.unprocessed_findings[0].error_message #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/BatchUpdateFindings AWS API Documentation # # @overload batch_update_findings(params = {}) # @param [Hash] params ({}) def batch_update_findings(params = {}, options = {}) req = build_request(:batch_update_findings, params) req.send_request(options) end # Creates a custom action target in Security Hub. # # You can use custom actions on findings and insights in Security Hub to # trigger target actions in Amazon CloudWatch Events. # # @option params [required, String] :name # The name of the custom action target. Can contain up to 20 characters. # # @option params [required, String] :description # The description for the custom action target. # # @option params [required, String] :id # The ID for the custom action target. Can contain up to 20 alphanumeric # characters. # # @return [Types::CreateActionTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::CreateActionTargetResponse#action_target_arn #action_target_arn} => String # # @example Request syntax with placeholder values # # resp = client.create_action_target({ # name: "NonEmptyString", # required # description: "NonEmptyString", # required # id: "NonEmptyString", # required # }) # # @example Response structure # # resp.action_target_arn #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateActionTarget AWS API Documentation # # @overload create_action_target(params = {}) # @param [Hash] params ({}) def create_action_target(params = {}, options = {}) req = build_request(:create_action_target, params) req.send_request(options) end # Used to enable finding aggregation. Must be called from the # aggregation Region. # # For more details about cross-Region replication, see [Configuring # finding aggregation][1] in the *Security Hub User Guide*. # # # # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/finding-aggregation.html # # @option params [required, String] :region_linking_mode # Indicates whether to aggregate findings from all of the available # Regions in the current partition. Also determines whether to # automatically aggregate findings from new Regions as Security Hub # supports them and you opt into them. # # The selected option also determines how to use the Regions provided in # the Regions list. # # The options are as follows: # # * `ALL_REGIONS` - Indicates to aggregate findings from all of the # Regions where Security Hub is enabled. When you choose this option, # Security Hub also automatically aggregates findings from new Regions # as Security Hub supports them and you opt into them. # # * `ALL_REGIONS_EXCEPT_SPECIFIED` - Indicates to aggregate findings # from all of the Regions where Security Hub is enabled, except for # the Regions listed in the `Regions` parameter. When you choose this # option, Security Hub also automatically aggregates findings from new # Regions as Security Hub supports them and you opt into them. # # * `SPECIFIED_REGIONS` - Indicates to aggregate findings only from the # Regions listed in the `Regions` parameter. Security Hub does not # automatically aggregate findings from new Regions. # # @option params [Array] :regions # If `RegionLinkingMode` is `ALL_REGIONS_EXCEPT_SPECIFIED`, then this is # a comma-separated list of Regions that do not aggregate findings to # the aggregation Region. # # If `RegionLinkingMode` is `SPECIFIED_REGIONS`, then this is a # comma-separated list of Regions that do aggregate findings to the # aggregation Region. # # @return [Types::CreateFindingAggregatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::CreateFindingAggregatorResponse#finding_aggregator_arn #finding_aggregator_arn} => String # * {Types::CreateFindingAggregatorResponse#finding_aggregation_region #finding_aggregation_region} => String # * {Types::CreateFindingAggregatorResponse#region_linking_mode #region_linking_mode} => String # * {Types::CreateFindingAggregatorResponse#regions #regions} => Array<String> # # @example Request syntax with placeholder values # # resp = client.create_finding_aggregator({ # region_linking_mode: "NonEmptyString", # required # regions: ["NonEmptyString"], # }) # # @example Response structure # # resp.finding_aggregator_arn #=> String # resp.finding_aggregation_region #=> String # resp.region_linking_mode #=> String # resp.regions #=> Array # resp.regions[0] #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateFindingAggregator AWS API Documentation # # @overload create_finding_aggregator(params = {}) # @param [Hash] params ({}) def create_finding_aggregator(params = {}, options = {}) req = build_request(:create_finding_aggregator, params) req.send_request(options) end # Creates a custom insight in Security Hub. An insight is a # consolidation of findings that relate to a security issue that # requires attention or remediation. # # To group the related findings in the insight, use the # `GroupByAttribute`. # # @option params [required, String] :name # The name of the custom insight to create. # # @option params [required, Types::AwsSecurityFindingFilters] :filters # One or more attributes used to filter the findings included in the # insight. The insight only includes findings that match the criteria # defined in the filters. # # @option params [required, String] :group_by_attribute # The attribute used to group the findings for the insight. The grouping # attribute identifies the type of item that the insight applies to. For # example, if an insight is grouped by resource identifier, then the # insight produces a list of resource identifiers. # # @return [Types::CreateInsightResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::CreateInsightResponse#insight_arn #insight_arn} => String # # @example Request syntax with placeholder values # # resp = client.create_insight({ # name: "NonEmptyString", # required # filters: { # required # product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # aws_account_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # generator_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # region: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # first_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # last_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # created_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # updated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # severity_product: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # severity_normalized: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # severity_label: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # confidence: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # criticality: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # title: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # description: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # recommendation_text: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # source_url: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # product_fields: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # product_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # company_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # user_defined_fields: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # malware_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_path: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_direction: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_protocol: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_source_ip_v4: [ # { # cidr: "NonEmptyString", # }, # ], # network_source_ip_v6: [ # { # cidr: "NonEmptyString", # }, # ], # network_source_port: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # network_source_domain: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_source_mac: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_destination_ip_v4: [ # { # cidr: "NonEmptyString", # }, # ], # network_destination_ip_v6: [ # { # cidr: "NonEmptyString", # }, # ], # network_destination_port: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # network_destination_domain: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_path: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_pid: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # process_parent_pid: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # process_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # process_terminated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # threat_intel_indicator_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_value: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_category: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_last_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # threat_intel_indicator_source: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_source_url: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_partition: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_region: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_tags: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # resource_aws_ec2_instance_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_image_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_ip_v4_addresses: [ # { # cidr: "NonEmptyString", # }, # ], # resource_aws_ec2_instance_ip_v6_addresses: [ # { # cidr: "NonEmptyString", # }, # ], # resource_aws_ec2_instance_key_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_iam_instance_profile_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_vpc_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_subnet_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_aws_s3_bucket_owner_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_s3_bucket_owner_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_user_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_principal_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_created_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_aws_iam_user_user_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_image_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_image_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_details_other: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # compliance_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # verification_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # workflow_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # workflow_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # record_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # related_findings_product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # related_findings_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # note_text: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # note_updated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # note_updated_by: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # keyword: [ # { # value: "NonEmptyString", # }, # ], # finding_provider_fields_confidence: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # finding_provider_fields_criticality: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # finding_provider_fields_related_findings_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_related_findings_product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_severity_label: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_severity_original: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_types: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # sample: [ # { # value: false, # }, # ], # }, # group_by_attribute: "NonEmptyString", # required # }) # # @example Response structure # # resp.insight_arn #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateInsight AWS API Documentation # # @overload create_insight(params = {}) # @param [Hash] params ({}) def create_insight(params = {}, options = {}) req = build_request(:create_insight, params) req.send_request(options) end # Creates a member association in Security Hub between the specified # accounts and the account used to make the request, which is the # administrator account. If you are integrated with Organizations, then # the administrator account is designated by the organization management # account. # # `CreateMembers` is always used to add accounts that are not # organization members. # # For accounts that are managed using Organizations, `CreateMembers` is # only used in the following cases: # # * Security Hub is not configured to automatically add new organization # accounts. # # * The account was disassociated or deleted in Security Hub. # # This action can only be used by an account that has Security Hub # enabled. To enable Security Hub, you can use the `EnableSecurityHub` # operation. # # For accounts that are not organization members, you create the account # association and then send an invitation to the member account. To send # the invitation, you use the `InviteMembers` operation. If the account # owner accepts the invitation, the account becomes a member account in # Security Hub. # # Accounts that are managed using Organizations do not receive an # invitation. They automatically become a member account in Security # Hub. # # * If the organization account does not have Security Hub enabled, then # Security Hub and the default standards are automatically enabled. # Note that Security Hub cannot be enabled automatically for the # organization management account. The organization management account # must enable Security Hub before the administrator account enables it # as a member account. # # * For organization accounts that already have Security Hub enabled, # Security Hub does not make any other changes to those accounts. It # does not change their enabled standards or controls. # # A permissions policy is added that permits the administrator account # to view the findings generated in the member account. # # To remove the association between the administrator and member # accounts, use the `DisassociateFromMasterAccount` or # `DisassociateMembers` operation. # # @option params [required, Array] :account_details # The list of accounts to associate with the Security Hub administrator # account. For each account, the list includes the account ID and # optionally the email address. # # @return [Types::CreateMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::CreateMembersResponse#unprocessed_accounts #unprocessed_accounts} => Array<Types::Result> # # @example Request syntax with placeholder values # # resp = client.create_members({ # account_details: [ # required # { # account_id: "AccountId", # required # email: "NonEmptyString", # }, # ], # }) # # @example Response structure # # resp.unprocessed_accounts #=> Array # resp.unprocessed_accounts[0].account_id #=> String # resp.unprocessed_accounts[0].processing_result #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateMembers AWS API Documentation # # @overload create_members(params = {}) # @param [Hash] params ({}) def create_members(params = {}, options = {}) req = build_request(:create_members, params) req.send_request(options) end # Declines invitations to become a member account. # # This operation is only used by accounts that are not part of an # organization. Organization accounts do not receive invitations. # # @option params [required, Array] :account_ids # The list of account IDs for the accounts from which to decline the # invitations to Security Hub. # # @return [Types::DeclineInvitationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DeclineInvitationsResponse#unprocessed_accounts #unprocessed_accounts} => Array<Types::Result> # # @example Request syntax with placeholder values # # resp = client.decline_invitations({ # account_ids: ["NonEmptyString"], # required # }) # # @example Response structure # # resp.unprocessed_accounts #=> Array # resp.unprocessed_accounts[0].account_id #=> String # resp.unprocessed_accounts[0].processing_result #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeclineInvitations AWS API Documentation # # @overload decline_invitations(params = {}) # @param [Hash] params ({}) def decline_invitations(params = {}, options = {}) req = build_request(:decline_invitations, params) req.send_request(options) end # Deletes a custom action target from Security Hub. # # Deleting a custom action target does not affect any findings or # insights that were already sent to Amazon CloudWatch Events using the # custom action. # # @option params [required, String] :action_target_arn # The ARN of the custom action target to delete. # # @return [Types::DeleteActionTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DeleteActionTargetResponse#action_target_arn #action_target_arn} => String # # @example Request syntax with placeholder values # # resp = client.delete_action_target({ # action_target_arn: "NonEmptyString", # required # }) # # @example Response structure # # resp.action_target_arn #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteActionTarget AWS API Documentation # # @overload delete_action_target(params = {}) # @param [Hash] params ({}) def delete_action_target(params = {}, options = {}) req = build_request(:delete_action_target, params) req.send_request(options) end # Deletes a finding aggregator. When you delete the finding aggregator, # you stop finding aggregation. # # When you stop finding aggregation, findings that were already # aggregated to the aggregation Region are still visible from the # aggregation Region. New findings and finding updates are not # aggregated. # # @option params [required, String] :finding_aggregator_arn # The ARN of the finding aggregator to delete. To obtain the ARN, use # `ListFindingAggregators`. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.delete_finding_aggregator({ # finding_aggregator_arn: "NonEmptyString", # required # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteFindingAggregator AWS API Documentation # # @overload delete_finding_aggregator(params = {}) # @param [Hash] params ({}) def delete_finding_aggregator(params = {}, options = {}) req = build_request(:delete_finding_aggregator, params) req.send_request(options) end # Deletes the insight specified by the `InsightArn`. # # @option params [required, String] :insight_arn # The ARN of the insight to delete. # # @return [Types::DeleteInsightResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DeleteInsightResponse#insight_arn #insight_arn} => String # # @example Request syntax with placeholder values # # resp = client.delete_insight({ # insight_arn: "NonEmptyString", # required # }) # # @example Response structure # # resp.insight_arn #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteInsight AWS API Documentation # # @overload delete_insight(params = {}) # @param [Hash] params ({}) def delete_insight(params = {}, options = {}) req = build_request(:delete_insight, params) req.send_request(options) end # Deletes invitations received by the Amazon Web Services account to # become a member account. # # This operation is only used by accounts that are not part of an # organization. Organization accounts do not receive invitations. # # @option params [required, Array] :account_ids # The list of the account IDs that sent the invitations to delete. # # @return [Types::DeleteInvitationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DeleteInvitationsResponse#unprocessed_accounts #unprocessed_accounts} => Array<Types::Result> # # @example Request syntax with placeholder values # # resp = client.delete_invitations({ # account_ids: ["NonEmptyString"], # required # }) # # @example Response structure # # resp.unprocessed_accounts #=> Array # resp.unprocessed_accounts[0].account_id #=> String # resp.unprocessed_accounts[0].processing_result #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteInvitations AWS API Documentation # # @overload delete_invitations(params = {}) # @param [Hash] params ({}) def delete_invitations(params = {}, options = {}) req = build_request(:delete_invitations, params) req.send_request(options) end # Deletes the specified member accounts from Security Hub. # # Can be used to delete member accounts that belong to an organization # as well as member accounts that were invited manually. # # @option params [required, Array] :account_ids # The list of account IDs for the member accounts to delete. # # @return [Types::DeleteMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DeleteMembersResponse#unprocessed_accounts #unprocessed_accounts} => Array<Types::Result> # # @example Request syntax with placeholder values # # resp = client.delete_members({ # account_ids: ["NonEmptyString"], # required # }) # # @example Response structure # # resp.unprocessed_accounts #=> Array # resp.unprocessed_accounts[0].account_id #=> String # resp.unprocessed_accounts[0].processing_result #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteMembers AWS API Documentation # # @overload delete_members(params = {}) # @param [Hash] params ({}) def delete_members(params = {}, options = {}) req = build_request(:delete_members, params) req.send_request(options) end # Returns a list of the custom action targets in Security Hub in your # account. # # @option params [Array] :action_target_arns # A list of custom action target ARNs for the custom action targets to # retrieve. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `DescribeActionTargets` operation, set the value of this parameter to # `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @option params [Integer] :max_results # The maximum number of results to return. # # @return [Types::DescribeActionTargetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DescribeActionTargetsResponse#action_targets #action_targets} => Array<Types::ActionTarget> # * {Types::DescribeActionTargetsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.describe_action_targets({ # action_target_arns: ["NonEmptyString"], # next_token: "NextToken", # max_results: 1, # }) # # @example Response structure # # resp.action_targets #=> Array # resp.action_targets[0].action_target_arn #=> String # resp.action_targets[0].name #=> String # resp.action_targets[0].description #=> String # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeActionTargets AWS API Documentation # # @overload describe_action_targets(params = {}) # @param [Hash] params ({}) def describe_action_targets(params = {}, options = {}) req = build_request(:describe_action_targets, params) req.send_request(options) end # Returns details about the Hub resource in your account, including the # `HubArn` and the time when you enabled Security Hub. # # @option params [String] :hub_arn # The ARN of the Hub resource to retrieve. # # @return [Types::DescribeHubResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DescribeHubResponse#hub_arn #hub_arn} => String # * {Types::DescribeHubResponse#subscribed_at #subscribed_at} => String # * {Types::DescribeHubResponse#auto_enable_controls #auto_enable_controls} => Boolean # # @example Request syntax with placeholder values # # resp = client.describe_hub({ # hub_arn: "NonEmptyString", # }) # # @example Response structure # # resp.hub_arn #=> String # resp.subscribed_at #=> String # resp.auto_enable_controls #=> Boolean # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeHub AWS API Documentation # # @overload describe_hub(params = {}) # @param [Hash] params ({}) def describe_hub(params = {}, options = {}) req = build_request(:describe_hub, params) req.send_request(options) end # Returns information about the Organizations configuration for Security # Hub. Can only be called from a Security Hub administrator account. # # @return [Types::DescribeOrganizationConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DescribeOrganizationConfigurationResponse#auto_enable #auto_enable} => Boolean # * {Types::DescribeOrganizationConfigurationResponse#member_account_limit_reached #member_account_limit_reached} => Boolean # * {Types::DescribeOrganizationConfigurationResponse#auto_enable_standards #auto_enable_standards} => String # # @example Response structure # # resp.auto_enable #=> Boolean # resp.member_account_limit_reached #=> Boolean # resp.auto_enable_standards #=> String, one of "NONE", "DEFAULT" # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeOrganizationConfiguration AWS API Documentation # # @overload describe_organization_configuration(params = {}) # @param [Hash] params ({}) def describe_organization_configuration(params = {}, options = {}) req = build_request(:describe_organization_configuration, params) req.send_request(options) end # Returns information about product integrations in Security Hub. # # You can optionally provide an integration ARN. If you provide an # integration ARN, then the results only include that integration. # # If you do not provide an integration ARN, then the results include all # of the available product integrations. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `DescribeProducts` operation, set the value of this parameter to # `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @option params [Integer] :max_results # The maximum number of results to return. # # @option params [String] :product_arn # The ARN of the integration to return. # # @return [Types::DescribeProductsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DescribeProductsResponse#products #products} => Array<Types::Product> # * {Types::DescribeProductsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.describe_products({ # next_token: "NextToken", # max_results: 1, # product_arn: "NonEmptyString", # }) # # @example Response structure # # resp.products #=> Array # resp.products[0].product_arn #=> String # resp.products[0].product_name #=> String # resp.products[0].company_name #=> String # resp.products[0].description #=> String # resp.products[0].categories #=> Array # resp.products[0].categories[0] #=> String # resp.products[0].integration_types #=> Array # resp.products[0].integration_types[0] #=> String, one of "SEND_FINDINGS_TO_SECURITY_HUB", "RECEIVE_FINDINGS_FROM_SECURITY_HUB", "UPDATE_FINDINGS_IN_SECURITY_HUB" # resp.products[0].marketplace_url #=> String # resp.products[0].activation_url #=> String # resp.products[0].product_subscription_resource_policy #=> String # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeProducts AWS API Documentation # # @overload describe_products(params = {}) # @param [Hash] params ({}) def describe_products(params = {}, options = {}) req = build_request(:describe_products, params) req.send_request(options) end # Returns a list of the available standards in Security Hub. # # For each standard, the results include the standard ARN, the name, and # a description. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `DescribeStandards` operation, set the value of this parameter to # `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @option params [Integer] :max_results # The maximum number of standards to return. # # @return [Types::DescribeStandardsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DescribeStandardsResponse#standards #standards} => Array<Types::Standard> # * {Types::DescribeStandardsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.describe_standards({ # next_token: "NextToken", # max_results: 1, # }) # # @example Response structure # # resp.standards #=> Array # resp.standards[0].standards_arn #=> String # resp.standards[0].name #=> String # resp.standards[0].description #=> String # resp.standards[0].enabled_by_default #=> Boolean # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeStandards AWS API Documentation # # @overload describe_standards(params = {}) # @param [Hash] params ({}) def describe_standards(params = {}, options = {}) req = build_request(:describe_standards, params) req.send_request(options) end # Returns a list of security standards controls. # # For each control, the results include information about whether it is # currently enabled, the severity, and a link to remediation # information. # # @option params [required, String] :standards_subscription_arn # The ARN of a resource that represents your subscription to a supported # standard. To get the subscription ARNs of the standards you have # enabled, use the `GetEnabledStandards` operation. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `DescribeStandardsControls` operation, set the value of this parameter # to `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @option params [Integer] :max_results # The maximum number of security standard controls to return. # # @return [Types::DescribeStandardsControlsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::DescribeStandardsControlsResponse#controls #controls} => Array<Types::StandardsControl> # * {Types::DescribeStandardsControlsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.describe_standards_controls({ # standards_subscription_arn: "NonEmptyString", # required # next_token: "NextToken", # max_results: 1, # }) # # @example Response structure # # resp.controls #=> Array # resp.controls[0].standards_control_arn #=> String # resp.controls[0].control_status #=> String, one of "ENABLED", "DISABLED" # resp.controls[0].disabled_reason #=> String # resp.controls[0].control_status_updated_at #=> Time # resp.controls[0].control_id #=> String # resp.controls[0].title #=> String # resp.controls[0].description #=> String # resp.controls[0].remediation_url #=> String # resp.controls[0].severity_rating #=> String, one of "LOW", "MEDIUM", "HIGH", "CRITICAL" # resp.controls[0].related_requirements #=> Array # resp.controls[0].related_requirements[0] #=> String # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeStandardsControls AWS API Documentation # # @overload describe_standards_controls(params = {}) # @param [Hash] params ({}) def describe_standards_controls(params = {}, options = {}) req = build_request(:describe_standards_controls, params) req.send_request(options) end # Disables the integration of the specified product with Security Hub. # After the integration is disabled, findings from that product are no # longer sent to Security Hub. # # @option params [required, String] :product_subscription_arn # The ARN of the integrated product to disable the integration for. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.disable_import_findings_for_product({ # product_subscription_arn: "NonEmptyString", # required # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisableImportFindingsForProduct AWS API Documentation # # @overload disable_import_findings_for_product(params = {}) # @param [Hash] params ({}) def disable_import_findings_for_product(params = {}, options = {}) req = build_request(:disable_import_findings_for_product, params) req.send_request(options) end # Disables a Security Hub administrator account. Can only be called by # the organization management account. # # @option params [required, String] :admin_account_id # The Amazon Web Services account identifier of the Security Hub # administrator account. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.disable_organization_admin_account({ # admin_account_id: "NonEmptyString", # required # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisableOrganizationAdminAccount AWS API Documentation # # @overload disable_organization_admin_account(params = {}) # @param [Hash] params ({}) def disable_organization_admin_account(params = {}, options = {}) req = build_request(:disable_organization_admin_account, params) req.send_request(options) end # Disables Security Hub in your account only in the current Region. To # disable Security Hub in all Regions, you must submit one request per # Region where you have enabled Security Hub. # # When you disable Security Hub for an administrator account, it # doesn't disable Security Hub for any associated member accounts. # # When you disable Security Hub, your existing findings and insights and # any Security Hub configuration settings are deleted after 90 days and # cannot be recovered. Any standards that were enabled are disabled, and # your administrator and member account associations are removed. # # If you want to save your existing findings, you must export them # before you disable Security Hub. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisableSecurityHub AWS API Documentation # # @overload disable_security_hub(params = {}) # @param [Hash] params ({}) def disable_security_hub(params = {}, options = {}) req = build_request(:disable_security_hub, params) req.send_request(options) end # Disassociates the current Security Hub member account from the # associated administrator account. # # This operation is only used by accounts that are not part of an # organization. For organization accounts, only the administrator # account can disassociate a member account. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisassociateFromAdministratorAccount AWS API Documentation # # @overload disassociate_from_administrator_account(params = {}) # @param [Hash] params ({}) def disassociate_from_administrator_account(params = {}, options = {}) req = build_request(:disassociate_from_administrator_account, params) req.send_request(options) end # This method is deprecated. Instead, use # `DisassociateFromAdministratorAccount`. # # The Security Hub console continues to use # `DisassociateFromMasterAccount`. It will eventually change to use # `DisassociateFromAdministratorAccount`. Any IAM policies that # specifically control access to this function must continue to use # `DisassociateFromMasterAccount`. You should also add # `DisassociateFromAdministratorAccount` to your policies to ensure that # the correct permissions are in place after the console begins to use # `DisassociateFromAdministratorAccount`. # # Disassociates the current Security Hub member account from the # associated administrator account. # # This operation is only used by accounts that are not part of an # organization. For organization accounts, only the administrator # account can disassociate a member account. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisassociateFromMasterAccount AWS API Documentation # # @overload disassociate_from_master_account(params = {}) # @param [Hash] params ({}) def disassociate_from_master_account(params = {}, options = {}) req = build_request(:disassociate_from_master_account, params) req.send_request(options) end # Disassociates the specified member accounts from the associated # administrator account. # # Can be used to disassociate both accounts that are managed using # Organizations and accounts that were invited manually. # # @option params [required, Array] :account_ids # The account IDs of the member accounts to disassociate from the # administrator account. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.disassociate_members({ # account_ids: ["NonEmptyString"], # required # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DisassociateMembers AWS API Documentation # # @overload disassociate_members(params = {}) # @param [Hash] params ({}) def disassociate_members(params = {}, options = {}) req = build_request(:disassociate_members, params) req.send_request(options) end # Enables the integration of a partner product with Security Hub. # Integrated products send findings to Security Hub. # # When you enable a product integration, a permissions policy that # grants permission for the product to send findings to Security Hub is # applied. # # @option params [required, String] :product_arn # The ARN of the product to enable the integration for. # # @return [Types::EnableImportFindingsForProductResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::EnableImportFindingsForProductResponse#product_subscription_arn #product_subscription_arn} => String # # @example Request syntax with placeholder values # # resp = client.enable_import_findings_for_product({ # product_arn: "NonEmptyString", # required # }) # # @example Response structure # # resp.product_subscription_arn #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/EnableImportFindingsForProduct AWS API Documentation # # @overload enable_import_findings_for_product(params = {}) # @param [Hash] params ({}) def enable_import_findings_for_product(params = {}, options = {}) req = build_request(:enable_import_findings_for_product, params) req.send_request(options) end # Designates the Security Hub administrator account for an organization. # Can only be called by the organization management account. # # @option params [required, String] :admin_account_id # The Amazon Web Services account identifier of the account to designate # as the Security Hub administrator account. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.enable_organization_admin_account({ # admin_account_id: "NonEmptyString", # required # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/EnableOrganizationAdminAccount AWS API Documentation # # @overload enable_organization_admin_account(params = {}) # @param [Hash] params ({}) def enable_organization_admin_account(params = {}, options = {}) req = build_request(:enable_organization_admin_account, params) req.send_request(options) end # Enables Security Hub for your account in the current Region or the # Region you specify in the request. # # When you enable Security Hub, you grant to Security Hub the # permissions necessary to gather findings from other services that are # integrated with Security Hub. # # When you use the `EnableSecurityHub` operation to enable Security Hub, # you also automatically enable the following standards. # # * CIS Amazon Web Services Foundations # # * Amazon Web Services Foundational Security Best Practices # # You do not enable the Payment Card Industry Data Security Standard # (PCI DSS) standard. # # To not enable the automatically enabled standards, set # `EnableDefaultStandards` to `false`. # # After you enable Security Hub, to enable a standard, use the # `BatchEnableStandards` operation. To disable a standard, use the # `BatchDisableStandards` operation. # # To learn more, see the [setup information][1] in the *Security Hub # User Guide*. # # # # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-settingup.html # # @option params [Hash] :tags # The tags to add to the hub resource when you enable Security Hub. # # @option params [Boolean] :enable_default_standards # Whether to enable the security standards that Security Hub has # designated as automatically enabled. If you do not provide a value for # `EnableDefaultStandards`, it is set to `true`. To not enable the # automatically enabled standards, set `EnableDefaultStandards` to # `false`. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.enable_security_hub({ # tags: { # "TagKey" => "TagValue", # }, # enable_default_standards: false, # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/EnableSecurityHub AWS API Documentation # # @overload enable_security_hub(params = {}) # @param [Hash] params ({}) def enable_security_hub(params = {}, options = {}) req = build_request(:enable_security_hub, params) req.send_request(options) end # Provides the details for the Security Hub administrator account for # the current member account. # # Can be used by both member accounts that are managed using # Organizations and accounts that were invited manually. # # @return [Types::GetAdministratorAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetAdministratorAccountResponse#administrator #administrator} => Types::Invitation # # @example Response structure # # resp.administrator.account_id #=> String # resp.administrator.invitation_id #=> String # resp.administrator.invited_at #=> Time # resp.administrator.member_status #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetAdministratorAccount AWS API Documentation # # @overload get_administrator_account(params = {}) # @param [Hash] params ({}) def get_administrator_account(params = {}, options = {}) req = build_request(:get_administrator_account, params) req.send_request(options) end # Returns a list of the standards that are currently enabled. # # @option params [Array] :standards_subscription_arns # The list of the standards subscription ARNs for the standards to # retrieve. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `GetEnabledStandards` operation, set the value of this parameter to # `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @option params [Integer] :max_results # The maximum number of results to return in the response. # # @return [Types::GetEnabledStandardsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetEnabledStandardsResponse#standards_subscriptions #standards_subscriptions} => Array<Types::StandardsSubscription> # * {Types::GetEnabledStandardsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.get_enabled_standards({ # standards_subscription_arns: ["NonEmptyString"], # next_token: "NextToken", # max_results: 1, # }) # # @example Response structure # # resp.standards_subscriptions #=> Array # resp.standards_subscriptions[0].standards_subscription_arn #=> String # resp.standards_subscriptions[0].standards_arn #=> String # resp.standards_subscriptions[0].standards_input #=> Hash # resp.standards_subscriptions[0].standards_input["NonEmptyString"] #=> String # resp.standards_subscriptions[0].standards_status #=> String, one of "PENDING", "READY", "FAILED", "DELETING", "INCOMPLETE" # resp.standards_subscriptions[0].standards_status_reason.status_reason_code #=> String, one of "NO_AVAILABLE_CONFIGURATION_RECORDER", "INTERNAL_ERROR" # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetEnabledStandards AWS API Documentation # # @overload get_enabled_standards(params = {}) # @param [Hash] params ({}) def get_enabled_standards(params = {}, options = {}) req = build_request(:get_enabled_standards, params) req.send_request(options) end # Returns the current finding aggregation configuration. # # @option params [required, String] :finding_aggregator_arn # The ARN of the finding aggregator to return details for. To obtain the # ARN, use `ListFindingAggregators`. # # @return [Types::GetFindingAggregatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetFindingAggregatorResponse#finding_aggregator_arn #finding_aggregator_arn} => String # * {Types::GetFindingAggregatorResponse#finding_aggregation_region #finding_aggregation_region} => String # * {Types::GetFindingAggregatorResponse#region_linking_mode #region_linking_mode} => String # * {Types::GetFindingAggregatorResponse#regions #regions} => Array<String> # # @example Request syntax with placeholder values # # resp = client.get_finding_aggregator({ # finding_aggregator_arn: "NonEmptyString", # required # }) # # @example Response structure # # resp.finding_aggregator_arn #=> String # resp.finding_aggregation_region #=> String # resp.region_linking_mode #=> String # resp.regions #=> Array # resp.regions[0] #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindingAggregator AWS API Documentation # # @overload get_finding_aggregator(params = {}) # @param [Hash] params ({}) def get_finding_aggregator(params = {}, options = {}) req = build_request(:get_finding_aggregator, params) req.send_request(options) end # Returns a list of findings that match the specified criteria. # # If finding aggregation is enabled, then when you call `GetFindings` # from the aggregation Region, the results include all of the matching # findings from both the aggregation Region and the linked Regions. # # @option params [Types::AwsSecurityFindingFilters] :filters # The finding attributes used to define a condition to filter the # returned findings. # # You can filter by up to 10 finding attributes. For each attribute, you # can provide up to 20 filter values. # # Note that in the available filter fields, `WorkflowState` is # deprecated. To search for a finding based on its workflow status, use # `WorkflowStatus`. # # @option params [Array] :sort_criteria # The finding attributes used to sort the list of returned findings. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `GetFindings` operation, set the value of this parameter to `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @option params [Integer] :max_results # The maximum number of findings to return. # # @return [Types::GetFindingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetFindingsResponse#findings #findings} => Array<Types::AwsSecurityFinding> # * {Types::GetFindingsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.get_findings({ # filters: { # product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # aws_account_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # generator_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # region: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # first_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # last_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # created_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # updated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # severity_product: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # severity_normalized: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # severity_label: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # confidence: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # criticality: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # title: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # description: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # recommendation_text: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # source_url: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # product_fields: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # product_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # company_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # user_defined_fields: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # malware_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_path: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_direction: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_protocol: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_source_ip_v4: [ # { # cidr: "NonEmptyString", # }, # ], # network_source_ip_v6: [ # { # cidr: "NonEmptyString", # }, # ], # network_source_port: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # network_source_domain: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_source_mac: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_destination_ip_v4: [ # { # cidr: "NonEmptyString", # }, # ], # network_destination_ip_v6: [ # { # cidr: "NonEmptyString", # }, # ], # network_destination_port: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # network_destination_domain: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_path: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_pid: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # process_parent_pid: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # process_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # process_terminated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # threat_intel_indicator_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_value: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_category: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_last_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # threat_intel_indicator_source: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_source_url: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_partition: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_region: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_tags: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # resource_aws_ec2_instance_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_image_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_ip_v4_addresses: [ # { # cidr: "NonEmptyString", # }, # ], # resource_aws_ec2_instance_ip_v6_addresses: [ # { # cidr: "NonEmptyString", # }, # ], # resource_aws_ec2_instance_key_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_iam_instance_profile_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_vpc_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_subnet_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_aws_s3_bucket_owner_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_s3_bucket_owner_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_user_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_principal_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_created_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_aws_iam_user_user_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_image_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_image_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_details_other: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # compliance_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # verification_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # workflow_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # workflow_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # record_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # related_findings_product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # related_findings_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # note_text: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # note_updated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # note_updated_by: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # keyword: [ # { # value: "NonEmptyString", # }, # ], # finding_provider_fields_confidence: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # finding_provider_fields_criticality: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # finding_provider_fields_related_findings_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_related_findings_product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_severity_label: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_severity_original: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_types: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # sample: [ # { # value: false, # }, # ], # }, # sort_criteria: [ # { # field: "NonEmptyString", # sort_order: "asc", # accepts asc, desc # }, # ], # next_token: "NextToken", # max_results: 1, # }) # # @example Response structure # # resp.findings #=> Array # resp.findings[0].schema_version #=> String # resp.findings[0].id #=> String # resp.findings[0].product_arn #=> String # resp.findings[0].product_name #=> String # resp.findings[0].company_name #=> String # resp.findings[0].region #=> String # resp.findings[0].generator_id #=> String # resp.findings[0].aws_account_id #=> String # resp.findings[0].types #=> Array # resp.findings[0].types[0] #=> String # resp.findings[0].first_observed_at #=> String # resp.findings[0].last_observed_at #=> String # resp.findings[0].created_at #=> String # resp.findings[0].updated_at #=> String # resp.findings[0].severity.product #=> Float # resp.findings[0].severity.label #=> String, one of "INFORMATIONAL", "LOW", "MEDIUM", "HIGH", "CRITICAL" # resp.findings[0].severity.normalized #=> Integer # resp.findings[0].severity.original #=> String # resp.findings[0].confidence #=> Integer # resp.findings[0].criticality #=> Integer # resp.findings[0].title #=> String # resp.findings[0].description #=> String # resp.findings[0].remediation.recommendation.text #=> String # resp.findings[0].remediation.recommendation.url #=> String # resp.findings[0].source_url #=> String # resp.findings[0].product_fields #=> Hash # resp.findings[0].product_fields["NonEmptyString"] #=> String # resp.findings[0].user_defined_fields #=> Hash # resp.findings[0].user_defined_fields["NonEmptyString"] #=> String # resp.findings[0].malware #=> Array # resp.findings[0].malware[0].name #=> String # resp.findings[0].malware[0].type #=> String, one of "ADWARE", "BLENDED_THREAT", "BOTNET_AGENT", "COIN_MINER", "EXPLOIT_KIT", "KEYLOGGER", "MACRO", "POTENTIALLY_UNWANTED", "SPYWARE", "RANSOMWARE", "REMOTE_ACCESS", "ROOTKIT", "TROJAN", "VIRUS", "WORM" # resp.findings[0].malware[0].path #=> String # resp.findings[0].malware[0].state #=> String, one of "OBSERVED", "REMOVAL_FAILED", "REMOVED" # resp.findings[0].network.direction #=> String, one of "IN", "OUT" # resp.findings[0].network.protocol #=> String # resp.findings[0].network.open_port_range.begin #=> Integer # resp.findings[0].network.open_port_range.end #=> Integer # resp.findings[0].network.source_ip_v4 #=> String # resp.findings[0].network.source_ip_v6 #=> String # resp.findings[0].network.source_port #=> Integer # resp.findings[0].network.source_domain #=> String # resp.findings[0].network.source_mac #=> String # resp.findings[0].network.destination_ip_v4 #=> String # resp.findings[0].network.destination_ip_v6 #=> String # resp.findings[0].network.destination_port #=> Integer # resp.findings[0].network.destination_domain #=> String # resp.findings[0].network_path #=> Array # resp.findings[0].network_path[0].component_id #=> String # resp.findings[0].network_path[0].component_type #=> String # resp.findings[0].network_path[0].egress.protocol #=> String # resp.findings[0].network_path[0].egress.destination.address #=> Array # resp.findings[0].network_path[0].egress.destination.address[0] #=> String # resp.findings[0].network_path[0].egress.destination.port_ranges #=> Array # resp.findings[0].network_path[0].egress.destination.port_ranges[0].begin #=> Integer # resp.findings[0].network_path[0].egress.destination.port_ranges[0].end #=> Integer # resp.findings[0].network_path[0].egress.source.address #=> Array # resp.findings[0].network_path[0].egress.source.address[0] #=> String # resp.findings[0].network_path[0].egress.source.port_ranges #=> Array # resp.findings[0].network_path[0].egress.source.port_ranges[0].begin #=> Integer # resp.findings[0].network_path[0].egress.source.port_ranges[0].end #=> Integer # resp.findings[0].network_path[0].ingress.protocol #=> String # resp.findings[0].network_path[0].ingress.destination.address #=> Array # resp.findings[0].network_path[0].ingress.destination.address[0] #=> String # resp.findings[0].network_path[0].ingress.destination.port_ranges #=> Array # resp.findings[0].network_path[0].ingress.destination.port_ranges[0].begin #=> Integer # resp.findings[0].network_path[0].ingress.destination.port_ranges[0].end #=> Integer # resp.findings[0].network_path[0].ingress.source.address #=> Array # resp.findings[0].network_path[0].ingress.source.address[0] #=> String # resp.findings[0].network_path[0].ingress.source.port_ranges #=> Array # resp.findings[0].network_path[0].ingress.source.port_ranges[0].begin #=> Integer # resp.findings[0].network_path[0].ingress.source.port_ranges[0].end #=> Integer # resp.findings[0].process.name #=> String # resp.findings[0].process.path #=> String # resp.findings[0].process.pid #=> Integer # resp.findings[0].process.parent_pid #=> Integer # resp.findings[0].process.launched_at #=> String # resp.findings[0].process.terminated_at #=> String # resp.findings[0].threats #=> Array # resp.findings[0].threats[0].name #=> String # resp.findings[0].threats[0].severity #=> String # resp.findings[0].threats[0].item_count #=> Integer # resp.findings[0].threats[0].file_paths #=> Array # resp.findings[0].threats[0].file_paths[0].file_path #=> String # resp.findings[0].threats[0].file_paths[0].file_name #=> String # resp.findings[0].threats[0].file_paths[0].resource_id #=> String # resp.findings[0].threats[0].file_paths[0].hash #=> String # resp.findings[0].threat_intel_indicators #=> Array # resp.findings[0].threat_intel_indicators[0].type #=> String, one of "DOMAIN", "EMAIL_ADDRESS", "HASH_MD5", "HASH_SHA1", "HASH_SHA256", "HASH_SHA512", "IPV4_ADDRESS", "IPV6_ADDRESS", "MUTEX", "PROCESS", "URL" # resp.findings[0].threat_intel_indicators[0].value #=> String # resp.findings[0].threat_intel_indicators[0].category #=> String, one of "BACKDOOR", "CARD_STEALER", "COMMAND_AND_CONTROL", "DROP_SITE", "EXPLOIT_SITE", "KEYLOGGER" # resp.findings[0].threat_intel_indicators[0].last_observed_at #=> String # resp.findings[0].threat_intel_indicators[0].source #=> String # resp.findings[0].threat_intel_indicators[0].source_url #=> String # resp.findings[0].resources #=> Array # resp.findings[0].resources[0].type #=> String # resp.findings[0].resources[0].id #=> String # resp.findings[0].resources[0].partition #=> String, one of "aws", "aws-cn", "aws-us-gov" # resp.findings[0].resources[0].region #=> String # resp.findings[0].resources[0].resource_role #=> String # resp.findings[0].resources[0].tags #=> Hash # resp.findings[0].resources[0].tags["NonEmptyString"] #=> String # resp.findings[0].resources[0].data_classification.detailed_results_location #=> String # resp.findings[0].resources[0].data_classification.result.mime_type #=> String # resp.findings[0].resources[0].data_classification.result.size_classified #=> Integer # resp.findings[0].resources[0].data_classification.result.additional_occurrences #=> Boolean # resp.findings[0].resources[0].data_classification.result.status.code #=> String # resp.findings[0].resources[0].data_classification.result.status.reason #=> String # resp.findings[0].resources[0].data_classification.result.sensitive_data #=> Array # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].category #=> String # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections #=> Array # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].count #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].type #=> String # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.line_ranges #=> Array # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.line_ranges[0].start #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.line_ranges[0].end #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.line_ranges[0].start_column #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.offset_ranges #=> Array # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.offset_ranges[0].start #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.offset_ranges[0].end #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.offset_ranges[0].start_column #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages #=> Array # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].page_number #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].line_range.start #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].line_range.end #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].line_range.start_column #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].offset_range.start #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].offset_range.end #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].offset_range.start_column #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.records #=> Array # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.records[0].json_path #=> String # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.records[0].record_index #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells #=> Array # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells[0].column #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells[0].row #=> Integer # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells[0].column_name #=> String # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells[0].cell_reference #=> String # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].total_count #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections #=> Array # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].count #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].arn #=> String # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].name #=> String # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.line_ranges #=> Array # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.line_ranges[0].start #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.line_ranges[0].end #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.line_ranges[0].start_column #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.offset_ranges #=> Array # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.offset_ranges[0].start #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.offset_ranges[0].end #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.offset_ranges[0].start_column #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages #=> Array # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].page_number #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].line_range.start #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].line_range.end #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].line_range.start_column #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].offset_range.start #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].offset_range.end #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].offset_range.start_column #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.records #=> Array # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.records[0].json_path #=> String # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.records[0].record_index #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells #=> Array # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells[0].column #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells[0].row #=> Integer # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells[0].column_name #=> String # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells[0].cell_reference #=> String # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.total_count #=> Integer # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_configuration_name #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names #=> Array # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names[0] #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_type #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.health_check_grace_period #=> Integer # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.created_time #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_allocation_strategy #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_base_capacity #=> Integer # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.on_demand_percentage_above_base_capacity #=> Integer # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_allocation_strategy #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_instance_pools #=> Integer # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.instances_distribution.spot_max_price #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.launch_template_id #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.launch_template_name #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.launch_template_specification.version #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides #=> Array # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides[0].instance_type #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.mixed_instances_policy.launch_template.overrides[0].weighted_capacity #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.availability_zones #=> Array # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.availability_zones[0].value #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_template.launch_template_id #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_template.launch_template_name #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_template.version #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.capacity_rebalance #=> Boolean # resp.findings[0].resources[0].details.aws_code_build_project.encryption_key #=> String # resp.findings[0].resources[0].details.aws_code_build_project.artifacts #=> Array # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].artifact_identifier #=> String # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].encryption_disabled #=> Boolean # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].location #=> String # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].name #=> String # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].namespace_type #=> String # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].override_artifact_name #=> Boolean # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].packaging #=> String # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].path #=> String # resp.findings[0].resources[0].details.aws_code_build_project.artifacts[0].type #=> String # resp.findings[0].resources[0].details.aws_code_build_project.environment.certificate #=> String # resp.findings[0].resources[0].details.aws_code_build_project.environment.environment_variables #=> Array # resp.findings[0].resources[0].details.aws_code_build_project.environment.environment_variables[0].name #=> String # resp.findings[0].resources[0].details.aws_code_build_project.environment.environment_variables[0].type #=> String # resp.findings[0].resources[0].details.aws_code_build_project.environment.environment_variables[0].value #=> String # resp.findings[0].resources[0].details.aws_code_build_project.environment.privileged_mode #=> Boolean # resp.findings[0].resources[0].details.aws_code_build_project.environment.image_pull_credentials_type #=> String # resp.findings[0].resources[0].details.aws_code_build_project.environment.registry_credential.credential #=> String # resp.findings[0].resources[0].details.aws_code_build_project.environment.registry_credential.credential_provider #=> String # resp.findings[0].resources[0].details.aws_code_build_project.environment.type #=> String # resp.findings[0].resources[0].details.aws_code_build_project.name #=> String # resp.findings[0].resources[0].details.aws_code_build_project.source.type #=> String # resp.findings[0].resources[0].details.aws_code_build_project.source.location #=> String # resp.findings[0].resources[0].details.aws_code_build_project.source.git_clone_depth #=> Integer # resp.findings[0].resources[0].details.aws_code_build_project.source.insecure_ssl #=> Boolean # resp.findings[0].resources[0].details.aws_code_build_project.service_role #=> String # resp.findings[0].resources[0].details.aws_code_build_project.logs_config.cloud_watch_logs.group_name #=> String # resp.findings[0].resources[0].details.aws_code_build_project.logs_config.cloud_watch_logs.status #=> String # resp.findings[0].resources[0].details.aws_code_build_project.logs_config.cloud_watch_logs.stream_name #=> String # resp.findings[0].resources[0].details.aws_code_build_project.logs_config.s3_logs.encryption_disabled #=> Boolean # resp.findings[0].resources[0].details.aws_code_build_project.logs_config.s3_logs.location #=> String # resp.findings[0].resources[0].details.aws_code_build_project.logs_config.s3_logs.status #=> String # resp.findings[0].resources[0].details.aws_code_build_project.vpc_config.vpc_id #=> String # resp.findings[0].resources[0].details.aws_code_build_project.vpc_config.subnets #=> Array # resp.findings[0].resources[0].details.aws_code_build_project.vpc_config.subnets[0] #=> String # resp.findings[0].resources[0].details.aws_code_build_project.vpc_config.security_group_ids #=> Array # resp.findings[0].resources[0].details.aws_code_build_project.vpc_config.security_group_ids[0] #=> String # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts #=> Array # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].artifact_identifier #=> String # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].encryption_disabled #=> Boolean # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].location #=> String # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].name #=> String # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].namespace_type #=> String # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].override_artifact_name #=> Boolean # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].packaging #=> String # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].path #=> String # resp.findings[0].resources[0].details.aws_code_build_project.secondary_artifacts[0].type #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.cache_behaviors.items #=> Array # resp.findings[0].resources[0].details.aws_cloud_front_distribution.cache_behaviors.items[0].viewer_protocol_policy #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.default_cache_behavior.viewer_protocol_policy #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.default_root_object #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.domain_name #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.etag #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.last_modified_time #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.logging.bucket #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.logging.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_front_distribution.logging.include_cookies #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_front_distribution.logging.prefix #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items #=> Array # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].domain_name #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].id #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].origin_path #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].s3_origin_config.origin_access_identity #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].custom_origin_config.http_port #=> Integer # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].custom_origin_config.https_port #=> Integer # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].custom_origin_config.origin_keepalive_timeout #=> Integer # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].custom_origin_config.origin_protocol_policy #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].custom_origin_config.origin_read_timeout #=> Integer # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].custom_origin_config.origin_ssl_protocols.items #=> Array # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].custom_origin_config.origin_ssl_protocols.items[0] #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origins.items[0].custom_origin_config.origin_ssl_protocols.quantity #=> Integer # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origin_groups.items #=> Array # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origin_groups.items[0].failover_criteria.status_codes.items #=> Array # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origin_groups.items[0].failover_criteria.status_codes.items[0] #=> Integer # resp.findings[0].resources[0].details.aws_cloud_front_distribution.origin_groups.items[0].failover_criteria.status_codes.quantity #=> Integer # resp.findings[0].resources[0].details.aws_cloud_front_distribution.viewer_certificate.acm_certificate_arn #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.viewer_certificate.certificate #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.viewer_certificate.certificate_source #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.viewer_certificate.cloud_front_default_certificate #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_front_distribution.viewer_certificate.iam_certificate_id #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.viewer_certificate.minimum_protocol_version #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.viewer_certificate.ssl_support_method #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.status #=> String # resp.findings[0].resources[0].details.aws_cloud_front_distribution.web_acl_id #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.type #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.image_id #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.ip_v4_addresses #=> Array # resp.findings[0].resources[0].details.aws_ec2_instance.ip_v4_addresses[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.ip_v6_addresses #=> Array # resp.findings[0].resources[0].details.aws_ec2_instance.ip_v6_addresses[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.key_name #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.iam_instance_profile_arn #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.vpc_id #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.subnet_id #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.launched_at #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.network_interfaces #=> Array # resp.findings[0].resources[0].details.aws_ec2_instance.network_interfaces[0].network_interface_id #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.virtualization_type #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.metadata_options.http_endpoint #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.metadata_options.http_protocol_ipv_6 #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.metadata_options.http_put_response_hop_limit #=> Integer # resp.findings[0].resources[0].details.aws_ec2_instance.metadata_options.http_tokens #=> String # resp.findings[0].resources[0].details.aws_ec2_instance.metadata_options.instance_metadata_tags #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.attachment.attach_time #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.attachment.attachment_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.attachment.delete_on_termination #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_network_interface.attachment.device_index #=> Integer # resp.findings[0].resources[0].details.aws_ec2_network_interface.attachment.instance_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.attachment.instance_owner_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.attachment.status #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.network_interface_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.security_groups #=> Array # resp.findings[0].resources[0].details.aws_ec2_network_interface.security_groups[0].group_name #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.security_groups[0].group_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.source_dest_check #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_network_interface.ip_v6_addresses #=> Array # resp.findings[0].resources[0].details.aws_ec2_network_interface.ip_v6_addresses[0].ip_v6_address #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.private_ip_addresses #=> Array # resp.findings[0].resources[0].details.aws_ec2_network_interface.private_ip_addresses[0].private_ip_address #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.private_ip_addresses[0].private_dns_name #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.public_dns_name #=> String # resp.findings[0].resources[0].details.aws_ec2_network_interface.public_ip #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.group_name #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.group_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.owner_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.vpc_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].ip_protocol #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].from_port #=> Integer # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].to_port #=> Integer # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].user_id_group_pairs #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].user_id_group_pairs[0].group_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].user_id_group_pairs[0].group_name #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].user_id_group_pairs[0].peering_status #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].user_id_group_pairs[0].user_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].user_id_group_pairs[0].vpc_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].user_id_group_pairs[0].vpc_peering_connection_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].ip_ranges #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].ip_ranges[0].cidr_ip #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].ipv_6_ranges #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].ipv_6_ranges[0].cidr_ipv_6 #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].prefix_list_ids #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions[0].prefix_list_ids[0].prefix_list_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].ip_protocol #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].from_port #=> Integer # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].to_port #=> Integer # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].user_id_group_pairs #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].user_id_group_pairs[0].group_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].user_id_group_pairs[0].group_name #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].user_id_group_pairs[0].peering_status #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].user_id_group_pairs[0].user_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].user_id_group_pairs[0].vpc_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].user_id_group_pairs[0].vpc_peering_connection_id #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].ip_ranges #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].ip_ranges[0].cidr_ip #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].ipv_6_ranges #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].ipv_6_ranges[0].cidr_ipv_6 #=> String # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].prefix_list_ids #=> Array # resp.findings[0].resources[0].details.aws_ec2_security_group.ip_permissions_egress[0].prefix_list_ids[0].prefix_list_id #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.create_time #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.device_name #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.encrypted #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_volume.size #=> Integer # resp.findings[0].resources[0].details.aws_ec2_volume.snapshot_id #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.status #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.attachments #=> Array # resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].attach_time #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].delete_on_termination #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].instance_id #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.attachments[0].status #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.volume_id #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.volume_type #=> String # resp.findings[0].resources[0].details.aws_ec2_volume.volume_scan_status #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].association_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc.cidr_block_association_set[0].cidr_block_state #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].association_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc.ipv_6_cidr_block_association_set[0].cidr_block_state #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc.dhcp_options_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc.state #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.instance_id #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.public_ip #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.allocation_id #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.association_id #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.domain #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.public_ipv_4_pool #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.network_border_group #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_id #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.network_interface_owner_id #=> String # resp.findings[0].resources[0].details.aws_ec2_eip.private_ip_address #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.assign_ipv_6_address_on_creation #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_subnet.availability_zone #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.availability_zone_id #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.available_ip_address_count #=> Integer # resp.findings[0].resources[0].details.aws_ec2_subnet.cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.default_for_az #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_subnet.map_public_ip_on_launch #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_subnet.owner_id #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.state #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.subnet_arn #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.subnet_id #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.vpc_id #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.ipv_6_cidr_block_association_set #=> Array # resp.findings[0].resources[0].details.aws_ec2_subnet.ipv_6_cidr_block_association_set[0].association_id #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.ipv_6_cidr_block_association_set[0].ipv_6_cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_subnet.ipv_6_cidr_block_association_set[0].cidr_block_state #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.is_default #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_network_acl.network_acl_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.owner_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.vpc_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.associations #=> Array # resp.findings[0].resources[0].details.aws_ec2_network_acl.associations[0].network_acl_association_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.associations[0].network_acl_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.associations[0].subnet_id #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries #=> Array # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].egress #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].icmp_type_code.code #=> Integer # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].icmp_type_code.type #=> Integer # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].ipv_6_cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].port_range.from #=> Integer # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].port_range.to #=> Integer # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].protocol #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].rule_action #=> String # resp.findings[0].resources[0].details.aws_ec2_network_acl.entries[0].rule_number #=> Integer # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones #=> Array # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].zone_name #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.availability_zones[0].subnet_id #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.canonical_hosted_zone_id #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.created_time #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.dns_name #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.ip_address_type #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.scheme #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.security_groups #=> Array # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.security_groups[0] #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.state.code #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.state.reason #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.type #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.vpc_id #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.load_balancer_attributes #=> Array # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.load_balancer_attributes[0].key #=> String # resp.findings[0].resources[0].details.aws_elbv_2_load_balancer.load_balancer_attributes[0].value #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.application_name #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.cname #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.date_created #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.date_updated #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.description #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.endpoint_url #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.environment_arn #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.environment_id #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.environment_links #=> Array # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.environment_links[0].environment_name #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.environment_links[0].link_name #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.environment_name #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.option_settings #=> Array # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.option_settings[0].namespace #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.option_settings[0].option_name #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.option_settings[0].resource_name #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.option_settings[0].value #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.platform_arn #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.solution_stack_name #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.status #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.tier.name #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.tier.type #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.tier.version #=> String # resp.findings[0].resources[0].details.aws_elastic_beanstalk_environment.version_label #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.access_policies #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.domain_endpoint_options.enforce_https #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.domain_endpoint_options.tls_security_policy #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.domain_id #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.domain_name #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.endpoint #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.endpoints #=> Hash # resp.findings[0].resources[0].details.aws_elasticsearch_domain.endpoints["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.elasticsearch_version #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.elasticsearch_cluster_config.dedicated_master_count #=> Integer # resp.findings[0].resources[0].details.aws_elasticsearch_domain.elasticsearch_cluster_config.dedicated_master_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.elasticsearch_cluster_config.dedicated_master_type #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.elasticsearch_cluster_config.instance_count #=> Integer # resp.findings[0].resources[0].details.aws_elasticsearch_domain.elasticsearch_cluster_config.instance_type #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.elasticsearch_cluster_config.zone_awareness_config.availability_zone_count #=> Integer # resp.findings[0].resources[0].details.aws_elasticsearch_domain.elasticsearch_cluster_config.zone_awareness_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.encryption_at_rest_options.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.encryption_at_rest_options.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.log_publishing_options.index_slow_logs.cloud_watch_logs_log_group_arn #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.log_publishing_options.index_slow_logs.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.log_publishing_options.search_slow_logs.cloud_watch_logs_log_group_arn #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.log_publishing_options.search_slow_logs.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.log_publishing_options.audit_logs.cloud_watch_logs_log_group_arn #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.log_publishing_options.audit_logs.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.node_to_node_encryption_options.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.service_software_options.automated_update_date #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.service_software_options.cancellable #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.service_software_options.current_version #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.service_software_options.description #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.service_software_options.new_version #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.service_software_options.update_available #=> Boolean # resp.findings[0].resources[0].details.aws_elasticsearch_domain.service_software_options.update_status #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.vpc_options.availability_zones #=> Array # resp.findings[0].resources[0].details.aws_elasticsearch_domain.vpc_options.availability_zones[0] #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.vpc_options.security_group_ids #=> Array # resp.findings[0].resources[0].details.aws_elasticsearch_domain.vpc_options.security_group_ids[0] #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.vpc_options.subnet_ids #=> Array # resp.findings[0].resources[0].details.aws_elasticsearch_domain.vpc_options.subnet_ids[0] #=> String # resp.findings[0].resources[0].details.aws_elasticsearch_domain.vpc_options.vpc_id #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.owner_id #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.owner_name #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.owner_account_id #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.created_at #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.server_side_encryption_configuration.rules #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.server_side_encryption_configuration.rules[0].apply_server_side_encryption_by_default.sse_algorithm #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.server_side_encryption_configuration.rules[0].apply_server_side_encryption_by_default.kms_master_key_id #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].abort_incomplete_multipart_upload.days_after_initiation #=> Integer # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].expiration_date #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].expiration_in_days #=> Integer # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].expired_object_delete_marker #=> Boolean # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.operands #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.operands[0].prefix #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.operands[0].tag.key #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.operands[0].tag.value #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.operands[0].type #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.prefix #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.tag.key #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.tag.value #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].filter.predicate.type #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].id #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].noncurrent_version_expiration_in_days #=> Integer # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].noncurrent_version_transitions #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].noncurrent_version_transitions[0].days #=> Integer # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].noncurrent_version_transitions[0].storage_class #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].prefix #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].status #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].transitions #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].transitions[0].date #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].transitions[0].days #=> Integer # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_lifecycle_configuration.rules[0].transitions[0].storage_class #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.public_access_block_configuration.block_public_acls #=> Boolean # resp.findings[0].resources[0].details.aws_s3_bucket.public_access_block_configuration.block_public_policy #=> Boolean # resp.findings[0].resources[0].details.aws_s3_bucket.public_access_block_configuration.ignore_public_acls #=> Boolean # resp.findings[0].resources[0].details.aws_s3_bucket.public_access_block_configuration.restrict_public_buckets #=> Boolean # resp.findings[0].resources[0].details.aws_s3_bucket.access_control_list #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_logging_configuration.destination_bucket_name #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_logging_configuration.log_file_prefix #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.error_document #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.index_document_suffix #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.redirect_all_requests_to.hostname #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.redirect_all_requests_to.protocol #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.routing_rules #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.routing_rules[0].condition.http_error_code_returned_equals #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.routing_rules[0].condition.key_prefix_equals #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.routing_rules[0].redirect.hostname #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.routing_rules[0].redirect.http_redirect_code #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.routing_rules[0].redirect.protocol #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.routing_rules[0].redirect.replace_key_prefix_with #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_website_configuration.routing_rules[0].redirect.replace_key_with #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].events #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].events[0] #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].filter.s3_key_filter.filter_rules #=> Array # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].filter.s3_key_filter.filter_rules[0].name #=> String, one of "Prefix", "Suffix" # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].filter.s3_key_filter.filter_rules[0].value #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].destination #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_notification_configuration.configurations[0].type #=> String # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_versioning_configuration.is_mfa_delete_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_s3_bucket.bucket_versioning_configuration.status #=> String # resp.findings[0].resources[0].details.aws_s3_account_public_access_block.block_public_acls #=> Boolean # resp.findings[0].resources[0].details.aws_s3_account_public_access_block.block_public_policy #=> Boolean # resp.findings[0].resources[0].details.aws_s3_account_public_access_block.ignore_public_acls #=> Boolean # resp.findings[0].resources[0].details.aws_s3_account_public_access_block.restrict_public_buckets #=> Boolean # resp.findings[0].resources[0].details.aws_s3_object.last_modified #=> String # resp.findings[0].resources[0].details.aws_s3_object.etag #=> String # resp.findings[0].resources[0].details.aws_s3_object.version_id #=> String # resp.findings[0].resources[0].details.aws_s3_object.content_type #=> String # resp.findings[0].resources[0].details.aws_s3_object.server_side_encryption #=> String # resp.findings[0].resources[0].details.aws_s3_object.ssekms_key_id #=> String # resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_rules.automatically_after_days #=> Integer # resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_occurred_within_frequency #=> Boolean # resp.findings[0].resources[0].details.aws_secrets_manager_secret.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_secrets_manager_secret.rotation_lambda_arn #=> String # resp.findings[0].resources[0].details.aws_secrets_manager_secret.deleted #=> Boolean # resp.findings[0].resources[0].details.aws_secrets_manager_secret.name #=> String # resp.findings[0].resources[0].details.aws_secrets_manager_secret.description #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.user_name #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.status #=> String, one of "Active", "Inactive" # resp.findings[0].resources[0].details.aws_iam_access_key.created_at #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.principal_id #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.principal_type #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.principal_name #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.account_id #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.access_key_id #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.session_context.attributes.mfa_authenticated #=> Boolean # resp.findings[0].resources[0].details.aws_iam_access_key.session_context.attributes.creation_date #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.type #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.principal_id #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.arn #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.account_id #=> String # resp.findings[0].resources[0].details.aws_iam_access_key.session_context.session_issuer.user_name #=> String # resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies #=> Array # resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_name #=> String # resp.findings[0].resources[0].details.aws_iam_user.attached_managed_policies[0].policy_arn #=> String # resp.findings[0].resources[0].details.aws_iam_user.create_date #=> String # resp.findings[0].resources[0].details.aws_iam_user.group_list #=> Array # resp.findings[0].resources[0].details.aws_iam_user.group_list[0] #=> String # resp.findings[0].resources[0].details.aws_iam_user.path #=> String # resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_arn #=> String # resp.findings[0].resources[0].details.aws_iam_user.permissions_boundary.permissions_boundary_type #=> String # resp.findings[0].resources[0].details.aws_iam_user.user_id #=> String # resp.findings[0].resources[0].details.aws_iam_user.user_name #=> String # resp.findings[0].resources[0].details.aws_iam_user.user_policy_list #=> Array # resp.findings[0].resources[0].details.aws_iam_user.user_policy_list[0].policy_name #=> String # resp.findings[0].resources[0].details.aws_iam_policy.attachment_count #=> Integer # resp.findings[0].resources[0].details.aws_iam_policy.create_date #=> String # resp.findings[0].resources[0].details.aws_iam_policy.default_version_id #=> String # resp.findings[0].resources[0].details.aws_iam_policy.description #=> String # resp.findings[0].resources[0].details.aws_iam_policy.is_attachable #=> Boolean # resp.findings[0].resources[0].details.aws_iam_policy.path #=> String # resp.findings[0].resources[0].details.aws_iam_policy.permissions_boundary_usage_count #=> Integer # resp.findings[0].resources[0].details.aws_iam_policy.policy_id #=> String # resp.findings[0].resources[0].details.aws_iam_policy.policy_name #=> String # resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list #=> Array # resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].version_id #=> String # resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].is_default_version #=> Boolean # resp.findings[0].resources[0].details.aws_iam_policy.policy_version_list[0].create_date #=> String # resp.findings[0].resources[0].details.aws_iam_policy.update_date #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.client_certificate_id #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.created_date #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.description #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.detailed_metrics_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.logging_level #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.data_trace_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.throttling_burst_limit #=> Integer # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.default_route_settings.throttling_rate_limit #=> Float # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.deployment_id #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.last_updated_date #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.detailed_metrics_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.logging_level #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.data_trace_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.throttling_burst_limit #=> Integer # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.route_settings.throttling_rate_limit #=> Float # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.stage_name #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.stage_variables #=> Hash # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.stage_variables["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.access_log_settings.format #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.access_log_settings.destination_arn #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.auto_deploy #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.last_deployment_status_message #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_stage.api_gateway_managed #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.api_endpoint #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.api_id #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.api_key_selection_expression #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.created_date #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.description #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.version #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.name #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.protocol_type #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.route_selection_expression #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_origins #=> Array # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_origins[0] #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_credentials #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.expose_headers #=> Array # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.expose_headers[0] #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.max_age #=> Integer # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_methods #=> Array # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_methods[0] #=> String # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_headers #=> Array # resp.findings[0].resources[0].details.aws_api_gateway_v2_api.cors_configuration.allow_headers[0] #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.attribute_definitions[0].attribute_type #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.billing_mode #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.billing_mode_summary.last_update_to_pay_per_request_date_time #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.creation_date_time #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].backfilling #=> Boolean # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_arn #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_size_bytes #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].index_status #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].item_count #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].attribute_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].key_schema[0].key_type #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.non_key_attributes[0] #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].projection.projection_type #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_decrease_date_time #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.last_increase_date_time #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.number_of_decreases_today #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.read_capacity_units #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_secondary_indexes[0].provisioned_throughput.write_capacity_units #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.global_table_version #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.item_count #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].attribute_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.key_schema[0].key_type #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_arn #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.latest_stream_label #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_arn #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].index_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].attribute_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].key_schema[0].key_type #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.non_key_attributes[0] #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.local_secondary_indexes[0].projection.projection_type #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_decrease_date_time #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.last_increase_date_time #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.number_of_decreases_today #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.read_capacity_units #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.provisioned_throughput.write_capacity_units #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes #=> Array # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].index_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].global_secondary_indexes[0].provisioned_throughput_override.read_capacity_units #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].kms_master_key_id #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].provisioned_throughput_override.read_capacity_units #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].region_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.replicas[0].replica_status_description #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_backup_arn #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.source_table_arn #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_date_time #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.restore_summary.restore_in_progress #=> Boolean # resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.inaccessible_encryption_date_time #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.status #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.sse_type #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.sse_description.kms_master_key_arn #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_dynamo_db_table.stream_specification.stream_view_type #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.table_id #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.table_name #=> String # resp.findings[0].resources[0].details.aws_dynamo_db_table.table_size_bytes #=> Integer # resp.findings[0].resources[0].details.aws_dynamo_db_table.table_status #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.deployment_id #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.client_certificate_id #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.stage_name #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.description #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.cache_cluster_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_stage.cache_cluster_size #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.cache_cluster_status #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings #=> Array # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].metrics_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].logging_level #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].data_trace_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].throttling_burst_limit #=> Integer # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].throttling_rate_limit #=> Float # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].caching_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].cache_ttl_in_seconds #=> Integer # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].cache_data_encrypted #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].require_authorization_for_cache_control #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].unauthorized_cache_control_header_strategy #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].http_method #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.method_settings[0].resource_path #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.variables #=> Hash # resp.findings[0].resources[0].details.aws_api_gateway_stage.variables["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.documentation_version #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.access_log_settings.format #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.access_log_settings.destination_arn #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.percent_traffic #=> Float # resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.deployment_id #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.stage_variable_overrides #=> Hash # resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.stage_variable_overrides["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.canary_settings.use_stage_cache #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_stage.tracing_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_api_gateway_stage.created_date #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.last_updated_date #=> String # resp.findings[0].resources[0].details.aws_api_gateway_stage.web_acl_arn #=> String # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.id #=> String # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.name #=> String # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.description #=> String # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.created_date #=> String # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.version #=> String # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.binary_media_types #=> Array # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.binary_media_types[0] #=> String # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.minimum_compression_size #=> Integer # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.api_key_source #=> String # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.endpoint_configuration.types #=> Array # resp.findings[0].resources[0].details.aws_api_gateway_rest_api.endpoint_configuration.types[0] #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.cloud_watch_logs_log_group_arn #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.cloud_watch_logs_role_arn #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.has_custom_event_selectors #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_trail_trail.home_region #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.include_global_service_events #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_trail_trail.is_multi_region_trail #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_trail_trail.is_organization_trail #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_trail_trail.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.log_file_validation_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_trail_trail.name #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.s3_bucket_name #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.s3_key_prefix #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.sns_topic_arn #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.sns_topic_name #=> String # resp.findings[0].resources[0].details.aws_cloud_trail_trail.trail_arn #=> String # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.status #=> String # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.compliant_critical_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.compliant_high_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.compliant_medium_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.execution_type #=> String # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.non_compliant_critical_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.compliant_informational_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.non_compliant_informational_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.compliant_unspecified_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.non_compliant_low_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.non_compliant_high_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.compliant_low_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.compliance_type #=> String # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.patch_baseline_id #=> String # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.overall_severity #=> String # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.non_compliant_medium_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.non_compliant_unspecified_count #=> Integer # resp.findings[0].resources[0].details.aws_ssm_patch_compliance.patch.compliance_summary.patch_group #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.certificate_authority_arn #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.created_at #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_name #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options #=> Array # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].domain_name #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].resource_record.name #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].resource_record.type #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].resource_record.value #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_domain #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_emails #=> Array # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_emails[0] #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_method #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.domain_validation_options[0].validation_status #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.extended_key_usages #=> Array # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.extended_key_usages[0].name #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.extended_key_usages[0].o_id #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.failure_reason #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.imported_at #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.in_use_by #=> Array # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.in_use_by[0] #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.issued_at #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.issuer #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.key_algorithm #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.key_usages #=> Array # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.key_usages[0].name #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.not_after #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.not_before #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.options.certificate_transparency_logging_preference #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_eligibility #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options #=> Array # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].domain_name #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].resource_record.name #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].resource_record.type #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].resource_record.value #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_domain #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_emails #=> Array # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_emails[0] #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_method #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.domain_validation_options[0].validation_status #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.renewal_status #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.renewal_status_reason #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.renewal_summary.updated_at #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.serial #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.signature_algorithm #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.status #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.subject #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.subject_alternative_names #=> Array # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.subject_alternative_names[0] #=> String # resp.findings[0].resources[0].details.aws_certificate_manager_certificate.type #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.allow_version_upgrade #=> Boolean # resp.findings[0].resources[0].details.aws_redshift_cluster.automated_snapshot_retention_period #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.availability_zone #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_availability_status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_create_time #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_identifier #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_nodes #=> Array # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_nodes[0].node_role #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_nodes[0].private_ip_address #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_nodes[0].public_ip_address #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups #=> Array # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].cluster_parameter_status_list #=> Array # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_apply_status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].cluster_parameter_status_list[0].parameter_apply_error_description #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].parameter_apply_status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_parameter_groups[0].parameter_group_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_public_key #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_revision_number #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_security_groups #=> Array # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_security_groups[0].cluster_security_group_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_security_groups[0].status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_snapshot_copy_status.destination_region #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_snapshot_copy_status.manual_snapshot_retention_period #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_snapshot_copy_status.retention_period #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_snapshot_copy_status.snapshot_copy_grant_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_subnet_group_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.cluster_version #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.db_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.deferred_maintenance_windows #=> Array # resp.findings[0].resources[0].details.aws_redshift_cluster.deferred_maintenance_windows[0].defer_maintenance_end_time #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.deferred_maintenance_windows[0].defer_maintenance_identifier #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.deferred_maintenance_windows[0].defer_maintenance_start_time #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.elastic_ip_status.elastic_ip #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.elastic_ip_status.status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.elastic_resize_number_of_node_options #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.encrypted #=> Boolean # resp.findings[0].resources[0].details.aws_redshift_cluster.endpoint.address #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.endpoint.port #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.enhanced_vpc_routing #=> Boolean # resp.findings[0].resources[0].details.aws_redshift_cluster.expected_next_snapshot_schedule_time #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.expected_next_snapshot_schedule_time_status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.hsm_status.hsm_client_certificate_identifier #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.hsm_status.hsm_configuration_identifier #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.hsm_status.status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.iam_roles #=> Array # resp.findings[0].resources[0].details.aws_redshift_cluster.iam_roles[0].apply_status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.iam_roles[0].iam_role_arn #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.maintenance_track_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.manual_snapshot_retention_period #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.master_username #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.next_maintenance_window_start_time #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.node_type #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.number_of_nodes #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_actions #=> Array # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_actions[0] #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.automated_snapshot_retention_period #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.cluster_identifier #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.cluster_type #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.cluster_version #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.encryption_type #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.enhanced_vpc_routing #=> Boolean # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.maintenance_track_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.master_user_password #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.node_type #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.number_of_nodes #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.pending_modified_values.publicly_accessible #=> Boolean # resp.findings[0].resources[0].details.aws_redshift_cluster.preferred_maintenance_window #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.publicly_accessible #=> Boolean # resp.findings[0].resources[0].details.aws_redshift_cluster.resize_info.allow_cancel_resize #=> Boolean # resp.findings[0].resources[0].details.aws_redshift_cluster.resize_info.resize_type #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.current_restore_rate_in_mega_bytes_per_second #=> Float # resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.elapsed_time_in_seconds #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.estimated_time_to_completion_in_seconds #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.progress_in_mega_bytes #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.snapshot_size_in_mega_bytes #=> Integer # resp.findings[0].resources[0].details.aws_redshift_cluster.restore_status.status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.snapshot_schedule_identifier #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.snapshot_schedule_state #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.vpc_id #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.vpc_security_groups #=> Array # resp.findings[0].resources[0].details.aws_redshift_cluster.vpc_security_groups[0].status #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.vpc_security_groups[0].vpc_security_group_id #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.logging_status.bucket_name #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.logging_status.last_failure_message #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.logging_status.last_failure_time #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.logging_status.last_successful_delivery_time #=> String # resp.findings[0].resources[0].details.aws_redshift_cluster.logging_status.logging_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_redshift_cluster.logging_status.s3_key_prefix #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.availability_zones #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.availability_zones[0] #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.backend_server_descriptions #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.backend_server_descriptions[0].instance_port #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.backend_server_descriptions[0].policy_names #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.backend_server_descriptions[0].policy_names[0] #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.canonical_hosted_zone_name #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.canonical_hosted_zone_name_id #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.created_time #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.dns_name #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.healthy_threshold #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.interval #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.target #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.timeout #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.health_check.unhealthy_threshold #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.instances #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.instances[0].instance_id #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.instance_port #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.instance_protocol #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.load_balancer_port #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.protocol #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].listener.ssl_certificate_id #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].policy_names #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.listener_descriptions[0].policy_names[0] #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.access_log.emit_interval #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.access_log.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.access_log.s3_bucket_name #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.access_log.s3_bucket_prefix #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.connection_draining.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.connection_draining.timeout #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.connection_settings.idle_timeout #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.cross_zone_load_balancing.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.additional_attributes #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.additional_attributes[0].key #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_attributes.additional_attributes[0].value #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.load_balancer_name #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.app_cookie_stickiness_policies #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.app_cookie_stickiness_policies[0].cookie_name #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.app_cookie_stickiness_policies[0].policy_name #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.lb_cookie_stickiness_policies #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.lb_cookie_stickiness_policies[0].cookie_expiration_period #=> Integer # resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.lb_cookie_stickiness_policies[0].policy_name #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.other_policies #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.policies.other_policies[0] #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.scheme #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.security_groups #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.security_groups[0] #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.source_security_group.group_name #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.source_security_group.owner_alias #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.subnets #=> Array # resp.findings[0].resources[0].details.aws_elb_load_balancer.subnets[0] #=> String # resp.findings[0].resources[0].details.aws_elb_load_balancer.vpc_id #=> String # resp.findings[0].resources[0].details.aws_iam_group.attached_managed_policies #=> Array # resp.findings[0].resources[0].details.aws_iam_group.attached_managed_policies[0].policy_name #=> String # resp.findings[0].resources[0].details.aws_iam_group.attached_managed_policies[0].policy_arn #=> String # resp.findings[0].resources[0].details.aws_iam_group.create_date #=> String # resp.findings[0].resources[0].details.aws_iam_group.group_id #=> String # resp.findings[0].resources[0].details.aws_iam_group.group_name #=> String # resp.findings[0].resources[0].details.aws_iam_group.group_policy_list #=> Array # resp.findings[0].resources[0].details.aws_iam_group.group_policy_list[0].policy_name #=> String # resp.findings[0].resources[0].details.aws_iam_group.path #=> String # resp.findings[0].resources[0].details.aws_iam_role.assume_role_policy_document #=> String # resp.findings[0].resources[0].details.aws_iam_role.attached_managed_policies #=> Array # resp.findings[0].resources[0].details.aws_iam_role.attached_managed_policies[0].policy_name #=> String # resp.findings[0].resources[0].details.aws_iam_role.attached_managed_policies[0].policy_arn #=> String # resp.findings[0].resources[0].details.aws_iam_role.create_date #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list #=> Array # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].arn #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].create_date #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].instance_profile_id #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].instance_profile_name #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].path #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles #=> Array # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].arn #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].assume_role_policy_document #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].create_date #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].path #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].role_id #=> String # resp.findings[0].resources[0].details.aws_iam_role.instance_profile_list[0].roles[0].role_name #=> String # resp.findings[0].resources[0].details.aws_iam_role.permissions_boundary.permissions_boundary_arn #=> String # resp.findings[0].resources[0].details.aws_iam_role.permissions_boundary.permissions_boundary_type #=> String # resp.findings[0].resources[0].details.aws_iam_role.role_id #=> String # resp.findings[0].resources[0].details.aws_iam_role.role_name #=> String # resp.findings[0].resources[0].details.aws_iam_role.role_policy_list #=> Array # resp.findings[0].resources[0].details.aws_iam_role.role_policy_list[0].policy_name #=> String # resp.findings[0].resources[0].details.aws_iam_role.max_session_duration #=> Integer # resp.findings[0].resources[0].details.aws_iam_role.path #=> String # resp.findings[0].resources[0].details.aws_kms_key.aws_account_id #=> String # resp.findings[0].resources[0].details.aws_kms_key.creation_date #=> Float # resp.findings[0].resources[0].details.aws_kms_key.key_id #=> String # resp.findings[0].resources[0].details.aws_kms_key.key_manager #=> String # resp.findings[0].resources[0].details.aws_kms_key.key_state #=> String # resp.findings[0].resources[0].details.aws_kms_key.origin #=> String # resp.findings[0].resources[0].details.aws_kms_key.description #=> String # resp.findings[0].resources[0].details.aws_kms_key.key_rotation_status #=> Boolean # resp.findings[0].resources[0].details.aws_lambda_function.code.s3_bucket #=> String # resp.findings[0].resources[0].details.aws_lambda_function.code.s3_key #=> String # resp.findings[0].resources[0].details.aws_lambda_function.code.s3_object_version #=> String # resp.findings[0].resources[0].details.aws_lambda_function.code.zip_file #=> String # resp.findings[0].resources[0].details.aws_lambda_function.code_sha_256 #=> String # resp.findings[0].resources[0].details.aws_lambda_function.dead_letter_config.target_arn #=> String # resp.findings[0].resources[0].details.aws_lambda_function.environment.variables #=> Hash # resp.findings[0].resources[0].details.aws_lambda_function.environment.variables["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_lambda_function.environment.error.error_code #=> String # resp.findings[0].resources[0].details.aws_lambda_function.environment.error.message #=> String # resp.findings[0].resources[0].details.aws_lambda_function.function_name #=> String # resp.findings[0].resources[0].details.aws_lambda_function.handler #=> String # resp.findings[0].resources[0].details.aws_lambda_function.kms_key_arn #=> String # resp.findings[0].resources[0].details.aws_lambda_function.last_modified #=> String # resp.findings[0].resources[0].details.aws_lambda_function.layers #=> Array # resp.findings[0].resources[0].details.aws_lambda_function.layers[0].arn #=> String # resp.findings[0].resources[0].details.aws_lambda_function.layers[0].code_size #=> Integer # resp.findings[0].resources[0].details.aws_lambda_function.master_arn #=> String # resp.findings[0].resources[0].details.aws_lambda_function.memory_size #=> Integer # resp.findings[0].resources[0].details.aws_lambda_function.revision_id #=> String # resp.findings[0].resources[0].details.aws_lambda_function.role #=> String # resp.findings[0].resources[0].details.aws_lambda_function.runtime #=> String # resp.findings[0].resources[0].details.aws_lambda_function.timeout #=> Integer # resp.findings[0].resources[0].details.aws_lambda_function.tracing_config.mode #=> String # resp.findings[0].resources[0].details.aws_lambda_function.vpc_config.security_group_ids #=> Array # resp.findings[0].resources[0].details.aws_lambda_function.vpc_config.security_group_ids[0] #=> String # resp.findings[0].resources[0].details.aws_lambda_function.vpc_config.subnet_ids #=> Array # resp.findings[0].resources[0].details.aws_lambda_function.vpc_config.subnet_ids[0] #=> String # resp.findings[0].resources[0].details.aws_lambda_function.vpc_config.vpc_id #=> String # resp.findings[0].resources[0].details.aws_lambda_function.version #=> String # resp.findings[0].resources[0].details.aws_lambda_layer_version.version #=> Integer # resp.findings[0].resources[0].details.aws_lambda_layer_version.compatible_runtimes #=> Array # resp.findings[0].resources[0].details.aws_lambda_layer_version.compatible_runtimes[0] #=> String # resp.findings[0].resources[0].details.aws_lambda_layer_version.created_date #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.associated_roles #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.associated_roles[0].role_arn #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.associated_roles[0].feature_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.associated_roles[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.ca_certificate_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_cluster_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_instance_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_instance_class #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_instance_port #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.dbi_resource_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.deletion_protection #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.endpoint.address #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.endpoint.port #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.endpoint.hosted_zone_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.engine #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.engine_version #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.iam_database_authentication_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.instance_create_time #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.publicly_accessible #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.storage_encrypted #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.tde_credential_arn #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].vpc_security_group_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.vpc_security_groups[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.multi_az #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.enhanced_monitoring_resource_arn #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_instance_status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.master_username #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.allocated_storage #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_backup_window #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.backup_retention_period #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.db_security_groups[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].db_parameter_group_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_parameter_groups[0].parameter_apply_status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.availability_zone #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_description #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.vpc_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnet_group_status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.subnets[0].subnet_status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.db_subnet_group.db_subnet_group_arn #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.preferred_maintenance_window #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_class #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.allocated_storage #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.master_user_password #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.port #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.backup_retention_period #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.multi_az #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.engine_version #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.license_model #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.iops #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_instance_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.storage_type #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.ca_certificate_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.db_subnet_group_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_enable[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.pending_cloud_watch_logs_exports.log_types_to_disable[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.pending_modified_values.processor_features[0].value #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.latest_restorable_time #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.auto_minor_version_upgrade #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_source_db_instance_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_instance_identifiers[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.read_replica_db_cluster_identifiers[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.license_model #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.iops #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].option_group_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.option_group_memberships[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.character_set_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.secondary_availability_zone #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status_type #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].normal #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.status_infos[0].message #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.storage_type #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].domain #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].fqdn #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.domain_memberships[0].iam_role_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.copy_tags_to_snapshot #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_interval #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.monitoring_role_arn #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.promotion_tier #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.timezone #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_kms_key_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.performance_insights_retention_period #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.enabled_cloud_watch_logs_exports[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features #=> Array # resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].name #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.processor_features[0].value #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.address #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.port #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_instance.listener_endpoint.hosted_zone_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_instance.max_allocated_storage #=> Integer # resp.findings[0].resources[0].details.aws_sns_topic.kms_master_key_id #=> String # resp.findings[0].resources[0].details.aws_sns_topic.subscription #=> Array # resp.findings[0].resources[0].details.aws_sns_topic.subscription[0].endpoint #=> String # resp.findings[0].resources[0].details.aws_sns_topic.subscription[0].protocol #=> String # resp.findings[0].resources[0].details.aws_sns_topic.topic_name #=> String # resp.findings[0].resources[0].details.aws_sns_topic.owner #=> String # resp.findings[0].resources[0].details.aws_sns_topic.sqs_success_feedback_role_arn #=> String # resp.findings[0].resources[0].details.aws_sns_topic.sqs_failure_feedback_role_arn #=> String # resp.findings[0].resources[0].details.aws_sns_topic.application_success_feedback_role_arn #=> String # resp.findings[0].resources[0].details.aws_sns_topic.firehose_success_feedback_role_arn #=> String # resp.findings[0].resources[0].details.aws_sns_topic.firehose_failure_feedback_role_arn #=> String # resp.findings[0].resources[0].details.aws_sns_topic.http_success_feedback_role_arn #=> String # resp.findings[0].resources[0].details.aws_sns_topic.http_failure_feedback_role_arn #=> String # resp.findings[0].resources[0].details.aws_sqs_queue.kms_data_key_reuse_period_seconds #=> Integer # resp.findings[0].resources[0].details.aws_sqs_queue.kms_master_key_id #=> String # resp.findings[0].resources[0].details.aws_sqs_queue.queue_name #=> String # resp.findings[0].resources[0].details.aws_sqs_queue.dead_letter_target_arn #=> String # resp.findings[0].resources[0].details.aws_waf_web_acl.name #=> String # resp.findings[0].resources[0].details.aws_waf_web_acl.default_action #=> String # resp.findings[0].resources[0].details.aws_waf_web_acl.rules #=> Array # resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].action.type #=> String # resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].excluded_rules #=> Array # resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].excluded_rules[0].rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].override_action.type #=> String # resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].priority #=> Integer # resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_web_acl.rules[0].type #=> String # resp.findings[0].resources[0].details.aws_waf_web_acl.web_acl_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_snapshot_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.db_instance_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_create_time #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.allocated_storage #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_snapshot.status #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.port #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_snapshot.availability_zone #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.vpc_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.instance_create_time #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.master_username #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.engine_version #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.license_model #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.snapshot_type #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.iops #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_snapshot.option_group_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.percent_progress #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_region #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.source_db_snapshot_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.storage_type #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.tde_credential_arn #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.encrypted #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_snapshot.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.timezone #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.iam_database_authentication_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features #=> Array # resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].name #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.processor_features[0].value #=> String # resp.findings[0].resources[0].details.aws_rds_db_snapshot.dbi_resource_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.availability_zones[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_create_time #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.allocated_storage #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.status #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.port #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.vpc_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.cluster_create_time #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.master_username #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.engine_version #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.license_model #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.snapshot_type #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.percent_progress #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.storage_encrypted #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.db_cluster_snapshot_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster.allocated_storage #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.availability_zones[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.backup_retention_period #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_cluster.database_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.status #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.endpoint #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.reader_endpoint #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.custom_endpoints[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.multi_az #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster.engine #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_version #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.port #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_cluster.master_username #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_backup_window #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.preferred_maintenance_window #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.read_replica_identifiers[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].vpc_security_group_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.vpc_security_groups[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.hosted_zone_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.storage_encrypted #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_resource_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].role_arn #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.associated_roles[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.cluster_create_time #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.enabled_cloud_watch_logs_exports[0] #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.engine_mode #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.deletion_protection #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster.http_endpoint_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster.activity_stream_status #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.copy_tags_to_snapshot #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster.cross_account_clone #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].domain #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].fqdn #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.domain_memberships[0].iam_role_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_parameter_group #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_subnet_group #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].db_cluster_option_group_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_option_group_memberships[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members #=> Array # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].is_cluster_writer #=> Boolean # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].promotion_tier #=> Integer # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_instance_identifier #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.db_cluster_members[0].db_cluster_parameter_group_status #=> String # resp.findings[0].resources[0].details.aws_rds_db_cluster.iam_database_authentication_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_cluster.cluster_arn #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.active_services_count #=> Integer # resp.findings[0].resources[0].details.aws_ecs_cluster.capacity_providers #=> Array # resp.findings[0].resources[0].details.aws_ecs_cluster.capacity_providers[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.cluster_settings #=> Array # resp.findings[0].resources[0].details.aws_ecs_cluster.cluster_settings[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.cluster_settings[0].value #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.configuration.execute_command_configuration.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.configuration.execute_command_configuration.log_configuration.cloud_watch_encryption_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_cluster.configuration.execute_command_configuration.log_configuration.cloud_watch_log_group_name #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.configuration.execute_command_configuration.log_configuration.s3_bucket_name #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.configuration.execute_command_configuration.log_configuration.s3_encryption_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_cluster.configuration.execute_command_configuration.log_configuration.s3_key_prefix #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.configuration.execute_command_configuration.logging #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.default_capacity_provider_strategy #=> Array # resp.findings[0].resources[0].details.aws_ecs_cluster.default_capacity_provider_strategy[0].base #=> Integer # resp.findings[0].resources[0].details.aws_ecs_cluster.default_capacity_provider_strategy[0].capacity_provider #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.default_capacity_provider_strategy[0].weight #=> Integer # resp.findings[0].resources[0].details.aws_ecs_cluster.cluster_name #=> String # resp.findings[0].resources[0].details.aws_ecs_cluster.registered_container_instances_count #=> Integer # resp.findings[0].resources[0].details.aws_ecs_cluster.running_tasks_count #=> Integer # resp.findings[0].resources[0].details.aws_ecs_cluster.status #=> String # resp.findings[0].resources[0].details.aws_ecs_container.name #=> String # resp.findings[0].resources[0].details.aws_ecs_container.image #=> String # resp.findings[0].resources[0].details.aws_ecs_container.mount_points #=> Array # resp.findings[0].resources[0].details.aws_ecs_container.mount_points[0].source_volume #=> String # resp.findings[0].resources[0].details.aws_ecs_container.mount_points[0].container_path #=> String # resp.findings[0].resources[0].details.aws_ecs_container.privileged #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].command #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].command[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].cpu #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].depends_on #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].depends_on[0].condition #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].depends_on[0].container_name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].disable_networking #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].dns_search_domains #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].dns_search_domains[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].dns_servers #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].dns_servers[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].docker_labels #=> Hash # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].docker_labels["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].docker_security_options #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].docker_security_options[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].entry_point #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].entry_point[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].environment #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].environment[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].environment[0].value #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].environment_files #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].environment_files[0].type #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].environment_files[0].value #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].essential #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].extra_hosts #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].extra_hosts[0].hostname #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].extra_hosts[0].ip_address #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].firelens_configuration.options #=> Hash # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].firelens_configuration.options["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].firelens_configuration.type #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].health_check.command #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].health_check.command[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].health_check.interval #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].health_check.retries #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].health_check.start_period #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].health_check.timeout #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].hostname #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].image #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].interactive #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].links #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].links[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.capabilities.add #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.capabilities.add[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.capabilities.drop #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.capabilities.drop[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.devices #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.devices[0].container_path #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.devices[0].host_path #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.devices[0].permissions #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.devices[0].permissions[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.init_process_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.max_swap #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.shared_memory_size #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.swappiness #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.tmpfs #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.tmpfs[0].container_path #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.tmpfs[0].mount_options #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.tmpfs[0].mount_options[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].linux_parameters.tmpfs[0].size #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].log_configuration.log_driver #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].log_configuration.options #=> Hash # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].log_configuration.options["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].log_configuration.secret_options #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].log_configuration.secret_options[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].log_configuration.secret_options[0].value_from #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].memory #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].memory_reservation #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].mount_points #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].mount_points[0].container_path #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].mount_points[0].read_only #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].mount_points[0].source_volume #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].port_mappings #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].port_mappings[0].container_port #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].port_mappings[0].host_port #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].port_mappings[0].protocol #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].privileged #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].pseudo_terminal #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].readonly_root_filesystem #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].repository_credentials.credentials_parameter #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].resource_requirements #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].resource_requirements[0].type #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].resource_requirements[0].value #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].secrets #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].secrets[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].secrets[0].value_from #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].start_timeout #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].stop_timeout #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].system_controls #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].system_controls[0].namespace #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].system_controls[0].value #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].ulimits #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].ulimits[0].hard_limit #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].ulimits[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].ulimits[0].soft_limit #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].user #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].volumes_from #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].volumes_from[0].read_only #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].volumes_from[0].source_container #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.container_definitions[0].working_directory #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.cpu #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.execution_role_arn #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.family #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.inference_accelerators #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.inference_accelerators[0].device_name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.inference_accelerators[0].device_type #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.ipc_mode #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.memory #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.network_mode #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.pid_mode #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.placement_constraints #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.placement_constraints[0].expression #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.placement_constraints[0].type #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.proxy_configuration.container_name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.proxy_configuration.proxy_configuration_properties #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.proxy_configuration.proxy_configuration_properties[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.proxy_configuration.proxy_configuration_properties[0].value #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.proxy_configuration.type #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.requires_compatibilities #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.requires_compatibilities[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.task_role_arn #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes #=> Array # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].docker_volume_configuration.autoprovision #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].docker_volume_configuration.driver #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].docker_volume_configuration.driver_opts #=> Hash # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].docker_volume_configuration.driver_opts["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].docker_volume_configuration.labels #=> Hash # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].docker_volume_configuration.labels["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].docker_volume_configuration.scope #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].efs_volume_configuration.authorization_config.access_point_id #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].efs_volume_configuration.authorization_config.iam #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].efs_volume_configuration.filesystem_id #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].efs_volume_configuration.root_directory #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].efs_volume_configuration.transit_encryption #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].efs_volume_configuration.transit_encryption_port #=> Integer # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].host.source_path #=> String # resp.findings[0].resources[0].details.aws_ecs_task_definition.volumes[0].name #=> String # resp.findings[0].resources[0].details.container.container_runtime #=> String # resp.findings[0].resources[0].details.container.name #=> String # resp.findings[0].resources[0].details.container.image_id #=> String # resp.findings[0].resources[0].details.container.image_name #=> String # resp.findings[0].resources[0].details.container.launched_at #=> String # resp.findings[0].resources[0].details.container.volume_mounts #=> Array # resp.findings[0].resources[0].details.container.volume_mounts[0].name #=> String # resp.findings[0].resources[0].details.container.volume_mounts[0].mount_path #=> String # resp.findings[0].resources[0].details.container.privileged #=> Boolean # resp.findings[0].resources[0].details.other #=> Hash # resp.findings[0].resources[0].details.other["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.cust_subscription_id #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.customer_aws_id #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_rds_event_subscription.event_categories_list #=> Array # resp.findings[0].resources[0].details.aws_rds_event_subscription.event_categories_list[0] #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.event_subscription_arn #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.sns_topic_arn #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.source_ids_list #=> Array # resp.findings[0].resources[0].details.aws_rds_event_subscription.source_ids_list[0] #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.source_type #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.status #=> String # resp.findings[0].resources[0].details.aws_rds_event_subscription.subscription_creation_time #=> String # resp.findings[0].resources[0].details.aws_ecs_service.capacity_provider_strategy #=> Array # resp.findings[0].resources[0].details.aws_ecs_service.capacity_provider_strategy[0].base #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.capacity_provider_strategy[0].capacity_provider #=> String # resp.findings[0].resources[0].details.aws_ecs_service.capacity_provider_strategy[0].weight #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.cluster #=> String # resp.findings[0].resources[0].details.aws_ecs_service.deployment_configuration.deployment_circuit_breaker.enable #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_service.deployment_configuration.deployment_circuit_breaker.rollback #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_service.deployment_configuration.maximum_percent #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.deployment_configuration.minimum_healthy_percent #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.deployment_controller.type #=> String # resp.findings[0].resources[0].details.aws_ecs_service.desired_count #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.enable_ecs_managed_tags #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_service.enable_execute_command #=> Boolean # resp.findings[0].resources[0].details.aws_ecs_service.health_check_grace_period_seconds #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.launch_type #=> String # resp.findings[0].resources[0].details.aws_ecs_service.load_balancers #=> Array # resp.findings[0].resources[0].details.aws_ecs_service.load_balancers[0].container_name #=> String # resp.findings[0].resources[0].details.aws_ecs_service.load_balancers[0].container_port #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.load_balancers[0].load_balancer_name #=> String # resp.findings[0].resources[0].details.aws_ecs_service.load_balancers[0].target_group_arn #=> String # resp.findings[0].resources[0].details.aws_ecs_service.name #=> String # resp.findings[0].resources[0].details.aws_ecs_service.network_configuration.aws_vpc_configuration.assign_public_ip #=> String # resp.findings[0].resources[0].details.aws_ecs_service.network_configuration.aws_vpc_configuration.security_groups #=> Array # resp.findings[0].resources[0].details.aws_ecs_service.network_configuration.aws_vpc_configuration.security_groups[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_service.network_configuration.aws_vpc_configuration.subnets #=> Array # resp.findings[0].resources[0].details.aws_ecs_service.network_configuration.aws_vpc_configuration.subnets[0] #=> String # resp.findings[0].resources[0].details.aws_ecs_service.placement_constraints #=> Array # resp.findings[0].resources[0].details.aws_ecs_service.placement_constraints[0].expression #=> String # resp.findings[0].resources[0].details.aws_ecs_service.placement_constraints[0].type #=> String # resp.findings[0].resources[0].details.aws_ecs_service.placement_strategies #=> Array # resp.findings[0].resources[0].details.aws_ecs_service.placement_strategies[0].field #=> String # resp.findings[0].resources[0].details.aws_ecs_service.placement_strategies[0].type #=> String # resp.findings[0].resources[0].details.aws_ecs_service.platform_version #=> String # resp.findings[0].resources[0].details.aws_ecs_service.propagate_tags #=> String # resp.findings[0].resources[0].details.aws_ecs_service.role #=> String # resp.findings[0].resources[0].details.aws_ecs_service.scheduling_strategy #=> String # resp.findings[0].resources[0].details.aws_ecs_service.service_arn #=> String # resp.findings[0].resources[0].details.aws_ecs_service.service_name #=> String # resp.findings[0].resources[0].details.aws_ecs_service.service_registries #=> Array # resp.findings[0].resources[0].details.aws_ecs_service.service_registries[0].container_name #=> String # resp.findings[0].resources[0].details.aws_ecs_service.service_registries[0].container_port #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.service_registries[0].port #=> Integer # resp.findings[0].resources[0].details.aws_ecs_service.service_registries[0].registry_arn #=> String # resp.findings[0].resources[0].details.aws_ecs_service.task_definition #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.associate_public_ip_address #=> Boolean # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings #=> Array # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].device_name #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].ebs.delete_on_termination #=> Boolean # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].ebs.encrypted #=> Boolean # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].ebs.iops #=> Integer # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].ebs.snapshot_id #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].ebs.volume_size #=> Integer # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].ebs.volume_type #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].no_device #=> Boolean # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.block_device_mappings[0].virtual_name #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.classic_link_vpc_id #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.classic_link_vpc_security_groups #=> Array # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.classic_link_vpc_security_groups[0] #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.created_time #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.ebs_optimized #=> Boolean # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.iam_instance_profile #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.image_id #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.instance_monitoring.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.instance_type #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.kernel_id #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.key_name #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.launch_configuration_name #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.placement_tenancy #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.ramdisk_id #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.security_groups #=> Array # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.security_groups[0] #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.spot_price #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.user_data #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_endpoint #=> String # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_put_response_hop_limit #=> Integer # resp.findings[0].resources[0].details.aws_auto_scaling_launch_configuration.metadata_options.http_tokens #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vpn_connection_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.state #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.customer_gateway_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.customer_gateway_configuration #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.type #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vpn_gateway_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.category #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vgw_telemetry #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vgw_telemetry[0].accepted_route_count #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vgw_telemetry[0].certificate_arn #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vgw_telemetry[0].last_status_change #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vgw_telemetry[0].outside_ip_address #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vgw_telemetry[0].status #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.vgw_telemetry[0].status_message #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.static_routes_only #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].dpd_timeout_seconds #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].ike_versions #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].ike_versions[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].outside_ip_address #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_1_dh_group_numbers #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_1_dh_group_numbers[0] #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_1_encryption_algorithms #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_1_encryption_algorithms[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_1_integrity_algorithms #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_1_integrity_algorithms[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_1_lifetime_seconds #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_2_dh_group_numbers #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_2_dh_group_numbers[0] #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_2_encryption_algorithms #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_2_encryption_algorithms[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_2_integrity_algorithms #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_2_integrity_algorithms[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].phase_2_lifetime_seconds #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].pre_shared_key #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].rekey_fuzz_percentage #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].rekey_margin_time_seconds #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].replay_window_size #=> Integer # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.options.tunnel_options[0].tunnel_inside_cidr #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.routes #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.routes[0].destination_cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.routes[0].state #=> String # resp.findings[0].resources[0].details.aws_ec2_vpn_connection.transit_gateway_id #=> String # resp.findings[0].resources[0].details.aws_ecr_container_image.registry_id #=> String # resp.findings[0].resources[0].details.aws_ecr_container_image.repository_name #=> String # resp.findings[0].resources[0].details.aws_ecr_container_image.architecture #=> String # resp.findings[0].resources[0].details.aws_ecr_container_image.image_digest #=> String # resp.findings[0].resources[0].details.aws_ecr_container_image.image_tags #=> Array # resp.findings[0].resources[0].details.aws_ecr_container_image.image_tags[0] #=> String # resp.findings[0].resources[0].details.aws_ecr_container_image.image_published_at #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.arn #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.access_policies #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_name #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.id #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_endpoint #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.engine_version #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.encryption_at_rest_options.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.encryption_at_rest_options.kms_key_id #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.node_to_node_encryption_options.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.service_software_options.automated_update_date #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.service_software_options.cancellable #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.service_software_options.current_version #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.service_software_options.description #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.service_software_options.new_version #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.service_software_options.update_available #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.service_software_options.update_status #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.service_software_options.optional_deployment #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.instance_count #=> Integer # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.warm_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.warm_count #=> Integer # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.dedicated_master_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.zone_awareness_config.availability_zone_count #=> Integer # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.dedicated_master_count #=> Integer # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.instance_type #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.warm_type #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.zone_awareness_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.cluster_config.dedicated_master_type #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_endpoint_options.custom_endpoint_certificate_arn #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_endpoint_options.custom_endpoint_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_endpoint_options.enforce_https #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_endpoint_options.custom_endpoint #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_endpoint_options.tls_security_policy #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.vpc_options.security_group_ids #=> Array # resp.findings[0].resources[0].details.aws_open_search_service_domain.vpc_options.security_group_ids[0] #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.vpc_options.subnet_ids #=> Array # resp.findings[0].resources[0].details.aws_open_search_service_domain.vpc_options.subnet_ids[0] #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.log_publishing_options.index_slow_logs.cloud_watch_logs_log_group_arn #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.log_publishing_options.index_slow_logs.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.log_publishing_options.search_slow_logs.cloud_watch_logs_log_group_arn #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.log_publishing_options.search_slow_logs.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.log_publishing_options.audit_logs.cloud_watch_logs_log_group_arn #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.log_publishing_options.audit_logs.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_endpoints #=> Hash # resp.findings[0].resources[0].details.aws_open_search_service_domain.domain_endpoints["NonEmptyString"] #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.advanced_security_options.enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.advanced_security_options.internal_user_database_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_open_search_service_domain.advanced_security_options.master_user_options.master_user_arn #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.advanced_security_options.master_user_options.master_user_name #=> String # resp.findings[0].resources[0].details.aws_open_search_service_domain.advanced_security_options.master_user_options.master_user_password #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.acceptance_required #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.availability_zones #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.availability_zones[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.base_endpoint_dns_names #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.base_endpoint_dns_names[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.manages_vpc_endpoints #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.gateway_load_balancer_arns #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.gateway_load_balancer_arns[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.network_load_balancer_arns #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.network_load_balancer_arns[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.private_dns_name #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.service_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.service_name #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.service_state #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.service_type #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_endpoint_service.service_type[0].service_type #=> String # resp.findings[0].resources[0].details.aws_xray_encryption_config.key_id #=> String # resp.findings[0].resources[0].details.aws_xray_encryption_config.status #=> String # resp.findings[0].resources[0].details.aws_xray_encryption_config.type #=> String # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.metric_name #=> String # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.name #=> String # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.rate_key #=> String # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.rate_limit #=> Integer # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.match_predicates #=> Array # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.match_predicates[0].data_id #=> String # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.match_predicates[0].negated #=> Boolean # resp.findings[0].resources[0].details.aws_waf_rate_based_rule.match_predicates[0].type #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.metric_name #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.name #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.rate_key #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.rate_limit #=> Integer # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.match_predicates #=> Array # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.match_predicates[0].data_id #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.match_predicates[0].negated #=> Boolean # resp.findings[0].resources[0].details.aws_waf_regional_rate_based_rule.match_predicates[0].type #=> String # resp.findings[0].resources[0].details.aws_ecr_repository.arn #=> String # resp.findings[0].resources[0].details.aws_ecr_repository.image_scanning_configuration.scan_on_push #=> Boolean # resp.findings[0].resources[0].details.aws_ecr_repository.image_tag_mutability #=> String # resp.findings[0].resources[0].details.aws_ecr_repository.lifecycle_policy.lifecycle_policy_text #=> String # resp.findings[0].resources[0].details.aws_ecr_repository.lifecycle_policy.registry_id #=> String # resp.findings[0].resources[0].details.aws_ecr_repository.repository_name #=> String # resp.findings[0].resources[0].details.aws_ecr_repository.repository_policy_text #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.arn #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.certificate_authority_data #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.cluster_status #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.endpoint #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.name #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.resources_vpc_config.security_group_ids #=> Array # resp.findings[0].resources[0].details.aws_eks_cluster.resources_vpc_config.security_group_ids[0] #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.resources_vpc_config.subnet_ids #=> Array # resp.findings[0].resources[0].details.aws_eks_cluster.resources_vpc_config.subnet_ids[0] #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.role_arn #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.version #=> String # resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging #=> Array # resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].enabled #=> Boolean # resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].types #=> Array # resp.findings[0].resources[0].details.aws_eks_cluster.logging.cluster_logging[0].types[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateful_rule_group_references #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateful_rule_group_references[0].resource_arn #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions[0].action_definition.publish_metric_action.dimensions #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions[0].action_definition.publish_metric_action.dimensions[0].value #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_custom_actions[0].action_name #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_default_actions #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_default_actions[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_fragment_default_actions #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_fragment_default_actions[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references[0].priority #=> Integer # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy.stateless_rule_group_references[0].resource_arn #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_arn #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_id #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.firewall_policy_name #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall_policy.description #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall.delete_protection #=> Boolean # resp.findings[0].resources[0].details.aws_network_firewall_firewall.description #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_arn #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_id #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_name #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_policy_arn #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall.firewall_policy_change_protection #=> Boolean # resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_change_protection #=> Boolean # resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_mappings #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_firewall.subnet_mappings[0].subnet_id #=> String # resp.findings[0].resources[0].details.aws_network_firewall_firewall.vpc_id #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.capacity #=> Integer # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.description #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.ip_sets.definition #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.ip_sets.definition[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.port_sets.definition #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rule_variables.port_sets.definition[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.generated_rules_type #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.target_types #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.target_types[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.targets #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_source_list.targets[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.rules_string #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].action #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.destination #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.destination_port #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.direction #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.protocol #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.source #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].header.source_port #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].keyword #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].settings #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateful_rules[0].rule_options[0].settings[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions[0].action_definition.publish_metric_action.dimensions #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions[0].action_definition.publish_metric_action.dimensions[0].value #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.custom_actions[0].action_name #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].priority #=> Integer # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.actions #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.actions[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destination_ports #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destination_ports[0].from_port #=> Integer # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destination_ports[0].to_port #=> Integer # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destinations #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.destinations[0].address_definition #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.protocols #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.protocols[0] #=> Integer # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.source_ports #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.source_ports[0].from_port #=> Integer # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.source_ports[0].to_port #=> Integer # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.sources #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.sources[0].address_definition #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags[0].flags #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags[0].flags[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags[0].masks #=> Array # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group.rules_source.stateless_rules_and_custom_actions.stateless_rules[0].rule_definition.match_attributes.tcp_flags[0].masks[0] #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_arn #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_id #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.rule_group_name #=> String # resp.findings[0].resources[0].details.aws_network_firewall_rule_group.type #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.db_security_group_arn #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.db_security_group_description #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.db_security_group_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.ec2_security_groups #=> Array # resp.findings[0].resources[0].details.aws_rds_db_security_group.ec2_security_groups[0].ec2_security_group_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.ec2_security_groups[0].ec2_security_group_name #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.ec2_security_groups[0].ec2_security_group_owner_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.ec2_security_groups[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.ip_ranges #=> Array # resp.findings[0].resources[0].details.aws_rds_db_security_group.ip_ranges[0].cidr_ip #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.ip_ranges[0].status #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.owner_id #=> String # resp.findings[0].resources[0].details.aws_rds_db_security_group.vpc_id #=> String # resp.findings[0].resources[0].details.aws_kinesis_stream.name #=> String # resp.findings[0].resources[0].details.aws_kinesis_stream.arn #=> String # resp.findings[0].resources[0].details.aws_kinesis_stream.stream_encryption.encryption_type #=> String # resp.findings[0].resources[0].details.aws_kinesis_stream.stream_encryption.key_id #=> String # resp.findings[0].resources[0].details.aws_kinesis_stream.shard_count #=> Integer # resp.findings[0].resources[0].details.aws_kinesis_stream.retention_period_hours #=> Integer # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.id #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.description #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.default_route_table_propagation #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.auto_accept_shared_attachments #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.default_route_table_association #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.transit_gateway_cidr_blocks #=> Array # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.transit_gateway_cidr_blocks[0] #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.association_default_route_table_id #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.propagation_default_route_table_id #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.vpn_ecmp_support #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.dns_support #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.multicast_support #=> String # resp.findings[0].resources[0].details.aws_ec2_transit_gateway.amazon_side_asn #=> Integer # resp.findings[0].resources[0].details.aws_efs_access_point.access_point_id #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.arn #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.client_token #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.file_system_id #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.posix_user.gid #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.posix_user.secondary_gids #=> Array # resp.findings[0].resources[0].details.aws_efs_access_point.posix_user.secondary_gids[0] #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.posix_user.uid #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.root_directory.creation_info.owner_gid #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.root_directory.creation_info.owner_uid #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.root_directory.creation_info.permissions #=> String # resp.findings[0].resources[0].details.aws_efs_access_point.root_directory.path #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.capabilities #=> Array # resp.findings[0].resources[0].details.aws_cloud_formation_stack.capabilities[0] #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.creation_time #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.description #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.disable_rollback #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_formation_stack.drift_information.stack_drift_status #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.enable_termination_protection #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_formation_stack.last_updated_time #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.notification_arns #=> Array # resp.findings[0].resources[0].details.aws_cloud_formation_stack.notification_arns[0] #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.outputs #=> Array # resp.findings[0].resources[0].details.aws_cloud_formation_stack.outputs[0].description #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.outputs[0].output_key #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.outputs[0].output_value #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.role_arn #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.stack_id #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.stack_name #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.stack_status #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.stack_status_reason #=> String # resp.findings[0].resources[0].details.aws_cloud_formation_stack.timeout_in_minutes #=> Integer # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.actions_enabled #=> Boolean # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.alarm_actions #=> Array # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.alarm_actions[0] #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.alarm_arn #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.alarm_configuration_updated_timestamp #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.alarm_description #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.alarm_name #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.comparison_operator #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.datapoints_to_alarm #=> Integer # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.dimensions #=> Array # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.dimensions[0].name #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.dimensions[0].value #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.evaluate_low_sample_count_percentile #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.evaluation_periods #=> Integer # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.extended_statistic #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.insufficient_data_actions #=> Array # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.insufficient_data_actions[0] #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.metric_name #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.namespace #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.ok_actions #=> Array # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.ok_actions[0] #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.period #=> Integer # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.statistic #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.threshold #=> Float # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.threshold_metric_id #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.treat_missing_data #=> String # resp.findings[0].resources[0].details.aws_cloud_watch_alarm.unit #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.cidr_block_set #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.cidr_block_set[0].cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.ipv_6_cidr_block_set #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.ipv_6_cidr_block_set[0].ipv_6_cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.owner_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.peering_options.allow_dns_resolution_from_remote_vpc #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.peering_options.allow_egress_from_local_classic_link_to_remote_vpc #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.peering_options.allow_egress_from_local_vpc_to_remote_classic_link #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.region #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.accepter_vpc_info.vpc_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.expiration_time #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.cidr_block_set #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.cidr_block_set[0].cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.ipv_6_cidr_block_set #=> Array # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.ipv_6_cidr_block_set[0].ipv_6_cidr_block #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.owner_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.peering_options.allow_dns_resolution_from_remote_vpc #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.peering_options.allow_egress_from_local_classic_link_to_remote_vpc #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.peering_options.allow_egress_from_local_vpc_to_remote_classic_link #=> Boolean # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.region #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.requester_vpc_info.vpc_id #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.status.code #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.status.message #=> String # resp.findings[0].resources[0].details.aws_ec2_vpc_peering_connection.vpc_peering_connection_id #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule_group.metric_name #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule_group.name #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule_group.rule_group_id #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule_group.rules #=> Array # resp.findings[0].resources[0].details.aws_waf_regional_rule_group.rules[0].action.type #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule_group.rules[0].priority #=> Integer # resp.findings[0].resources[0].details.aws_waf_regional_rule_group.rules[0].rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule_group.rules[0].type #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule.metric_name #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule.name #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule.predicate_list #=> Array # resp.findings[0].resources[0].details.aws_waf_regional_rule.predicate_list[0].data_id #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule.predicate_list[0].negated #=> Boolean # resp.findings[0].resources[0].details.aws_waf_regional_rule.predicate_list[0].type #=> String # resp.findings[0].resources[0].details.aws_waf_regional_rule.rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.default_action #=> String # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.metric_name #=> String # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.name #=> String # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.rules_list #=> Array # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.rules_list[0].action.type #=> String # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.rules_list[0].override_action.type #=> String # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.rules_list[0].priority #=> Integer # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.rules_list[0].rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.rules_list[0].type #=> String # resp.findings[0].resources[0].details.aws_waf_regional_web_acl.web_acl_id #=> String # resp.findings[0].resources[0].details.aws_waf_rule.metric_name #=> String # resp.findings[0].resources[0].details.aws_waf_rule.name #=> String # resp.findings[0].resources[0].details.aws_waf_rule.predicate_list #=> Array # resp.findings[0].resources[0].details.aws_waf_rule.predicate_list[0].data_id #=> String # resp.findings[0].resources[0].details.aws_waf_rule.predicate_list[0].negated #=> Boolean # resp.findings[0].resources[0].details.aws_waf_rule.predicate_list[0].type #=> String # resp.findings[0].resources[0].details.aws_waf_rule.rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_rule_group.metric_name #=> String # resp.findings[0].resources[0].details.aws_waf_rule_group.name #=> String # resp.findings[0].resources[0].details.aws_waf_rule_group.rule_group_id #=> String # resp.findings[0].resources[0].details.aws_waf_rule_group.rules #=> Array # resp.findings[0].resources[0].details.aws_waf_rule_group.rules[0].action.type #=> String # resp.findings[0].resources[0].details.aws_waf_rule_group.rules[0].priority #=> Integer # resp.findings[0].resources[0].details.aws_waf_rule_group.rules[0].rule_id #=> String # resp.findings[0].resources[0].details.aws_waf_rule_group.rules[0].type #=> String # resp.findings[0].resources[0].details.aws_ecs_task.cluster_arn #=> String # resp.findings[0].resources[0].details.aws_ecs_task.task_definition_arn #=> String # resp.findings[0].resources[0].details.aws_ecs_task.version #=> String # resp.findings[0].resources[0].details.aws_ecs_task.created_at #=> String # resp.findings[0].resources[0].details.aws_ecs_task.started_at #=> String # resp.findings[0].resources[0].details.aws_ecs_task.started_by #=> String # resp.findings[0].resources[0].details.aws_ecs_task.group #=> String # resp.findings[0].resources[0].details.aws_ecs_task.volumes #=> Array # resp.findings[0].resources[0].details.aws_ecs_task.volumes[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_task.volumes[0].host.source_path #=> String # resp.findings[0].resources[0].details.aws_ecs_task.containers #=> Array # resp.findings[0].resources[0].details.aws_ecs_task.containers[0].name #=> String # resp.findings[0].resources[0].details.aws_ecs_task.containers[0].image #=> String # resp.findings[0].resources[0].details.aws_ecs_task.containers[0].mount_points #=> Array # resp.findings[0].resources[0].details.aws_ecs_task.containers[0].mount_points[0].source_volume #=> String # resp.findings[0].resources[0].details.aws_ecs_task.containers[0].mount_points[0].container_path #=> String # resp.findings[0].resources[0].details.aws_ecs_task.containers[0].privileged #=> Boolean # resp.findings[0].compliance.status #=> String, one of "PASSED", "WARNING", "FAILED", "NOT_AVAILABLE" # resp.findings[0].compliance.related_requirements #=> Array # resp.findings[0].compliance.related_requirements[0] #=> String # resp.findings[0].compliance.status_reasons #=> Array # resp.findings[0].compliance.status_reasons[0].reason_code #=> String # resp.findings[0].compliance.status_reasons[0].description #=> String # resp.findings[0].verification_state #=> String, one of "UNKNOWN", "TRUE_POSITIVE", "FALSE_POSITIVE", "BENIGN_POSITIVE" # resp.findings[0].workflow_state #=> String, one of "NEW", "ASSIGNED", "IN_PROGRESS", "DEFERRED", "RESOLVED" # resp.findings[0].workflow.status #=> String, one of "NEW", "NOTIFIED", "RESOLVED", "SUPPRESSED" # resp.findings[0].record_state #=> String, one of "ACTIVE", "ARCHIVED" # resp.findings[0].related_findings #=> Array # resp.findings[0].related_findings[0].product_arn #=> String # resp.findings[0].related_findings[0].id #=> String # resp.findings[0].note.text #=> String # resp.findings[0].note.updated_by #=> String # resp.findings[0].note.updated_at #=> String # resp.findings[0].vulnerabilities #=> Array # resp.findings[0].vulnerabilities[0].id #=> String # resp.findings[0].vulnerabilities[0].vulnerable_packages #=> Array # resp.findings[0].vulnerabilities[0].vulnerable_packages[0].name #=> String # resp.findings[0].vulnerabilities[0].vulnerable_packages[0].version #=> String # resp.findings[0].vulnerabilities[0].vulnerable_packages[0].epoch #=> String # resp.findings[0].vulnerabilities[0].vulnerable_packages[0].release #=> String # resp.findings[0].vulnerabilities[0].vulnerable_packages[0].architecture #=> String # resp.findings[0].vulnerabilities[0].vulnerable_packages[0].package_manager #=> String # resp.findings[0].vulnerabilities[0].vulnerable_packages[0].file_path #=> String # resp.findings[0].vulnerabilities[0].cvss #=> Array # resp.findings[0].vulnerabilities[0].cvss[0].version #=> String # resp.findings[0].vulnerabilities[0].cvss[0].base_score #=> Float # resp.findings[0].vulnerabilities[0].cvss[0].base_vector #=> String # resp.findings[0].vulnerabilities[0].cvss[0].source #=> String # resp.findings[0].vulnerabilities[0].cvss[0].adjustments #=> Array # resp.findings[0].vulnerabilities[0].cvss[0].adjustments[0].metric #=> String # resp.findings[0].vulnerabilities[0].cvss[0].adjustments[0].reason #=> String # resp.findings[0].vulnerabilities[0].related_vulnerabilities #=> Array # resp.findings[0].vulnerabilities[0].related_vulnerabilities[0] #=> String # resp.findings[0].vulnerabilities[0].vendor.name #=> String # resp.findings[0].vulnerabilities[0].vendor.url #=> String # resp.findings[0].vulnerabilities[0].vendor.vendor_severity #=> String # resp.findings[0].vulnerabilities[0].vendor.vendor_created_at #=> String # resp.findings[0].vulnerabilities[0].vendor.vendor_updated_at #=> String # resp.findings[0].vulnerabilities[0].reference_urls #=> Array # resp.findings[0].vulnerabilities[0].reference_urls[0] #=> String # resp.findings[0].patch_summary.id #=> String # resp.findings[0].patch_summary.installed_count #=> Integer # resp.findings[0].patch_summary.missing_count #=> Integer # resp.findings[0].patch_summary.failed_count #=> Integer # resp.findings[0].patch_summary.installed_other_count #=> Integer # resp.findings[0].patch_summary.installed_rejected_count #=> Integer # resp.findings[0].patch_summary.installed_pending_reboot #=> Integer # resp.findings[0].patch_summary.operation_start_time #=> String # resp.findings[0].patch_summary.operation_end_time #=> String # resp.findings[0].patch_summary.reboot_option #=> String # resp.findings[0].patch_summary.operation #=> String # resp.findings[0].action.action_type #=> String # resp.findings[0].action.network_connection_action.connection_direction #=> String # resp.findings[0].action.network_connection_action.remote_ip_details.ip_address_v4 #=> String # resp.findings[0].action.network_connection_action.remote_ip_details.organization.asn #=> Integer # resp.findings[0].action.network_connection_action.remote_ip_details.organization.asn_org #=> String # resp.findings[0].action.network_connection_action.remote_ip_details.organization.isp #=> String # resp.findings[0].action.network_connection_action.remote_ip_details.organization.org #=> String # resp.findings[0].action.network_connection_action.remote_ip_details.country.country_code #=> String # resp.findings[0].action.network_connection_action.remote_ip_details.country.country_name #=> String # resp.findings[0].action.network_connection_action.remote_ip_details.city.city_name #=> String # resp.findings[0].action.network_connection_action.remote_ip_details.geo_location.lon #=> Float # resp.findings[0].action.network_connection_action.remote_ip_details.geo_location.lat #=> Float # resp.findings[0].action.network_connection_action.remote_port_details.port #=> Integer # resp.findings[0].action.network_connection_action.remote_port_details.port_name #=> String # resp.findings[0].action.network_connection_action.local_port_details.port #=> Integer # resp.findings[0].action.network_connection_action.local_port_details.port_name #=> String # resp.findings[0].action.network_connection_action.protocol #=> String # resp.findings[0].action.network_connection_action.blocked #=> Boolean # resp.findings[0].action.aws_api_call_action.api #=> String # resp.findings[0].action.aws_api_call_action.service_name #=> String # resp.findings[0].action.aws_api_call_action.caller_type #=> String # resp.findings[0].action.aws_api_call_action.remote_ip_details.ip_address_v4 #=> String # resp.findings[0].action.aws_api_call_action.remote_ip_details.organization.asn #=> Integer # resp.findings[0].action.aws_api_call_action.remote_ip_details.organization.asn_org #=> String # resp.findings[0].action.aws_api_call_action.remote_ip_details.organization.isp #=> String # resp.findings[0].action.aws_api_call_action.remote_ip_details.organization.org #=> String # resp.findings[0].action.aws_api_call_action.remote_ip_details.country.country_code #=> String # resp.findings[0].action.aws_api_call_action.remote_ip_details.country.country_name #=> String # resp.findings[0].action.aws_api_call_action.remote_ip_details.city.city_name #=> String # resp.findings[0].action.aws_api_call_action.remote_ip_details.geo_location.lon #=> Float # resp.findings[0].action.aws_api_call_action.remote_ip_details.geo_location.lat #=> Float # resp.findings[0].action.aws_api_call_action.domain_details.domain #=> String # resp.findings[0].action.aws_api_call_action.affected_resources #=> Hash # resp.findings[0].action.aws_api_call_action.affected_resources["NonEmptyString"] #=> String # resp.findings[0].action.aws_api_call_action.first_seen #=> String # resp.findings[0].action.aws_api_call_action.last_seen #=> String # resp.findings[0].action.dns_request_action.domain #=> String # resp.findings[0].action.dns_request_action.protocol #=> String # resp.findings[0].action.dns_request_action.blocked #=> Boolean # resp.findings[0].action.port_probe_action.port_probe_details #=> Array # resp.findings[0].action.port_probe_action.port_probe_details[0].local_port_details.port #=> Integer # resp.findings[0].action.port_probe_action.port_probe_details[0].local_port_details.port_name #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].local_ip_details.ip_address_v4 #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.ip_address_v4 #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.organization.asn #=> Integer # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.organization.asn_org #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.organization.isp #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.organization.org #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.country.country_code #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.country.country_name #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.city.city_name #=> String # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.geo_location.lon #=> Float # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.geo_location.lat #=> Float # resp.findings[0].action.port_probe_action.blocked #=> Boolean # resp.findings[0].finding_provider_fields.confidence #=> Integer # resp.findings[0].finding_provider_fields.criticality #=> Integer # resp.findings[0].finding_provider_fields.related_findings #=> Array # resp.findings[0].finding_provider_fields.related_findings[0].product_arn #=> String # resp.findings[0].finding_provider_fields.related_findings[0].id #=> String # resp.findings[0].finding_provider_fields.severity.label #=> String, one of "INFORMATIONAL", "LOW", "MEDIUM", "HIGH", "CRITICAL" # resp.findings[0].finding_provider_fields.severity.original #=> String # resp.findings[0].finding_provider_fields.types #=> Array # resp.findings[0].finding_provider_fields.types[0] #=> String # resp.findings[0].sample #=> Boolean # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindings AWS API Documentation # # @overload get_findings(params = {}) # @param [Hash] params ({}) def get_findings(params = {}, options = {}) req = build_request(:get_findings, params) req.send_request(options) end # Lists the results of the Security Hub insight specified by the insight # ARN. # # @option params [required, String] :insight_arn # The ARN of the insight for which to return results. # # @return [Types::GetInsightResultsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetInsightResultsResponse#insight_results #insight_results} => Types::InsightResults # # @example Request syntax with placeholder values # # resp = client.get_insight_results({ # insight_arn: "NonEmptyString", # required # }) # # @example Response structure # # resp.insight_results.insight_arn #=> String # resp.insight_results.group_by_attribute #=> String # resp.insight_results.result_values #=> Array # resp.insight_results.result_values[0].group_by_attribute_value #=> String # resp.insight_results.result_values[0].count #=> Integer # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetInsightResults AWS API Documentation # # @overload get_insight_results(params = {}) # @param [Hash] params ({}) def get_insight_results(params = {}, options = {}) req = build_request(:get_insight_results, params) req.send_request(options) end # Lists and describes insights for the specified insight ARNs. # # @option params [Array] :insight_arns # The ARNs of the insights to describe. If you do not provide any # insight ARNs, then `GetInsights` returns all of your custom insights. # It does not return any managed insights. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `GetInsights` operation, set the value of this parameter to `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @option params [Integer] :max_results # The maximum number of items to return in the response. # # @return [Types::GetInsightsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetInsightsResponse#insights #insights} => Array<Types::Insight> # * {Types::GetInsightsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.get_insights({ # insight_arns: ["NonEmptyString"], # next_token: "NextToken", # max_results: 1, # }) # # @example Response structure # # resp.insights #=> Array # resp.insights[0].insight_arn #=> String # resp.insights[0].name #=> String # resp.insights[0].filters.product_arn #=> Array # resp.insights[0].filters.product_arn[0].value #=> String # resp.insights[0].filters.product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.aws_account_id #=> Array # resp.insights[0].filters.aws_account_id[0].value #=> String # resp.insights[0].filters.aws_account_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.id #=> Array # resp.insights[0].filters.id[0].value #=> String # resp.insights[0].filters.id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.generator_id #=> Array # resp.insights[0].filters.generator_id[0].value #=> String # resp.insights[0].filters.generator_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.region #=> Array # resp.insights[0].filters.region[0].value #=> String # resp.insights[0].filters.region[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.type #=> Array # resp.insights[0].filters.type[0].value #=> String # resp.insights[0].filters.type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.first_observed_at #=> Array # resp.insights[0].filters.first_observed_at[0].start #=> String # resp.insights[0].filters.first_observed_at[0].end #=> String # resp.insights[0].filters.first_observed_at[0].date_range.value #=> Integer # resp.insights[0].filters.first_observed_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.last_observed_at #=> Array # resp.insights[0].filters.last_observed_at[0].start #=> String # resp.insights[0].filters.last_observed_at[0].end #=> String # resp.insights[0].filters.last_observed_at[0].date_range.value #=> Integer # resp.insights[0].filters.last_observed_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.created_at #=> Array # resp.insights[0].filters.created_at[0].start #=> String # resp.insights[0].filters.created_at[0].end #=> String # resp.insights[0].filters.created_at[0].date_range.value #=> Integer # resp.insights[0].filters.created_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.updated_at #=> Array # resp.insights[0].filters.updated_at[0].start #=> String # resp.insights[0].filters.updated_at[0].end #=> String # resp.insights[0].filters.updated_at[0].date_range.value #=> Integer # resp.insights[0].filters.updated_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.severity_product #=> Array # resp.insights[0].filters.severity_product[0].gte #=> Float # resp.insights[0].filters.severity_product[0].lte #=> Float # resp.insights[0].filters.severity_product[0].eq #=> Float # resp.insights[0].filters.severity_normalized #=> Array # resp.insights[0].filters.severity_normalized[0].gte #=> Float # resp.insights[0].filters.severity_normalized[0].lte #=> Float # resp.insights[0].filters.severity_normalized[0].eq #=> Float # resp.insights[0].filters.severity_label #=> Array # resp.insights[0].filters.severity_label[0].value #=> String # resp.insights[0].filters.severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.confidence #=> Array # resp.insights[0].filters.confidence[0].gte #=> Float # resp.insights[0].filters.confidence[0].lte #=> Float # resp.insights[0].filters.confidence[0].eq #=> Float # resp.insights[0].filters.criticality #=> Array # resp.insights[0].filters.criticality[0].gte #=> Float # resp.insights[0].filters.criticality[0].lte #=> Float # resp.insights[0].filters.criticality[0].eq #=> Float # resp.insights[0].filters.title #=> Array # resp.insights[0].filters.title[0].value #=> String # resp.insights[0].filters.title[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.description #=> Array # resp.insights[0].filters.description[0].value #=> String # resp.insights[0].filters.description[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.recommendation_text #=> Array # resp.insights[0].filters.recommendation_text[0].value #=> String # resp.insights[0].filters.recommendation_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.source_url #=> Array # resp.insights[0].filters.source_url[0].value #=> String # resp.insights[0].filters.source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.product_fields #=> Array # resp.insights[0].filters.product_fields[0].key #=> String # resp.insights[0].filters.product_fields[0].value #=> String # resp.insights[0].filters.product_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS" # resp.insights[0].filters.product_name #=> Array # resp.insights[0].filters.product_name[0].value #=> String # resp.insights[0].filters.product_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.company_name #=> Array # resp.insights[0].filters.company_name[0].value #=> String # resp.insights[0].filters.company_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.user_defined_fields #=> Array # resp.insights[0].filters.user_defined_fields[0].key #=> String # resp.insights[0].filters.user_defined_fields[0].value #=> String # resp.insights[0].filters.user_defined_fields[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS" # resp.insights[0].filters.malware_name #=> Array # resp.insights[0].filters.malware_name[0].value #=> String # resp.insights[0].filters.malware_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.malware_type #=> Array # resp.insights[0].filters.malware_type[0].value #=> String # resp.insights[0].filters.malware_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.malware_path #=> Array # resp.insights[0].filters.malware_path[0].value #=> String # resp.insights[0].filters.malware_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.malware_state #=> Array # resp.insights[0].filters.malware_state[0].value #=> String # resp.insights[0].filters.malware_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.network_direction #=> Array # resp.insights[0].filters.network_direction[0].value #=> String # resp.insights[0].filters.network_direction[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.network_protocol #=> Array # resp.insights[0].filters.network_protocol[0].value #=> String # resp.insights[0].filters.network_protocol[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.network_source_ip_v4 #=> Array # resp.insights[0].filters.network_source_ip_v4[0].cidr #=> String # resp.insights[0].filters.network_source_ip_v6 #=> Array # resp.insights[0].filters.network_source_ip_v6[0].cidr #=> String # resp.insights[0].filters.network_source_port #=> Array # resp.insights[0].filters.network_source_port[0].gte #=> Float # resp.insights[0].filters.network_source_port[0].lte #=> Float # resp.insights[0].filters.network_source_port[0].eq #=> Float # resp.insights[0].filters.network_source_domain #=> Array # resp.insights[0].filters.network_source_domain[0].value #=> String # resp.insights[0].filters.network_source_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.network_source_mac #=> Array # resp.insights[0].filters.network_source_mac[0].value #=> String # resp.insights[0].filters.network_source_mac[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.network_destination_ip_v4 #=> Array # resp.insights[0].filters.network_destination_ip_v4[0].cidr #=> String # resp.insights[0].filters.network_destination_ip_v6 #=> Array # resp.insights[0].filters.network_destination_ip_v6[0].cidr #=> String # resp.insights[0].filters.network_destination_port #=> Array # resp.insights[0].filters.network_destination_port[0].gte #=> Float # resp.insights[0].filters.network_destination_port[0].lte #=> Float # resp.insights[0].filters.network_destination_port[0].eq #=> Float # resp.insights[0].filters.network_destination_domain #=> Array # resp.insights[0].filters.network_destination_domain[0].value #=> String # resp.insights[0].filters.network_destination_domain[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.process_name #=> Array # resp.insights[0].filters.process_name[0].value #=> String # resp.insights[0].filters.process_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.process_path #=> Array # resp.insights[0].filters.process_path[0].value #=> String # resp.insights[0].filters.process_path[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.process_pid #=> Array # resp.insights[0].filters.process_pid[0].gte #=> Float # resp.insights[0].filters.process_pid[0].lte #=> Float # resp.insights[0].filters.process_pid[0].eq #=> Float # resp.insights[0].filters.process_parent_pid #=> Array # resp.insights[0].filters.process_parent_pid[0].gte #=> Float # resp.insights[0].filters.process_parent_pid[0].lte #=> Float # resp.insights[0].filters.process_parent_pid[0].eq #=> Float # resp.insights[0].filters.process_launched_at #=> Array # resp.insights[0].filters.process_launched_at[0].start #=> String # resp.insights[0].filters.process_launched_at[0].end #=> String # resp.insights[0].filters.process_launched_at[0].date_range.value #=> Integer # resp.insights[0].filters.process_launched_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.process_terminated_at #=> Array # resp.insights[0].filters.process_terminated_at[0].start #=> String # resp.insights[0].filters.process_terminated_at[0].end #=> String # resp.insights[0].filters.process_terminated_at[0].date_range.value #=> Integer # resp.insights[0].filters.process_terminated_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.threat_intel_indicator_type #=> Array # resp.insights[0].filters.threat_intel_indicator_type[0].value #=> String # resp.insights[0].filters.threat_intel_indicator_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.threat_intel_indicator_value #=> Array # resp.insights[0].filters.threat_intel_indicator_value[0].value #=> String # resp.insights[0].filters.threat_intel_indicator_value[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.threat_intel_indicator_category #=> Array # resp.insights[0].filters.threat_intel_indicator_category[0].value #=> String # resp.insights[0].filters.threat_intel_indicator_category[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.threat_intel_indicator_last_observed_at #=> Array # resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].start #=> String # resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].end #=> String # resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].date_range.value #=> Integer # resp.insights[0].filters.threat_intel_indicator_last_observed_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.threat_intel_indicator_source #=> Array # resp.insights[0].filters.threat_intel_indicator_source[0].value #=> String # resp.insights[0].filters.threat_intel_indicator_source[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.threat_intel_indicator_source_url #=> Array # resp.insights[0].filters.threat_intel_indicator_source_url[0].value #=> String # resp.insights[0].filters.threat_intel_indicator_source_url[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_type #=> Array # resp.insights[0].filters.resource_type[0].value #=> String # resp.insights[0].filters.resource_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_id #=> Array # resp.insights[0].filters.resource_id[0].value #=> String # resp.insights[0].filters.resource_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_partition #=> Array # resp.insights[0].filters.resource_partition[0].value #=> String # resp.insights[0].filters.resource_partition[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_region #=> Array # resp.insights[0].filters.resource_region[0].value #=> String # resp.insights[0].filters.resource_region[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_tags #=> Array # resp.insights[0].filters.resource_tags[0].key #=> String # resp.insights[0].filters.resource_tags[0].value #=> String # resp.insights[0].filters.resource_tags[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS" # resp.insights[0].filters.resource_aws_ec2_instance_type #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_type[0].value #=> String # resp.insights[0].filters.resource_aws_ec2_instance_type[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_ec2_instance_image_id #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].value #=> String # resp.insights[0].filters.resource_aws_ec2_instance_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_ip_v4_addresses[0].cidr #=> String # resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_ip_v6_addresses[0].cidr #=> String # resp.insights[0].filters.resource_aws_ec2_instance_key_name #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].value #=> String # resp.insights[0].filters.resource_aws_ec2_instance_key_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].value #=> String # resp.insights[0].filters.resource_aws_ec2_instance_iam_instance_profile_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_ec2_instance_vpc_id #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].value #=> String # resp.insights[0].filters.resource_aws_ec2_instance_vpc_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_ec2_instance_subnet_id #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].value #=> String # resp.insights[0].filters.resource_aws_ec2_instance_subnet_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_ec2_instance_launched_at #=> Array # resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].start #=> String # resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].end #=> String # resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].date_range.value #=> Integer # resp.insights[0].filters.resource_aws_ec2_instance_launched_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.resource_aws_s3_bucket_owner_id #=> Array # resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].value #=> String # resp.insights[0].filters.resource_aws_s3_bucket_owner_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_s3_bucket_owner_name #=> Array # resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].value #=> String # resp.insights[0].filters.resource_aws_s3_bucket_owner_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_iam_access_key_user_name #=> Array # resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].value #=> String # resp.insights[0].filters.resource_aws_iam_access_key_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_iam_access_key_principal_name #=> Array # resp.insights[0].filters.resource_aws_iam_access_key_principal_name[0].value #=> String # resp.insights[0].filters.resource_aws_iam_access_key_principal_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_iam_access_key_status #=> Array # resp.insights[0].filters.resource_aws_iam_access_key_status[0].value #=> String # resp.insights[0].filters.resource_aws_iam_access_key_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_aws_iam_access_key_created_at #=> Array # resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].start #=> String # resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].end #=> String # resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].date_range.value #=> Integer # resp.insights[0].filters.resource_aws_iam_access_key_created_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.resource_aws_iam_user_user_name #=> Array # resp.insights[0].filters.resource_aws_iam_user_user_name[0].value #=> String # resp.insights[0].filters.resource_aws_iam_user_user_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_container_name #=> Array # resp.insights[0].filters.resource_container_name[0].value #=> String # resp.insights[0].filters.resource_container_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_container_image_id #=> Array # resp.insights[0].filters.resource_container_image_id[0].value #=> String # resp.insights[0].filters.resource_container_image_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_container_image_name #=> Array # resp.insights[0].filters.resource_container_image_name[0].value #=> String # resp.insights[0].filters.resource_container_image_name[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.resource_container_launched_at #=> Array # resp.insights[0].filters.resource_container_launched_at[0].start #=> String # resp.insights[0].filters.resource_container_launched_at[0].end #=> String # resp.insights[0].filters.resource_container_launched_at[0].date_range.value #=> Integer # resp.insights[0].filters.resource_container_launched_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.resource_details_other #=> Array # resp.insights[0].filters.resource_details_other[0].key #=> String # resp.insights[0].filters.resource_details_other[0].value #=> String # resp.insights[0].filters.resource_details_other[0].comparison #=> String, one of "EQUALS", "NOT_EQUALS" # resp.insights[0].filters.compliance_status #=> Array # resp.insights[0].filters.compliance_status[0].value #=> String # resp.insights[0].filters.compliance_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.verification_state #=> Array # resp.insights[0].filters.verification_state[0].value #=> String # resp.insights[0].filters.verification_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.workflow_state #=> Array # resp.insights[0].filters.workflow_state[0].value #=> String # resp.insights[0].filters.workflow_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.workflow_status #=> Array # resp.insights[0].filters.workflow_status[0].value #=> String # resp.insights[0].filters.workflow_status[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.record_state #=> Array # resp.insights[0].filters.record_state[0].value #=> String # resp.insights[0].filters.record_state[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.related_findings_product_arn #=> Array # resp.insights[0].filters.related_findings_product_arn[0].value #=> String # resp.insights[0].filters.related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.related_findings_id #=> Array # resp.insights[0].filters.related_findings_id[0].value #=> String # resp.insights[0].filters.related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.note_text #=> Array # resp.insights[0].filters.note_text[0].value #=> String # resp.insights[0].filters.note_text[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.note_updated_at #=> Array # resp.insights[0].filters.note_updated_at[0].start #=> String # resp.insights[0].filters.note_updated_at[0].end #=> String # resp.insights[0].filters.note_updated_at[0].date_range.value #=> Integer # resp.insights[0].filters.note_updated_at[0].date_range.unit #=> String, one of "DAYS" # resp.insights[0].filters.note_updated_by #=> Array # resp.insights[0].filters.note_updated_by[0].value #=> String # resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.keyword #=> Array # resp.insights[0].filters.keyword[0].value #=> String # resp.insights[0].filters.finding_provider_fields_confidence #=> Array # resp.insights[0].filters.finding_provider_fields_confidence[0].gte #=> Float # resp.insights[0].filters.finding_provider_fields_confidence[0].lte #=> Float # resp.insights[0].filters.finding_provider_fields_confidence[0].eq #=> Float # resp.insights[0].filters.finding_provider_fields_criticality #=> Array # resp.insights[0].filters.finding_provider_fields_criticality[0].gte #=> Float # resp.insights[0].filters.finding_provider_fields_criticality[0].lte #=> Float # resp.insights[0].filters.finding_provider_fields_criticality[0].eq #=> Float # resp.insights[0].filters.finding_provider_fields_related_findings_id #=> Array # resp.insights[0].filters.finding_provider_fields_related_findings_id[0].value #=> String # resp.insights[0].filters.finding_provider_fields_related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.finding_provider_fields_related_findings_product_arn #=> Array # resp.insights[0].filters.finding_provider_fields_related_findings_product_arn[0].value #=> String # resp.insights[0].filters.finding_provider_fields_related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.finding_provider_fields_severity_label #=> Array # resp.insights[0].filters.finding_provider_fields_severity_label[0].value #=> String # resp.insights[0].filters.finding_provider_fields_severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.finding_provider_fields_severity_original #=> Array # resp.insights[0].filters.finding_provider_fields_severity_original[0].value #=> String # resp.insights[0].filters.finding_provider_fields_severity_original[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.finding_provider_fields_types #=> Array # resp.insights[0].filters.finding_provider_fields_types[0].value #=> String # resp.insights[0].filters.finding_provider_fields_types[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS" # resp.insights[0].filters.sample #=> Array # resp.insights[0].filters.sample[0].value #=> Boolean # resp.insights[0].group_by_attribute #=> String # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetInsights AWS API Documentation # # @overload get_insights(params = {}) # @param [Hash] params ({}) def get_insights(params = {}, options = {}) req = build_request(:get_insights, params) req.send_request(options) end # Returns the count of all Security Hub membership invitations that were # sent to the current member account, not including the currently # accepted invitation. # # @return [Types::GetInvitationsCountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetInvitationsCountResponse#invitations_count #invitations_count} => Integer # # @example Response structure # # resp.invitations_count #=> Integer # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetInvitationsCount AWS API Documentation # # @overload get_invitations_count(params = {}) # @param [Hash] params ({}) def get_invitations_count(params = {}, options = {}) req = build_request(:get_invitations_count, params) req.send_request(options) end # This method is deprecated. Instead, use `GetAdministratorAccount`. # # The Security Hub console continues to use `GetMasterAccount`. It will # eventually change to use `GetAdministratorAccount`. Any IAM policies # that specifically control access to this function must continue to use # `GetMasterAccount`. You should also add `GetAdministratorAccount` to # your policies to ensure that the correct permissions are in place # after the console begins to use `GetAdministratorAccount`. # # Provides the details for the Security Hub administrator account for # the current member account. # # Can be used by both member accounts that are managed using # Organizations and accounts that were invited manually. # # @return [Types::GetMasterAccountResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetMasterAccountResponse#master #master} => Types::Invitation # # @example Response structure # # resp.master.account_id #=> String # resp.master.invitation_id #=> String # resp.master.invited_at #=> Time # resp.master.member_status #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetMasterAccount AWS API Documentation # # @overload get_master_account(params = {}) # @param [Hash] params ({}) def get_master_account(params = {}, options = {}) req = build_request(:get_master_account, params) req.send_request(options) end # Returns the details for the Security Hub member accounts for the # specified account IDs. # # An administrator account can be either the delegated Security Hub # administrator account for an organization or an administrator account # that enabled Security Hub manually. # # The results include both member accounts that are managed using # Organizations and accounts that were invited manually. # # @option params [required, Array] :account_ids # The list of account IDs for the Security Hub member accounts to return # the details for. # # @return [Types::GetMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::GetMembersResponse#members #members} => Array<Types::Member> # * {Types::GetMembersResponse#unprocessed_accounts #unprocessed_accounts} => Array<Types::Result> # # @example Request syntax with placeholder values # # resp = client.get_members({ # account_ids: ["NonEmptyString"], # required # }) # # @example Response structure # # resp.members #=> Array # resp.members[0].account_id #=> String # resp.members[0].email #=> String # resp.members[0].master_id #=> String # resp.members[0].administrator_id #=> String # resp.members[0].member_status #=> String # resp.members[0].invited_at #=> Time # resp.members[0].updated_at #=> Time # resp.unprocessed_accounts #=> Array # resp.unprocessed_accounts[0].account_id #=> String # resp.unprocessed_accounts[0].processing_result #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetMembers AWS API Documentation # # @overload get_members(params = {}) # @param [Hash] params ({}) def get_members(params = {}, options = {}) req = build_request(:get_members, params) req.send_request(options) end # Invites other Amazon Web Services accounts to become member accounts # for the Security Hub administrator account that the invitation is sent # from. # # This operation is only used to invite accounts that do not belong to # an organization. Organization accounts do not receive invitations. # # Before you can use this action to invite a member, you must first use # the `CreateMembers` action to create the member account in Security # Hub. # # When the account owner enables Security Hub and accepts the invitation # to become a member account, the administrator account can view the # findings generated from the member account. # # @option params [required, Array] :account_ids # The list of account IDs of the Amazon Web Services accounts to invite # to Security Hub as members. # # @return [Types::InviteMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::InviteMembersResponse#unprocessed_accounts #unprocessed_accounts} => Array<Types::Result> # # @example Request syntax with placeholder values # # resp = client.invite_members({ # account_ids: ["NonEmptyString"], # required # }) # # @example Response structure # # resp.unprocessed_accounts #=> Array # resp.unprocessed_accounts[0].account_id #=> String # resp.unprocessed_accounts[0].processing_result #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/InviteMembers AWS API Documentation # # @overload invite_members(params = {}) # @param [Hash] params ({}) def invite_members(params = {}, options = {}) req = build_request(:invite_members, params) req.send_request(options) end # Lists all findings-generating solutions (products) that you are # subscribed to receive findings from in Security Hub. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `ListEnabledProductsForImport` operation, set the value of this # parameter to `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @option params [Integer] :max_results # The maximum number of items to return in the response. # # @return [Types::ListEnabledProductsForImportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::ListEnabledProductsForImportResponse#product_subscriptions #product_subscriptions} => Array<String> # * {Types::ListEnabledProductsForImportResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.list_enabled_products_for_import({ # next_token: "NextToken", # max_results: 1, # }) # # @example Response structure # # resp.product_subscriptions #=> Array # resp.product_subscriptions[0] #=> String # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListEnabledProductsForImport AWS API Documentation # # @overload list_enabled_products_for_import(params = {}) # @param [Hash] params ({}) def list_enabled_products_for_import(params = {}, options = {}) req = build_request(:list_enabled_products_for_import, params) req.send_request(options) end # If finding aggregation is enabled, then `ListFindingAggregators` # returns the ARN of the finding aggregator. You can run this operation # from any Region. # # @option params [String] :next_token # The token returned with the previous set of results. Identifies the # next set of results to return. # # @option params [Integer] :max_results # The maximum number of results to return. This operation currently only # returns a single result. # # @return [Types::ListFindingAggregatorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::ListFindingAggregatorsResponse#finding_aggregators #finding_aggregators} => Array<Types::FindingAggregator> # * {Types::ListFindingAggregatorsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.list_finding_aggregators({ # next_token: "NextToken", # max_results: 1, # }) # # @example Response structure # # resp.finding_aggregators #=> Array # resp.finding_aggregators[0].finding_aggregator_arn #=> String # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListFindingAggregators AWS API Documentation # # @overload list_finding_aggregators(params = {}) # @param [Hash] params ({}) def list_finding_aggregators(params = {}, options = {}) req = build_request(:list_finding_aggregators, params) req.send_request(options) end # Lists all Security Hub membership invitations that were sent to the # current Amazon Web Services account. # # This operation is only used by accounts that are managed by # invitation. Accounts that are managed using the integration with # Organizations do not receive invitations. # # @option params [Integer] :max_results # The maximum number of items to return in the response. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `ListInvitations` operation, set the value of this parameter to # `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @return [Types::ListInvitationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::ListInvitationsResponse#invitations #invitations} => Array<Types::Invitation> # * {Types::ListInvitationsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.list_invitations({ # max_results: 1, # next_token: "NextToken", # }) # # @example Response structure # # resp.invitations #=> Array # resp.invitations[0].account_id #=> String # resp.invitations[0].invitation_id #=> String # resp.invitations[0].invited_at #=> Time # resp.invitations[0].member_status #=> String # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListInvitations AWS API Documentation # # @overload list_invitations(params = {}) # @param [Hash] params ({}) def list_invitations(params = {}, options = {}) req = build_request(:list_invitations, params) req.send_request(options) end # Lists details about all member accounts for the current Security Hub # administrator account. # # The results include both member accounts that belong to an # organization and member accounts that were invited manually. # # @option params [Boolean] :only_associated # Specifies which member accounts to include in the response based on # their relationship status with the administrator account. The default # value is `TRUE`. # # If `OnlyAssociated` is set to `TRUE`, the response includes member # accounts whose relationship status with the administrator account is # set to `ENABLED`. # # If `OnlyAssociated` is set to `FALSE`, the response includes all # existing member accounts. # # @option params [Integer] :max_results # The maximum number of items to return in the response. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `ListMembers` operation, set the value of this parameter to `NULL`. # # For subsequent calls to the operation, to continue listing data, set # the value of this parameter to the value returned from the previous # response. # # @return [Types::ListMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::ListMembersResponse#members #members} => Array<Types::Member> # * {Types::ListMembersResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.list_members({ # only_associated: false, # max_results: 1, # next_token: "NextToken", # }) # # @example Response structure # # resp.members #=> Array # resp.members[0].account_id #=> String # resp.members[0].email #=> String # resp.members[0].master_id #=> String # resp.members[0].administrator_id #=> String # resp.members[0].member_status #=> String # resp.members[0].invited_at #=> Time # resp.members[0].updated_at #=> Time # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListMembers AWS API Documentation # # @overload list_members(params = {}) # @param [Hash] params ({}) def list_members(params = {}, options = {}) req = build_request(:list_members, params) req.send_request(options) end # Lists the Security Hub administrator accounts. Can only be called by # the organization management account. # # @option params [Integer] :max_results # The maximum number of items to return in the response. # # @option params [String] :next_token # The token that is required for pagination. On your first call to the # `ListOrganizationAdminAccounts` operation, set the value of this # parameter to `NULL`. For subsequent calls to the operation, to # continue listing data, set the value of this parameter to the value # returned from the previous response. # # @return [Types::ListOrganizationAdminAccountsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::ListOrganizationAdminAccountsResponse#admin_accounts #admin_accounts} => Array<Types::AdminAccount> # * {Types::ListOrganizationAdminAccountsResponse#next_token #next_token} => String # # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}. # # @example Request syntax with placeholder values # # resp = client.list_organization_admin_accounts({ # max_results: 1, # next_token: "NextToken", # }) # # @example Response structure # # resp.admin_accounts #=> Array # resp.admin_accounts[0].account_id #=> String # resp.admin_accounts[0].status #=> String, one of "ENABLED", "DISABLE_IN_PROGRESS" # resp.next_token #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListOrganizationAdminAccounts AWS API Documentation # # @overload list_organization_admin_accounts(params = {}) # @param [Hash] params ({}) def list_organization_admin_accounts(params = {}, options = {}) req = build_request(:list_organization_admin_accounts, params) req.send_request(options) end # Returns a list of tags associated with a resource. # # @option params [required, String] :resource_arn # The ARN of the resource to retrieve tags for. # # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::ListTagsForResourceResponse#tags #tags} => Hash<String,String> # # @example Request syntax with placeholder values # # resp = client.list_tags_for_resource({ # resource_arn: "ResourceArn", # required # }) # # @example Response structure # # resp.tags #=> Hash # resp.tags["TagKey"] #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListTagsForResource AWS API Documentation # # @overload list_tags_for_resource(params = {}) # @param [Hash] params ({}) def list_tags_for_resource(params = {}, options = {}) req = build_request(:list_tags_for_resource, params) req.send_request(options) end # Adds one or more tags to a resource. # # @option params [required, String] :resource_arn # The ARN of the resource to apply the tags to. # # @option params [required, Hash] :tags # The tags to add to the resource. You can add up to 50 tags at a time. # The tag keys can be no longer than 128 characters. The tag values can # be no longer than 256 characters. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.tag_resource({ # resource_arn: "ResourceArn", # required # tags: { # required # "TagKey" => "TagValue", # }, # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/TagResource AWS API Documentation # # @overload tag_resource(params = {}) # @param [Hash] params ({}) def tag_resource(params = {}, options = {}) req = build_request(:tag_resource, params) req.send_request(options) end # Removes one or more tags from a resource. # # @option params [required, String] :resource_arn # The ARN of the resource to remove the tags from. # # @option params [required, Array] :tag_keys # The tag keys associated with the tags to remove from the resource. You # can remove up to 50 tags at a time. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.untag_resource({ # resource_arn: "ResourceArn", # required # tag_keys: ["TagKey"], # required # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UntagResource AWS API Documentation # # @overload untag_resource(params = {}) # @param [Hash] params ({}) def untag_resource(params = {}, options = {}) req = build_request(:untag_resource, params) req.send_request(options) end # Updates the name and description of a custom action target in Security # Hub. # # @option params [required, String] :action_target_arn # The ARN of the custom action target to update. # # @option params [String] :name # The updated name of the custom action target. # # @option params [String] :description # The updated description for the custom action target. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.update_action_target({ # action_target_arn: "NonEmptyString", # required # name: "NonEmptyString", # description: "NonEmptyString", # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateActionTarget AWS API Documentation # # @overload update_action_target(params = {}) # @param [Hash] params ({}) def update_action_target(params = {}, options = {}) req = build_request(:update_action_target, params) req.send_request(options) end # Updates the finding aggregation configuration. Used to update the # Region linking mode and the list of included or excluded Regions. You # cannot use `UpdateFindingAggregator` to change the aggregation Region. # # You must run `UpdateFindingAggregator` from the current aggregation # Region. # # @option params [required, String] :finding_aggregator_arn # The ARN of the finding aggregator. To obtain the ARN, use # `ListFindingAggregators`. # # @option params [required, String] :region_linking_mode # Indicates whether to aggregate findings from all of the available # Regions in the current partition. Also determines whether to # automatically aggregate findings from new Regions as Security Hub # supports them and you opt into them. # # The selected option also determines how to use the Regions provided in # the Regions list. # # The options are as follows: # # * `ALL_REGIONS` - Indicates to aggregate findings from all of the # Regions where Security Hub is enabled. When you choose this option, # Security Hub also automatically aggregates findings from new Regions # as Security Hub supports them and you opt into them. # # * `ALL_REGIONS_EXCEPT_SPECIFIED` - Indicates to aggregate findings # from all of the Regions where Security Hub is enabled, except for # the Regions listed in the `Regions` parameter. When you choose this # option, Security Hub also automatically aggregates findings from new # Regions as Security Hub supports them and you opt into them. # # * `SPECIFIED_REGIONS` - Indicates to aggregate findings only from the # Regions listed in the `Regions` parameter. Security Hub does not # automatically aggregate findings from new Regions. # # @option params [Array] :regions # If `RegionLinkingMode` is `ALL_REGIONS_EXCEPT_SPECIFIED`, then this is # a comma-separated list of Regions that do not aggregate findings to # the aggregation Region. # # If `RegionLinkingMode` is `SPECIFIED_REGIONS`, then this is a # comma-separated list of Regions that do aggregate findings to the # aggregation Region. # # @return [Types::UpdateFindingAggregatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::UpdateFindingAggregatorResponse#finding_aggregator_arn #finding_aggregator_arn} => String # * {Types::UpdateFindingAggregatorResponse#finding_aggregation_region #finding_aggregation_region} => String # * {Types::UpdateFindingAggregatorResponse#region_linking_mode #region_linking_mode} => String # * {Types::UpdateFindingAggregatorResponse#regions #regions} => Array<String> # # @example Request syntax with placeholder values # # resp = client.update_finding_aggregator({ # finding_aggregator_arn: "NonEmptyString", # required # region_linking_mode: "NonEmptyString", # required # regions: ["NonEmptyString"], # }) # # @example Response structure # # resp.finding_aggregator_arn #=> String # resp.finding_aggregation_region #=> String # resp.region_linking_mode #=> String # resp.regions #=> Array # resp.regions[0] #=> String # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateFindingAggregator AWS API Documentation # # @overload update_finding_aggregator(params = {}) # @param [Hash] params ({}) def update_finding_aggregator(params = {}, options = {}) req = build_request(:update_finding_aggregator, params) req.send_request(options) end # `UpdateFindings` is deprecated. Instead of `UpdateFindings`, use # `BatchUpdateFindings`. # # Updates the `Note` and `RecordState` of the Security Hub-aggregated # findings that the filter attributes specify. Any member account that # can view the finding also sees the update to the finding. # # @option params [required, Types::AwsSecurityFindingFilters] :filters # A collection of attributes that specify which findings you want to # update. # # @option params [Types::NoteUpdate] :note # The updated note for the finding. # # @option params [String] :record_state # The updated record state for the finding. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.update_findings({ # filters: { # required # product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # aws_account_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # generator_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # region: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # first_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # last_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # created_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # updated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # severity_product: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # severity_normalized: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # severity_label: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # confidence: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # criticality: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # title: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # description: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # recommendation_text: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # source_url: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # product_fields: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # product_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # company_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # user_defined_fields: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # malware_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_path: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_direction: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_protocol: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_source_ip_v4: [ # { # cidr: "NonEmptyString", # }, # ], # network_source_ip_v6: [ # { # cidr: "NonEmptyString", # }, # ], # network_source_port: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # network_source_domain: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_source_mac: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_destination_ip_v4: [ # { # cidr: "NonEmptyString", # }, # ], # network_destination_ip_v6: [ # { # cidr: "NonEmptyString", # }, # ], # network_destination_port: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # network_destination_domain: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_path: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_pid: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # process_parent_pid: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # process_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # process_terminated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # threat_intel_indicator_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_value: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_category: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_last_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # threat_intel_indicator_source: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_source_url: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_partition: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_region: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_tags: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # resource_aws_ec2_instance_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_image_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_ip_v4_addresses: [ # { # cidr: "NonEmptyString", # }, # ], # resource_aws_ec2_instance_ip_v6_addresses: [ # { # cidr: "NonEmptyString", # }, # ], # resource_aws_ec2_instance_key_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_iam_instance_profile_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_vpc_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_subnet_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_aws_s3_bucket_owner_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_s3_bucket_owner_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_user_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_principal_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_created_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_aws_iam_user_user_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_image_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_image_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_details_other: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # compliance_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # verification_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # workflow_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # workflow_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # record_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # related_findings_product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # related_findings_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # note_text: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # note_updated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # note_updated_by: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # keyword: [ # { # value: "NonEmptyString", # }, # ], # finding_provider_fields_confidence: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # finding_provider_fields_criticality: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # finding_provider_fields_related_findings_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_related_findings_product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_severity_label: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_severity_original: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_types: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # sample: [ # { # value: false, # }, # ], # }, # note: { # text: "NonEmptyString", # required # updated_by: "NonEmptyString", # required # }, # record_state: "ACTIVE", # accepts ACTIVE, ARCHIVED # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateFindings AWS API Documentation # # @overload update_findings(params = {}) # @param [Hash] params ({}) def update_findings(params = {}, options = {}) req = build_request(:update_findings, params) req.send_request(options) end # Updates the Security Hub insight identified by the specified insight # ARN. # # @option params [required, String] :insight_arn # The ARN of the insight that you want to update. # # @option params [String] :name # The updated name for the insight. # # @option params [Types::AwsSecurityFindingFilters] :filters # The updated filters that define this insight. # # @option params [String] :group_by_attribute # The updated `GroupBy` attribute that defines this insight. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.update_insight({ # insight_arn: "NonEmptyString", # required # name: "NonEmptyString", # filters: { # product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # aws_account_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # generator_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # region: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # first_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # last_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # created_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # updated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # severity_product: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # severity_normalized: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # severity_label: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # confidence: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # criticality: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # title: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # description: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # recommendation_text: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # source_url: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # product_fields: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # product_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # company_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # user_defined_fields: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # malware_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_path: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # malware_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_direction: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_protocol: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_source_ip_v4: [ # { # cidr: "NonEmptyString", # }, # ], # network_source_ip_v6: [ # { # cidr: "NonEmptyString", # }, # ], # network_source_port: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # network_source_domain: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_source_mac: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # network_destination_ip_v4: [ # { # cidr: "NonEmptyString", # }, # ], # network_destination_ip_v6: [ # { # cidr: "NonEmptyString", # }, # ], # network_destination_port: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # network_destination_domain: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_path: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # process_pid: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # process_parent_pid: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # process_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # process_terminated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # threat_intel_indicator_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_value: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_category: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_last_observed_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # threat_intel_indicator_source: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # threat_intel_indicator_source_url: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_partition: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_region: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_tags: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # resource_aws_ec2_instance_type: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_image_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_ip_v4_addresses: [ # { # cidr: "NonEmptyString", # }, # ], # resource_aws_ec2_instance_ip_v6_addresses: [ # { # cidr: "NonEmptyString", # }, # ], # resource_aws_ec2_instance_key_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_iam_instance_profile_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_vpc_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_subnet_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_ec2_instance_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_aws_s3_bucket_owner_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_s3_bucket_owner_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_user_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_principal_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_aws_iam_access_key_created_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_aws_iam_user_user_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_image_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_image_name: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # resource_container_launched_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # resource_details_other: [ # { # key: "NonEmptyString", # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, NOT_EQUALS # }, # ], # compliance_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # verification_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # workflow_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # workflow_status: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # record_state: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # related_findings_product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # related_findings_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # note_text: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # note_updated_at: [ # { # start: "NonEmptyString", # end: "NonEmptyString", # date_range: { # value: 1, # unit: "DAYS", # accepts DAYS # }, # }, # ], # note_updated_by: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # keyword: [ # { # value: "NonEmptyString", # }, # ], # finding_provider_fields_confidence: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # finding_provider_fields_criticality: [ # { # gte: 1.0, # lte: 1.0, # eq: 1.0, # }, # ], # finding_provider_fields_related_findings_id: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_related_findings_product_arn: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_severity_label: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_severity_original: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # finding_provider_fields_types: [ # { # value: "NonEmptyString", # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS # }, # ], # sample: [ # { # value: false, # }, # ], # }, # group_by_attribute: "NonEmptyString", # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateInsight AWS API Documentation # # @overload update_insight(params = {}) # @param [Hash] params ({}) def update_insight(params = {}, options = {}) req = build_request(:update_insight, params) req.send_request(options) end # Used to update the configuration related to Organizations. Can only be # called from a Security Hub administrator account. # # @option params [required, Boolean] :auto_enable # Whether to automatically enable Security Hub for new accounts in the # organization. # # By default, this is `false`, and new accounts are not added # automatically. # # To automatically enable Security Hub for new accounts, set this to # `true`. # # @option params [String] :auto_enable_standards # Whether to automatically enable Security Hub [default standards][1] # for new member accounts in the organization. # # By default, this parameter is equal to `DEFAULT`, and new member # accounts are automatically enabled with default Security Hub # standards. # # To opt out of enabling default standards for new member accounts, set # this parameter equal to `NONE`. # # # # [1]: https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards-enable-disable.html # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.update_organization_configuration({ # auto_enable: false, # required # auto_enable_standards: "NONE", # accepts NONE, DEFAULT # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateOrganizationConfiguration AWS API Documentation # # @overload update_organization_configuration(params = {}) # @param [Hash] params ({}) def update_organization_configuration(params = {}, options = {}) req = build_request(:update_organization_configuration, params) req.send_request(options) end # Updates configuration options for Security Hub. # # @option params [Boolean] :auto_enable_controls # Whether to automatically enable new controls when they are added to # standards that are enabled. # # By default, this is set to `true`, and new controls are enabled # automatically. To not automatically enable new controls, set this to # `false`. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.update_security_hub_configuration({ # auto_enable_controls: false, # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateSecurityHubConfiguration AWS API Documentation # # @overload update_security_hub_configuration(params = {}) # @param [Hash] params ({}) def update_security_hub_configuration(params = {}, options = {}) req = build_request(:update_security_hub_configuration, params) req.send_request(options) end # Used to control whether an individual security standard control is # enabled or disabled. # # @option params [required, String] :standards_control_arn # The ARN of the security standard control to enable or disable. # # @option params [String] :control_status # The updated status of the security standard control. # # @option params [String] :disabled_reason # A description of the reason why you are disabling a security standard # control. If you are disabling a control, then this is required. # # @return [Struct] Returns an empty {Seahorse::Client::Response response}. # # @example Request syntax with placeholder values # # resp = client.update_standards_control({ # standards_control_arn: "NonEmptyString", # required # control_status: "ENABLED", # accepts ENABLED, DISABLED # disabled_reason: "NonEmptyString", # }) # # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateStandardsControl AWS API Documentation # # @overload update_standards_control(params = {}) # @param [Hash] params ({}) def update_standards_control(params = {}, options = {}) req = build_request(:update_standards_control, params) req.send_request(options) end # @!endgroup # @param params ({}) # @api private def build_request(operation_name, params = {}) handlers = @handlers.for(operation_name) context = Seahorse::Client::RequestContext.new( operation_name: operation_name, operation: config.api.operation(operation_name), client: self, params: params, config: config) context[:gem_name] = 'aws-sdk-securityhub' context[:gem_version] = '1.67.0' Seahorse::Client::Request.new(handlers, context) end # @api private # @deprecated def waiter_names [] end class << self # @api private attr_reader :identifier # @api private def errors_module Errors end end end end