Class: Aws::Detective::Client

Inherits:
Seahorse::Client::Base show all
Includes:
ClientStubs
Defined in:
gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb

Overview

An API client for Detective. To construct a client, you need to configure a :region and :credentials.

client = Aws::Detective::Client.new(
  region: region_name,
  credentials: credentials,
  # ...
)

For details on configuring region and credentials see the developer guide.

See #initialize for a full list of supported configuration options.

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Base

#config, #handlers

API Operations collapse

Instance Method Summary collapse

Methods included from ClientStubs

#api_requests, #stub_data, #stub_responses

Methods inherited from Seahorse::Client::Base

add_plugin, api, clear_plugins, define, new, #operation_names, plugins, remove_plugin, set_api, set_plugins

Methods included from Seahorse::Client::HandlerBuilder

#handle, #handle_request, #handle_response

Constructor Details

#initialize(options) ⇒ Client

Returns a new instance of Client.

Parameters:

  • options (Hash)

Options Hash (options):

  • :credentials (required, Aws::CredentialProvider)

    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.
  • :region (required, String)

    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
  • :access_key_id (String)
  • :active_endpoint_cache (Boolean) — default: false

    When set to true, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to false.

  • :adaptive_retry_wait_to_fill (Boolean) — default: 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.

  • :client_side_monitoring (Boolean) — default: false

    When true, client-side metrics will be collected for all API requests from this client.

  • :client_side_monitoring_client_id (String) — default: ""

    Allows you to provide an identifier for this client which will be attached to all generated client side metrics. Defaults to an empty string.

  • :client_side_monitoring_host (String) — default: "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.

  • :client_side_monitoring_port (Integer) — default: 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.

  • :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) — default: Aws::ClientSideMonitoring::Publisher

    Allows you to provide a custom client-side monitoring publisher class. By default, will use the Client Side Monitoring Agent Publisher.

  • :convert_params (Boolean) — default: true

    When true, an attempt is made to coerce request parameters into the required types.

  • :correct_clock_skew (Boolean) — default: true

    Used only in standard and adaptive retry modes. Specifies whether to apply a clock skew correction and retry requests with skewed client clocks.

  • :defaults_mode (String) — default: "legacy"

    See Aws::DefaultsModeConfiguration for a list of the accepted modes and the configuration defaults that are included.

  • :disable_host_prefix_injection (Boolean) — default: false

    Set to true to disable SDK automatically adding host prefix to default service endpoint when available.

  • :disable_request_compression (Boolean) — default: false

    When set to 'true' the request body will not be compressed for supported operations.

  • :endpoint (String)

    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.

  • :endpoint_cache_max_entries (Integer) — default: 1000

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000.

  • :endpoint_cache_max_threads (Integer) — default: 10

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.

  • :endpoint_cache_poll_interval (Integer) — default: 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.

  • :endpoint_discovery (Boolean) — default: false

    When set to true, endpoint discovery will be enabled for operations when available.

  • :ignore_configured_endpoint_urls (Boolean)

    Setting to true disables use of endpoint URLs provided via environment variables and the shared configuration file.

  • :log_formatter (Aws::Log::Formatter) — default: Aws::Log::Formatter.default

    The log formatter.

  • :log_level (Symbol) — default: :info

    The log level to send messages to the :logger at.

  • :logger (Logger)

    The Logger instance to send log messages to. If this option is not set, logging will be disabled.

  • :max_attempts (Integer) — default: 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.

  • :profile (String) — default: "default"

    Used when loading credentials from the shared credentials file at HOME/.aws/credentials. When not specified, 'default' is used.

  • :request_min_compression_size_bytes (Integer) — default: 10240

    The minimum size in bytes that triggers compression for request bodies. The value must be non-negative integer value between 0 and 10485780 bytes inclusive.

  • :retry_backoff (Proc)

    A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay. This option is only used in the legacy retry mode.

  • :retry_base_delay (Float) — default: 0.3

    The base delay in seconds used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_jitter (Symbol) — default: :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

  • :retry_limit (Integer) — default: 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.

  • :retry_max_delay (Integer) — default: 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.

  • :retry_mode (String) — default: "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.

  • :sdk_ua_app_id (String)

    A unique and opaque application ID that is appended to the User-Agent header as app/. It should have a maximum length of 50.

  • :secret_access_key (String)
  • :session_token (String)
  • :stub_responses (Boolean) — default: 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.

  • :token_provider (Aws::TokenProvider)

    A Bearer Token Provider. This can be an instance of any one of the following classes:

    • Aws::StaticTokenProvider - Used for configuring static, non-refreshing tokens.

    • Aws::SSOTokenProvider - Used for loading tokens from AWS SSO using an access token generated from aws login.

    When :token_provider is not configured directly, the Aws::TokenProviderChain will be used to search for tokens configured for your profile in shared configuration files.

  • :use_dualstack_endpoint (Boolean)

    When set to true, dualstack enabled endpoints (with .aws TLD) will be used if available.

  • :use_fips_endpoint (Boolean)

    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.

  • :validate_params (Boolean) — default: true

    When true, request parameters are validated before sending the request.

  • :endpoint_provider (Aws::Detective::EndpointProvider)

    The endpoint provider used to resolve endpoints. Any object that responds to #resolve_endpoint(parameters) where parameters is a Struct similar to Aws::Detective::EndpointParameters

  • :http_proxy (URI::HTTP, String)

    A proxy to send requests through. Formatted like 'http://proxy.com:123'.

  • :http_open_timeout (Float) — default: 15

    The number of seconds to wait when opening a HTTP session before raising a Timeout::Error.

  • :http_read_timeout (Float) — default: 60

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_idle_timeout (Float) — default: 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.

  • :http_continue_timeout (Float) — default: 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.

  • :ssl_timeout (Float) — default: nil

    Sets the SSL timeout in seconds.

  • :http_wire_trace (Boolean) — default: false

    When true, HTTP debug output will be sent to the :logger.

  • :ssl_verify_peer (Boolean) — default: true

    When true, SSL peer certificates are verified when establishing a connection.

  • :ssl_ca_bundle (String)

    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.

  • :ssl_ca_directory (String)

    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.



385
386
387
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 385

def initialize(*args)
  super
end

Instance Method Details

#accept_invitation(params = {}) ⇒ Struct

Accepts an invitation for the member account to contribute data to a behavior graph. This operation can only be called by an invited member account.

The request provides the ARN of behavior graph.

The member account status in the graph must be INVITED.

Examples:

Request syntax with placeholder values


resp = client.accept_invitation({
  graph_arn: "GraphArn", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph that the member account is accepting the invitation for.

    The member account status in the behavior graph must be INVITED.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



417
418
419
420
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 417

def accept_invitation(params = {}, options = {})
  req = build_request(:accept_invitation, params)
  req.send_request(options)
end

#batch_get_graph_member_datasources(params = {}) ⇒ Types::BatchGetGraphMemberDatasourcesResponse

Gets data source package information for the behavior graph.

Examples:

Request syntax with placeholder values


resp = client.batch_get_graph_member_datasources({
  graph_arn: "GraphArn", # required
  account_ids: ["AccountId"], # required
})

Response structure


resp.member_datasources #=> Array
resp.member_datasources[0]. #=> String
resp.member_datasources[0].graph_arn #=> String
resp.member_datasources[0].datasource_package_ingest_history #=> Hash
resp.member_datasources[0].datasource_package_ingest_history["DatasourcePackage"] #=> Hash
resp.member_datasources[0].datasource_package_ingest_history["DatasourcePackage"]["DatasourcePackageIngestState"].timestamp #=> Time
resp.unprocessed_accounts #=> Array
resp.unprocessed_accounts[0]. #=> String
resp.unprocessed_accounts[0].reason #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph.

  • :account_ids (required, Array<String>)

    The list of Amazon Web Services accounts to get data source package information on.

Returns:

See Also:



459
460
461
462
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 459

def batch_get_graph_member_datasources(params = {}, options = {})
  req = build_request(:batch_get_graph_member_datasources, params)
  req.send_request(options)
end

#batch_get_membership_datasources(params = {}) ⇒ Types::BatchGetMembershipDatasourcesResponse

Gets information on the data source package history for an account.

Examples:

Request syntax with placeholder values


resp = client.batch_get_membership_datasources({
  graph_arns: ["GraphArn"], # required
})

Response structure


resp.membership_datasources #=> Array
resp.membership_datasources[0]. #=> String
resp.membership_datasources[0].graph_arn #=> String
resp.membership_datasources[0].datasource_package_ingest_history #=> Hash
resp.membership_datasources[0].datasource_package_ingest_history["DatasourcePackage"] #=> Hash
resp.membership_datasources[0].datasource_package_ingest_history["DatasourcePackage"]["DatasourcePackageIngestState"].timestamp #=> Time
resp.unprocessed_graphs #=> Array
resp.unprocessed_graphs[0].graph_arn #=> String
resp.unprocessed_graphs[0].reason #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arns (required, Array<String>)

    The ARN of the behavior graph.

Returns:

See Also:



496
497
498
499
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 496

def batch_get_membership_datasources(params = {}, options = {})
  req = build_request(:batch_get_membership_datasources, params)
  req.send_request(options)
end

#create_graph(params = {}) ⇒ Types::CreateGraphResponse

Creates a new behavior graph for the calling account, and sets that account as the administrator account. This operation is called by the account that is enabling Detective.

The operation also enables Detective for the calling account in the currently selected Region. It returns the ARN of the new behavior graph.

CreateGraph triggers a process to create the corresponding data tables for the new behavior graph.

An account can only be the administrator account for one behavior graph within a Region. If the same account calls CreateGraph with the same administrator account, it always returns the same behavior graph ARN. It does not create a new behavior graph.

Examples:

Request syntax with placeholder values


resp = client.create_graph({
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.graph_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :tags (Hash<String,String>)

    The tags to assign to the new behavior graph. You can add up to 50 tags. For each tag, you provide the tag key and the tag value. Each tag key can contain up to 128 characters. Each tag value can contain up to 256 characters.

Returns:

See Also:



543
544
545
546
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 543

def create_graph(params = {}, options = {})
  req = build_request(:create_graph, params)
  req.send_request(options)
end

#create_members(params = {}) ⇒ Types::CreateMembersResponse

CreateMembers is used to send invitations to accounts. For the organization behavior graph, the Detective administrator account uses CreateMembers to enable organization accounts as member accounts.

For invited accounts, CreateMembers sends a request to invite the specified Amazon Web Services accounts to be member accounts in the behavior graph. This operation can only be called by the administrator account for a behavior graph.

CreateMembers verifies the accounts and then invites the verified accounts. The administrator can optionally specify to not send invitation emails to the member accounts. This would be used when the administrator manages their member accounts centrally.

For organization accounts in the organization behavior graph, CreateMembers attempts to enable the accounts. The organization accounts do not receive invitations.

The request provides the behavior graph ARN and the list of accounts to invite or to enable.

The response separates the requested accounts into two lists:

  • The accounts that CreateMembers was able to process. For invited accounts, includes member accounts that are being verified, that have passed verification and are to be invited, and that have failed verification. For organization accounts in the organization behavior graph, includes accounts that can be enabled and that cannot be enabled.

  • The accounts that CreateMembers was unable to process. This list includes accounts that were already invited to be member accounts in the behavior graph.

Examples:

Request syntax with placeholder values


resp = client.create_members({
  graph_arn: "GraphArn", # required
  message: "EmailMessage",
  disable_email_notification: false,
  accounts: [ # required
    {
      account_id: "AccountId", # required
      email_address: "EmailAddress", # required
    },
  ],
})

Response structure


resp.members #=> Array
resp.members[0]. #=> String
resp.members[0].email_address #=> String
resp.members[0].graph_arn #=> String
resp.members[0].master_id #=> String
resp.members[0].administrator_id #=> String
resp.members[0].status #=> String, one of "INVITED", "VERIFICATION_IN_PROGRESS", "VERIFICATION_FAILED", "ENABLED", "ACCEPTED_BUT_DISABLED"
resp.members[0].disabled_reason #=> String, one of "VOLUME_TOO_HIGH", "VOLUME_UNKNOWN"
resp.members[0].invited_time #=> Time
resp.members[0].updated_time #=> Time
resp.members[0].volume_usage_in_bytes #=> Integer
resp.members[0].volume_usage_updated_time #=> Time
resp.members[0].percent_of_graph_utilization #=> Float
resp.members[0].percent_of_graph_utilization_updated_time #=> Time
resp.members[0].invitation_type #=> String, one of "INVITATION", "ORGANIZATION"
resp.members[0].volume_usage_by_datasource_package #=> Hash
resp.members[0].volume_usage_by_datasource_package["DatasourcePackage"].volume_usage_in_bytes #=> Integer
resp.members[0].volume_usage_by_datasource_package["DatasourcePackage"].volume_usage_update_time #=> Time
resp.members[0].datasource_package_ingest_states #=> Hash
resp.members[0].datasource_package_ingest_states["DatasourcePackage"] #=> String, one of "STARTED", "STOPPED", "DISABLED"
resp.unprocessed_accounts #=> Array
resp.unprocessed_accounts[0]. #=> String
resp.unprocessed_accounts[0].reason #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph.

  • :message (String)

    Customized message text to include in the invitation email message to the invited member accounts.

  • :disable_email_notification (Boolean)

    if set to true, then the invited accounts do not receive email notifications. By default, this is set to false, and the invited accounts receive email notifications.

    Organization accounts in the organization behavior graph do not receive email notifications.

  • :accounts (required, Array<Types::Account>)

    The list of Amazon Web Services accounts to invite or to enable. You can invite or enable up to 50 accounts at a time. For each invited account, the account list contains the account identifier and the Amazon Web Services account root user email address. For organization accounts in the organization behavior graph, the email address is not required.

Returns:

See Also:



654
655
656
657
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 654

def create_members(params = {}, options = {})
  req = build_request(:create_members, params)
  req.send_request(options)
end

#delete_graph(params = {}) ⇒ Struct

Disables the specified behavior graph and queues it to be deleted. This operation removes the behavior graph from each member account's list of behavior graphs.

DeleteGraph can only be called by the administrator account for a behavior graph.

Examples:

Request syntax with placeholder values


resp = client.delete_graph({
  graph_arn: "GraphArn", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph to disable.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



681
682
683
684
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 681

def delete_graph(params = {}, options = {})
  req = build_request(:delete_graph, params)
  req.send_request(options)
end

#delete_members(params = {}) ⇒ Types::DeleteMembersResponse

Removes the specified member accounts from the behavior graph. The removed accounts no longer contribute data to the behavior graph. This operation can only be called by the administrator account for the behavior graph.

For invited accounts, the removed accounts are deleted from the list of accounts in the behavior graph. To restore the account, the administrator account must send another invitation.

For organization accounts in the organization behavior graph, the Detective administrator account can always enable the organization account again. Organization accounts that are not enabled as member accounts are not included in the ListMembers results for the organization behavior graph.

An administrator account cannot use DeleteMembers to remove their own account from the behavior graph. To disable a behavior graph, the administrator account uses the DeleteGraph API method.

Examples:

Request syntax with placeholder values


resp = client.delete_members({
  graph_arn: "GraphArn", # required
  account_ids: ["AccountId"], # required
})

Response structure


resp. #=> Array
resp.[0] #=> String
resp.unprocessed_accounts #=> Array
resp.unprocessed_accounts[0]. #=> String
resp.unprocessed_accounts[0].reason #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph to remove members from.

  • :account_ids (required, Array<String>)

    The list of Amazon Web Services account identifiers for the member accounts to remove from the behavior graph. You can remove up to 50 member accounts at a time.

Returns:

See Also:



737
738
739
740
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 737

def delete_members(params = {}, options = {})
  req = build_request(:delete_members, params)
  req.send_request(options)
end

#describe_organization_configuration(params = {}) ⇒ Types::DescribeOrganizationConfigurationResponse

Returns information about the configuration for the organization behavior graph. Currently indicates whether to automatically enable new organization accounts as member accounts.

Can only be called by the Detective administrator account for the organization.

Examples:

Request syntax with placeholder values


resp = client.describe_organization_configuration({
  graph_arn: "GraphArn", # required
})

Response structure


resp.auto_enable #=> Boolean

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the organization behavior graph.

Returns:

See Also:



770
771
772
773
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 770

def describe_organization_configuration(params = {}, options = {})
  req = build_request(:describe_organization_configuration, params)
  req.send_request(options)
end

#disable_organization_admin_account(params = {}) ⇒ Struct

Removes the Detective administrator account in the current Region. Deletes the organization behavior graph.

Can only be called by the organization management account.

Removing the Detective administrator account does not affect the delegated administrator account for Detective in Organizations.

To remove the delegated administrator account in Organizations, use the Organizations API. Removing the delegated administrator account also removes the Detective administrator account in all Regions, except for Regions where the Detective administrator account is the organization management account.

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Returns:

  • (Struct)

    Returns an empty response.

See Also:



795
796
797
798
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 795

def (params = {}, options = {})
  req = build_request(:disable_organization_admin_account, params)
  req.send_request(options)
end

#disassociate_membership(params = {}) ⇒ Struct

Removes the member account from the specified behavior graph. This operation can only be called by an invited member account that has the ENABLED status.

DisassociateMembership cannot be called by an organization account in the organization behavior graph. For the organization behavior graph, the Detective administrator account determines which organization accounts to enable or disable as member accounts.

Examples:

Request syntax with placeholder values


resp = client.disassociate_membership({
  graph_arn: "GraphArn", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph to remove the member account from.

    The member account's member status in the behavior graph must be ENABLED.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



827
828
829
830
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 827

def disassociate_membership(params = {}, options = {})
  req = build_request(:disassociate_membership, params)
  req.send_request(options)
end

#enable_organization_admin_account(params = {}) ⇒ Struct

Designates the Detective administrator account for the organization in the current Region.

If the account does not have Detective enabled, then enables Detective for that account and creates a new behavior graph.

Can only be called by the organization management account.

If the organization has a delegated administrator account in Organizations, then the Detective administrator account must be either the delegated administrator account or the organization management account.

If the organization does not have a delegated administrator account in Organizations, then you can choose any account in the organization. If you choose an account other than the organization management account, Detective calls Organizations to make that account the delegated administrator account for Detective. The organization management account cannot be the delegated administrator account.

Examples:

Request syntax with placeholder values


resp = client.({
  account_id: "AccountId", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :account_id (required, String)

    The Amazon Web Services account identifier of the account to designate as the Detective administrator account for the organization.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



868
869
870
871
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 868

def (params = {}, options = {})
  req = build_request(:enable_organization_admin_account, params)
  req.send_request(options)
end

#get_investigation(params = {}) ⇒ Types::GetInvestigationResponse

Detective investigations lets you investigate IAM users and IAM roles using indicators of compromise. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident. GetInvestigation returns the investigation results of an investigation for a behavior graph.

Examples:

Request syntax with placeholder values


resp = client.get_investigation({
  graph_arn: "GraphArn", # required
  investigation_id: "InvestigationId", # required
})

Response structure


resp.graph_arn #=> String
resp.investigation_id #=> String
resp.entity_arn #=> String
resp.entity_type #=> String, one of "IAM_ROLE", "IAM_USER"
resp.created_time #=> Time
resp.scope_start_time #=> Time
resp.scope_end_time #=> Time
resp.status #=> String, one of "RUNNING", "FAILED", "SUCCESSFUL"
resp.severity #=> String, one of "INFORMATIONAL", "LOW", "MEDIUM", "HIGH", "CRITICAL"
resp.state #=> String, one of "ACTIVE", "ARCHIVED"

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The Amazon Resource Name (ARN) of the behavior graph.

  • :investigation_id (required, String)

    The investigation ID of the investigation report.

Returns:

See Also:



923
924
925
926
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 923

def get_investigation(params = {}, options = {})
  req = build_request(:get_investigation, params)
  req.send_request(options)
end

#get_members(params = {}) ⇒ Types::GetMembersResponse

Returns the membership details for specified member accounts for a behavior graph.

Examples:

Request syntax with placeholder values


resp = client.get_members({
  graph_arn: "GraphArn", # required
  account_ids: ["AccountId"], # required
})

Response structure


resp.member_details #=> Array
resp.member_details[0]. #=> String
resp.member_details[0].email_address #=> String
resp.member_details[0].graph_arn #=> String
resp.member_details[0].master_id #=> String
resp.member_details[0].administrator_id #=> String
resp.member_details[0].status #=> String, one of "INVITED", "VERIFICATION_IN_PROGRESS", "VERIFICATION_FAILED", "ENABLED", "ACCEPTED_BUT_DISABLED"
resp.member_details[0].disabled_reason #=> String, one of "VOLUME_TOO_HIGH", "VOLUME_UNKNOWN"
resp.member_details[0].invited_time #=> Time
resp.member_details[0].updated_time #=> Time
resp.member_details[0].volume_usage_in_bytes #=> Integer
resp.member_details[0].volume_usage_updated_time #=> Time
resp.member_details[0].percent_of_graph_utilization #=> Float
resp.member_details[0].percent_of_graph_utilization_updated_time #=> Time
resp.member_details[0].invitation_type #=> String, one of "INVITATION", "ORGANIZATION"
resp.member_details[0].volume_usage_by_datasource_package #=> Hash
resp.member_details[0].volume_usage_by_datasource_package["DatasourcePackage"].volume_usage_in_bytes #=> Integer
resp.member_details[0].volume_usage_by_datasource_package["DatasourcePackage"].volume_usage_update_time #=> Time
resp.member_details[0].datasource_package_ingest_states #=> Hash
resp.member_details[0].datasource_package_ingest_states["DatasourcePackage"] #=> String, one of "STARTED", "STOPPED", "DISABLED"
resp.unprocessed_accounts #=> Array
resp.unprocessed_accounts[0]. #=> String
resp.unprocessed_accounts[0].reason #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph for which to request the member details.

  • :account_ids (required, Array<String>)

    The list of Amazon Web Services account identifiers for the member account for which to return member details. You can request details for up to 50 member accounts at a time.

    You cannot use GetMembers to retrieve information about member accounts that were removed from the behavior graph.

Returns:

See Also:



984
985
986
987
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 984

def get_members(params = {}, options = {})
  req = build_request(:get_members, params)
  req.send_request(options)
end

#list_datasource_packages(params = {}) ⇒ Types::ListDatasourcePackagesResponse

Lists data source packages in the behavior graph.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_datasource_packages({
  graph_arn: "GraphArn", # required
  next_token: "PaginationToken",
  max_results: 1,
})

Response structure


resp.datasource_packages #=> Hash
resp.datasource_packages["DatasourcePackage"].datasource_package_ingest_state #=> String, one of "STARTED", "STOPPED", "DISABLED"
resp.datasource_packages["DatasourcePackage"].last_ingest_state_change #=> Hash
resp.datasource_packages["DatasourcePackage"].last_ingest_state_change["DatasourcePackageIngestState"].timestamp #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph.

  • :next_token (String)

    For requests to get the next page of results, the pagination token that was returned with the previous set of results. The initial request does not include a pagination token.

  • :max_results (Integer)

    The maximum number of results to return.

Returns:

See Also:



1029
1030
1031
1032
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1029

def list_datasource_packages(params = {}, options = {})
  req = build_request(:list_datasource_packages, params)
  req.send_request(options)
end

#list_graphs(params = {}) ⇒ Types::ListGraphsResponse

Returns the list of behavior graphs that the calling account is an administrator account of. This operation can only be called by an administrator account.

Because an account can currently only be the administrator of one behavior graph within a Region, the results always contain a single behavior graph.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_graphs({
  next_token: "PaginationToken",
  max_results: 1,
})

Response structure


resp.graph_list #=> Array
resp.graph_list[0].arn #=> String
resp.graph_list[0].created_time #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (String)

    For requests to get the next page of results, the pagination token that was returned with the previous set of results. The initial request does not include a pagination token.

  • :max_results (Integer)

    The maximum number of graphs to return at a time. The total must be less than the overall limit on the number of results to return, which is currently 200.

Returns:

See Also:



1077
1078
1079
1080
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1077

def list_graphs(params = {}, options = {})
  req = build_request(:list_graphs, params)
  req.send_request(options)
end

#list_indicators(params = {}) ⇒ Types::ListIndicatorsResponse

Gets the indicators from an investigation. You can use the information from the indicators to determine if an IAM user and/or IAM role is involved in an unusual activity that could indicate malicious behavior and its impact.

Examples:

Request syntax with placeholder values


resp = client.list_indicators({
  graph_arn: "GraphArn", # required
  investigation_id: "InvestigationId", # required
  indicator_type: "TTP_OBSERVED", # accepts TTP_OBSERVED, IMPOSSIBLE_TRAVEL, FLAGGED_IP_ADDRESS, NEW_GEOLOCATION, NEW_ASO, NEW_USER_AGENT, RELATED_FINDING, RELATED_FINDING_GROUP
  next_token: "AiPaginationToken",
  max_results: 1,
})

Response structure


resp.graph_arn #=> String
resp.investigation_id #=> String
resp.next_token #=> String
resp.indicators #=> Array
resp.indicators[0].indicator_type #=> String, one of "TTP_OBSERVED", "IMPOSSIBLE_TRAVEL", "FLAGGED_IP_ADDRESS", "NEW_GEOLOCATION", "NEW_ASO", "NEW_USER_AGENT", "RELATED_FINDING", "RELATED_FINDING_GROUP"
resp.indicators[0].indicator_detail.tt_ps_observed_detail.tactic #=> String
resp.indicators[0].indicator_detail.tt_ps_observed_detail.technique #=> String
resp.indicators[0].indicator_detail.tt_ps_observed_detail.procedure #=> String
resp.indicators[0].indicator_detail.tt_ps_observed_detail.ip_address #=> String
resp.indicators[0].indicator_detail.tt_ps_observed_detail.api_name #=> String
resp.indicators[0].indicator_detail.tt_ps_observed_detail.api_success_count #=> Integer
resp.indicators[0].indicator_detail.tt_ps_observed_detail.api_failure_count #=> Integer
resp.indicators[0].indicator_detail.impossible_travel_detail.starting_ip_address #=> String
resp.indicators[0].indicator_detail.impossible_travel_detail.ending_ip_address #=> String
resp.indicators[0].indicator_detail.impossible_travel_detail.starting_location #=> String
resp.indicators[0].indicator_detail.impossible_travel_detail.ending_location #=> String
resp.indicators[0].indicator_detail.impossible_travel_detail.hourly_time_delta #=> Integer
resp.indicators[0].indicator_detail.flagged_ip_address_detail.ip_address #=> String
resp.indicators[0].indicator_detail.flagged_ip_address_detail.reason #=> String, one of "AWS_THREAT_INTELLIGENCE"
resp.indicators[0].indicator_detail.new_geolocation_detail.location #=> String
resp.indicators[0].indicator_detail.new_geolocation_detail.ip_address #=> String
resp.indicators[0].indicator_detail.new_geolocation_detail. #=> Boolean
resp.indicators[0].indicator_detail.new_aso_detail.aso #=> String
resp.indicators[0].indicator_detail.new_aso_detail. #=> Boolean
resp.indicators[0].indicator_detail.new_user_agent_detail.user_agent #=> String
resp.indicators[0].indicator_detail.new_user_agent_detail. #=> Boolean
resp.indicators[0].indicator_detail.related_finding_detail.arn #=> String
resp.indicators[0].indicator_detail.related_finding_detail.type #=> String
resp.indicators[0].indicator_detail.related_finding_detail.ip_address #=> String
resp.indicators[0].indicator_detail.related_finding_group_detail.id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The Amazon Resource Name (ARN) of the behavior graph.

  • :investigation_id (required, String)

    The investigation ID of the investigation report.

  • :indicator_type (String)

    For the list of indicators of compromise that are generated by Detective investigations, see Detective investigations.

  • :next_token (String)

    Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.

    Each pagination token expires after 24 hours. Using an expired pagination token will return a Validation Exception error.

  • :max_results (Integer)

    Lists the maximum number of indicators in a page.

Returns:

See Also:



1167
1168
1169
1170
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1167

def list_indicators(params = {}, options = {})
  req = build_request(:list_indicators, params)
  req.send_request(options)
end

#list_investigations(params = {}) ⇒ Types::ListInvestigationsResponse

Detective investigations lets you investigate IAM users and IAM roles using indicators of compromise. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident. ListInvestigations lists all active Detective investigations.

Examples:

Request syntax with placeholder values


resp = client.list_investigations({
  graph_arn: "GraphArn", # required
  next_token: "AiPaginationToken",
  max_results: 1,
  filter_criteria: {
    severity: {
      value: "Value", # required
    },
    status: {
      value: "Value", # required
    },
    state: {
      value: "Value", # required
    },
    entity_arn: {
      value: "Value", # required
    },
    created_time: {
      start_inclusive: Time.now, # required
      end_inclusive: Time.now, # required
    },
  },
  sort_criteria: {
    field: "SEVERITY", # accepts SEVERITY, STATUS, CREATED_TIME
    sort_order: "ASC", # accepts ASC, DESC
  },
})

Response structure


resp.investigation_details #=> Array
resp.investigation_details[0].investigation_id #=> String
resp.investigation_details[0].severity #=> String, one of "INFORMATIONAL", "LOW", "MEDIUM", "HIGH", "CRITICAL"
resp.investigation_details[0].status #=> String, one of "RUNNING", "FAILED", "SUCCESSFUL"
resp.investigation_details[0].state #=> String, one of "ACTIVE", "ARCHIVED"
resp.investigation_details[0].created_time #=> Time
resp.investigation_details[0].entity_arn #=> String
resp.investigation_details[0].entity_type #=> String, one of "IAM_ROLE", "IAM_USER"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The Amazon Resource Name (ARN) of the behavior graph.

  • :next_token (String)

    Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.

    Each pagination token expires after 24 hours. Using an expired pagination token will return a Validation Exception error.

  • :max_results (Integer)

    Lists the maximum number of investigations in a page.

  • :filter_criteria (Types::FilterCriteria)

    Filters the investigation results based on a criteria.

  • :sort_criteria (Types::SortCriteria)

    Sorts the investigation results based on a criteria.

Returns:

See Also:



1251
1252
1253
1254
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1251

def list_investigations(params = {}, options = {})
  req = build_request(:list_investigations, params)
  req.send_request(options)
end

#list_invitations(params = {}) ⇒ Types::ListInvitationsResponse

Retrieves the list of open and accepted behavior graph invitations for the member account. This operation can only be called by an invited member account.

Open invitations are invitations that the member account has not responded to.

The results do not include behavior graphs for which the member account declined the invitation. The results also do not include behavior graphs that the member account resigned from or was removed from.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_invitations({
  next_token: "PaginationToken",
  max_results: 1,
})

Response structure


resp.invitations #=> Array
resp.invitations[0]. #=> String
resp.invitations[0].email_address #=> String
resp.invitations[0].graph_arn #=> String
resp.invitations[0].master_id #=> String
resp.invitations[0].administrator_id #=> String
resp.invitations[0].status #=> String, one of "INVITED", "VERIFICATION_IN_PROGRESS", "VERIFICATION_FAILED", "ENABLED", "ACCEPTED_BUT_DISABLED"
resp.invitations[0].disabled_reason #=> String, one of "VOLUME_TOO_HIGH", "VOLUME_UNKNOWN"
resp.invitations[0].invited_time #=> Time
resp.invitations[0].updated_time #=> Time
resp.invitations[0].volume_usage_in_bytes #=> Integer
resp.invitations[0].volume_usage_updated_time #=> Time
resp.invitations[0].percent_of_graph_utilization #=> Float
resp.invitations[0].percent_of_graph_utilization_updated_time #=> Time
resp.invitations[0].invitation_type #=> String, one of "INVITATION", "ORGANIZATION"
resp.invitations[0].volume_usage_by_datasource_package #=> Hash
resp.invitations[0].volume_usage_by_datasource_package["DatasourcePackage"].volume_usage_in_bytes #=> Integer
resp.invitations[0].volume_usage_by_datasource_package["DatasourcePackage"].volume_usage_update_time #=> Time
resp.invitations[0].datasource_package_ingest_states #=> Hash
resp.invitations[0].datasource_package_ingest_states["DatasourcePackage"] #=> String, one of "STARTED", "STOPPED", "DISABLED"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (String)

    For requests to retrieve the next page of results, the pagination token that was returned with the previous page of results. The initial request does not include a pagination token.

  • :max_results (Integer)

    The maximum number of behavior graph invitations to return in the response. The total must be less than the overall limit on the number of results to return, which is currently 200.

Returns:

See Also:



1320
1321
1322
1323
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1320

def list_invitations(params = {}, options = {})
  req = build_request(:list_invitations, params)
  req.send_request(options)
end

#list_members(params = {}) ⇒ Types::ListMembersResponse

Retrieves the list of member accounts for a behavior graph.

For invited accounts, the results do not include member accounts that were removed from the behavior graph.

For the organization behavior graph, the results do not include organization accounts that the Detective administrator account has not enabled as member accounts.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_members({
  graph_arn: "GraphArn", # required
  next_token: "PaginationToken",
  max_results: 1,
})

Response structure


resp.member_details #=> Array
resp.member_details[0]. #=> String
resp.member_details[0].email_address #=> String
resp.member_details[0].graph_arn #=> String
resp.member_details[0].master_id #=> String
resp.member_details[0].administrator_id #=> String
resp.member_details[0].status #=> String, one of "INVITED", "VERIFICATION_IN_PROGRESS", "VERIFICATION_FAILED", "ENABLED", "ACCEPTED_BUT_DISABLED"
resp.member_details[0].disabled_reason #=> String, one of "VOLUME_TOO_HIGH", "VOLUME_UNKNOWN"
resp.member_details[0].invited_time #=> Time
resp.member_details[0].updated_time #=> Time
resp.member_details[0].volume_usage_in_bytes #=> Integer
resp.member_details[0].volume_usage_updated_time #=> Time
resp.member_details[0].percent_of_graph_utilization #=> Float
resp.member_details[0].percent_of_graph_utilization_updated_time #=> Time
resp.member_details[0].invitation_type #=> String, one of "INVITATION", "ORGANIZATION"
resp.member_details[0].volume_usage_by_datasource_package #=> Hash
resp.member_details[0].volume_usage_by_datasource_package["DatasourcePackage"].volume_usage_in_bytes #=> Integer
resp.member_details[0].volume_usage_by_datasource_package["DatasourcePackage"].volume_usage_update_time #=> Time
resp.member_details[0].datasource_package_ingest_states #=> Hash
resp.member_details[0].datasource_package_ingest_states["DatasourcePackage"] #=> String, one of "STARTED", "STOPPED", "DISABLED"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph for which to retrieve the list of member accounts.

  • :next_token (String)

    For requests to retrieve the next page of member account results, the pagination token that was returned with the previous page of results. The initial request does not include a pagination token.

  • :max_results (Integer)

    The maximum number of member accounts to include in the response. The total must be less than the overall limit on the number of results to return, which is currently 200.

Returns:

See Also:



1391
1392
1393
1394
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1391

def list_members(params = {}, options = {})
  req = build_request(:list_members, params)
  req.send_request(options)
end

#list_organization_admin_accounts(params = {}) ⇒ Types::ListOrganizationAdminAccountsResponse

Returns information about the Detective administrator account for an organization. Can only be called by the organization management account.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_organization_admin_accounts({
  next_token: "PaginationToken",
  max_results: 1,
})

Response structure


resp.administrators #=> Array
resp.administrators[0]. #=> String
resp.administrators[0].graph_arn #=> String
resp.administrators[0].delegation_time #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (String)

    For requests to get the next page of results, the pagination token that was returned with the previous set of results. The initial request does not include a pagination token.

  • :max_results (Integer)

    The maximum number of results to return.

Returns:

See Also:



1434
1435
1436
1437
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1434

def list_organization_admin_accounts(params = {}, options = {})
  req = build_request(:list_organization_admin_accounts, params)
  req.send_request(options)
end

#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse

Returns the tag values that are assigned to a behavior graph.

Examples:

Request syntax with placeholder values


resp = client.list_tags_for_resource({
  resource_arn: "GraphArn", # required
})

Response structure


resp.tags #=> Hash
resp.tags["TagKey"] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The ARN of the behavior graph for which to retrieve the tag values.

Returns:

See Also:



1463
1464
1465
1466
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1463

def list_tags_for_resource(params = {}, options = {})
  req = build_request(:list_tags_for_resource, params)
  req.send_request(options)
end

#reject_invitation(params = {}) ⇒ Struct

Rejects an invitation to contribute the account data to a behavior graph. This operation must be called by an invited member account that has the INVITED status.

RejectInvitation cannot be called by an organization account in the organization behavior graph. In the organization behavior graph, organization accounts do not receive an invitation.

Examples:

Request syntax with placeholder values


resp = client.reject_invitation({
  graph_arn: "GraphArn", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph to reject the invitation to.

    The member account's current member status in the behavior graph must be INVITED.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1494
1495
1496
1497
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1494

def reject_invitation(params = {}, options = {})
  req = build_request(:reject_invitation, params)
  req.send_request(options)
end

#start_investigation(params = {}) ⇒ Types::StartInvestigationResponse

Detective investigations lets you investigate IAM users and IAM roles using indicators of compromise. An indicator of compromise (IOC) is an artifact observed in or on a network, system, or environment that can (with a high level of confidence) identify malicious activity or a security incident. StartInvestigation initiates an investigation on an entity in a behavior graph.

Examples:

Request syntax with placeholder values


resp = client.start_investigation({
  graph_arn: "GraphArn", # required
  entity_arn: "EntityArn", # required
  scope_start_time: Time.now, # required
  scope_end_time: Time.now, # required
})

Response structure


resp.investigation_id #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The Amazon Resource Name (ARN) of the behavior graph.

  • :entity_arn (required, String)

    The unique Amazon Resource Name (ARN) of the IAM user and IAM role.

  • :scope_start_time (required, Time, DateTime, Date, Integer, String)

    The data and time when the investigation began. The value is an UTC ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

  • :scope_end_time (required, Time, DateTime, Date, Integer, String)

    The data and time when the investigation ended. The value is an UTC ISO8601 formatted string. For example, 2021-08-18T16:35:56.284Z.

Returns:

See Also:



1541
1542
1543
1544
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1541

def start_investigation(params = {}, options = {})
  req = build_request(:start_investigation, params)
  req.send_request(options)
end

#start_monitoring_member(params = {}) ⇒ Struct

Sends a request to enable data ingest for a member account that has a status of ACCEPTED_BUT_DISABLED.

For valid member accounts, the status is updated as follows.

  • If Detective enabled the member account, then the new status is ENABLED.

  • If Detective cannot enable the member account, the status remains ACCEPTED_BUT_DISABLED.

Examples:

Request syntax with placeholder values


resp = client.start_monitoring_member({
  graph_arn: "GraphArn", # required
  account_id: "AccountId", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph.

  • :account_id (required, String)

    The account ID of the member account to try to enable.

    The account must be an invited member account with a status of ACCEPTED_BUT_DISABLED.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1579
1580
1581
1582
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1579

def start_monitoring_member(params = {}, options = {})
  req = build_request(:start_monitoring_member, params)
  req.send_request(options)
end

#tag_resource(params = {}) ⇒ Struct

Applies tag values to a behavior graph.

Examples:

Request syntax with placeholder values


resp = client.tag_resource({
  resource_arn: "GraphArn", # required
  tags: { # required
    "TagKey" => "TagValue",
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The ARN of the behavior graph to assign the tags to.

  • :tags (required, Hash<String,String>)

    The tags to assign to the behavior graph. You can add up to 50 tags. For each tag, you provide the tag key and the tag value. Each tag key can contain up to 128 characters. Each tag value can contain up to 256 characters.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1610
1611
1612
1613
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1610

def tag_resource(params = {}, options = {})
  req = build_request(:tag_resource, params)
  req.send_request(options)
end

#untag_resource(params = {}) ⇒ Struct

Removes tags from a behavior graph.

Examples:

Request syntax with placeholder values


resp = client.untag_resource({
  resource_arn: "GraphArn", # required
  tag_keys: ["TagKey"], # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The ARN of the behavior graph to remove the tags from.

  • :tag_keys (required, Array<String>)

    The tag keys of the tags to remove from the behavior graph. You can remove up to 50 tags at a time.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1637
1638
1639
1640
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1637

def untag_resource(params = {}, options = {})
  req = build_request(:untag_resource, params)
  req.send_request(options)
end

#update_datasource_packages(params = {}) ⇒ Struct

Starts a data source packages for the behavior graph.

Examples:

Request syntax with placeholder values


resp = client.update_datasource_packages({
  graph_arn: "GraphArn", # required
  datasource_packages: ["DETECTIVE_CORE"], # required, accepts DETECTIVE_CORE, EKS_AUDIT, ASFF_SECURITYHUB_FINDING
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the behavior graph.

  • :datasource_packages (required, Array<String>)

    The data source package start for the behavior graph.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1663
1664
1665
1666
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1663

def update_datasource_packages(params = {}, options = {})
  req = build_request(:update_datasource_packages, params)
  req.send_request(options)
end

#update_investigation_state(params = {}) ⇒ Struct

Updates the state of an investigation.

Examples:

Request syntax with placeholder values


resp = client.update_investigation_state({
  graph_arn: "GraphArn", # required
  investigation_id: "InvestigationId", # required
  state: "ACTIVE", # required, accepts ACTIVE, ARCHIVED
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The Amazon Resource Name (ARN) of the behavior graph.

  • :investigation_id (required, String)

    The investigation ID of the investigation report.

  • :state (required, String)

    The current state of the investigation. An archived investigation indicates you have completed reviewing the investigation.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1694
1695
1696
1697
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1694

def update_investigation_state(params = {}, options = {})
  req = build_request(:update_investigation_state, params)
  req.send_request(options)
end

#update_organization_configuration(params = {}) ⇒ Struct

Updates the configuration for the Organizations integration in the current Region. Can only be called by the Detective administrator account for the organization.

Examples:

Request syntax with placeholder values


resp = client.update_organization_configuration({
  graph_arn: "GraphArn", # required
  auto_enable: false,
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :graph_arn (required, String)

    The ARN of the organization behavior graph.

  • :auto_enable (Boolean)

    Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1723
1724
1725
1726
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/client.rb', line 1723

def update_organization_configuration(params = {}, options = {})
  req = build_request(:update_organization_configuration, params)
  req.send_request(options)
end