Struct aws_sdk_applicationinsights::client::Client
source · [−]pub struct Client<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }Expand description
Client for Amazon CloudWatch Application Insights
Client for invoking operations on Amazon CloudWatch Application Insights. Each operation on Amazon CloudWatch Application Insights is a method on this
this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.
Examples
Constructing a client and invoking an operation
// create a shared configuration. This can be used & shared between multiple service clients.
let shared_config = aws_config::load_from_env().await;
let client = aws_sdk_applicationinsights::Client::new(&shared_config);
// invoke an operation
/* let rsp = client
.<operation_name>().
.<param>("some value")
.send().await; */Constructing a client with custom configuration
use aws_config::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_applicationinsights::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_applicationinsights::Client::from_conf(config);Implementations
impl<C, M, R> Client<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> Client<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
Constructs a fluent builder for the CreateApplication operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
ops_center_enabled(bool)/set_ops_center_enabled(Option<bool>):When set to
true, creates opsItems for any problems detected on an application.cwe_monitor_enabled(bool)/set_cwe_monitor_enabled(Option<bool>):Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as
instance terminated,failed deployment, and others.ops_item_sns_topic_arn(impl Into<String>)/set_ops_item_sns_topic_arn(Option<String>):The SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):List of tags to add to the application. tag key (
Key) and an associated tag value (Value). The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.auto_config_enabled(bool)/set_auto_config_enabled(Option<bool>): (undocumented)auto_create(bool)/set_auto_create(Option<bool>): (undocumented)
- On success, responds with
CreateApplicationOutputwith field(s):application_info(Option<ApplicationInfo>):Information about the application.
- On failure, responds with
SdkError<CreateApplicationError>
Constructs a fluent builder for the CreateComponent operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
component_name(impl Into<String>)/set_component_name(Option<String>):The name of the component.
resource_list(Vec<String>)/set_resource_list(Option<Vec<String>>):The list of resource ARNs that belong to the component.
- On success, responds with
CreateComponentOutput - On failure, responds with
SdkError<CreateComponentError>
Constructs a fluent builder for the CreateLogPattern operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
pattern_set_name(impl Into<String>)/set_pattern_set_name(Option<String>):The name of the log pattern set.
pattern_name(impl Into<String>)/set_pattern_name(Option<String>):The name of the log pattern.
pattern(impl Into<String>)/set_pattern(Option<String>):The log pattern. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.
rank(i32)/set_rank(i32):Rank of the log pattern. Must be a value between
1and1,000,000. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank1will be the first to get matched to a log line. A pattern of rank1,000,000will be last to get matched. When you configure custom log patterns from the console, aLowseverity pattern translates to a750,000rank. AMediumseverity pattern translates to a500,000rank. And aHighseverity pattern translates to a250,000rank. Rank values less than1or greater than1,000,000are reserved for AWS-provided patterns.
- On success, responds with
CreateLogPatternOutputwith field(s):log_pattern(Option<LogPattern>):The successfully created log pattern.
resource_group_name(Option<String>):The name of the resource group.
- On failure, responds with
SdkError<CreateLogPatternError>
Constructs a fluent builder for the DeleteApplication operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
- On success, responds with
DeleteApplicationOutput - On failure, responds with
SdkError<DeleteApplicationError>
Constructs a fluent builder for the DeleteComponent operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
component_name(impl Into<String>)/set_component_name(Option<String>):The name of the component.
- On success, responds with
DeleteComponentOutput - On failure, responds with
SdkError<DeleteComponentError>
Constructs a fluent builder for the DeleteLogPattern operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
pattern_set_name(impl Into<String>)/set_pattern_set_name(Option<String>):The name of the log pattern set.
pattern_name(impl Into<String>)/set_pattern_name(Option<String>):The name of the log pattern.
- On success, responds with
DeleteLogPatternOutput - On failure, responds with
SdkError<DeleteLogPatternError>
Constructs a fluent builder for the DescribeApplication operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
- On success, responds with
DescribeApplicationOutputwith field(s):application_info(Option<ApplicationInfo>):Information about the application.
- On failure, responds with
SdkError<DescribeApplicationError>
Constructs a fluent builder for the DescribeComponent operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
component_name(impl Into<String>)/set_component_name(Option<String>):The name of the component.
- On success, responds with
DescribeComponentOutputwith field(s):application_component(Option<ApplicationComponent>):Describes a standalone resource or similarly grouped resources that the application is made up of.
resource_list(Option<Vec<String>>):The list of resource ARNs that belong to the component.
- On failure, responds with
SdkError<DescribeComponentError>
Constructs a fluent builder for the DescribeComponentConfiguration operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
component_name(impl Into<String>)/set_component_name(Option<String>):The name of the component.
- On success, responds with
DescribeComponentConfigurationOutputwith field(s):monitor(Option<bool>):Indicates whether the application component is monitored.
tier(Option<Tier>):The tier of the application component. Supported tiers include
DOT_NET_CORE,DOT_NET_WORKER,DOT_NET_WEB,SQL_SERVER, andDEFAULTcomponent_configuration(Option<String>):The configuration settings of the component. The value is the escaped JSON of the configuration.
- On failure, responds with
SdkError<DescribeComponentConfigurationError>
pub fn describe_component_configuration_recommendation(
&self
) -> DescribeComponentConfigurationRecommendation<C, M, R>
pub fn describe_component_configuration_recommendation(
&self
) -> DescribeComponentConfigurationRecommendation<C, M, R>
Constructs a fluent builder for the DescribeComponentConfigurationRecommendation operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
component_name(impl Into<String>)/set_component_name(Option<String>):The name of the component.
tier(Tier)/set_tier(Option<Tier>):The tier of the application component. Supported tiers include
DOT_NET_CORE,DOT_NET_WORKER,DOT_NET_WEB,SQL_SERVER, andDEFAULT.
- On success, responds with
DescribeComponentConfigurationRecommendationOutputwith field(s):component_configuration(Option<String>):The recommended configuration settings of the component. The value is the escaped JSON of the configuration.
- On failure, responds with
SdkError<DescribeComponentConfigurationRecommendationError>
Constructs a fluent builder for the DescribeLogPattern operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
pattern_set_name(impl Into<String>)/set_pattern_set_name(Option<String>):The name of the log pattern set.
pattern_name(impl Into<String>)/set_pattern_name(Option<String>):The name of the log pattern.
- On success, responds with
DescribeLogPatternOutputwith field(s):resource_group_name(Option<String>):The name of the resource group.
log_pattern(Option<LogPattern>):The successfully created log pattern.
- On failure, responds with
SdkError<DescribeLogPatternError>
Constructs a fluent builder for the DescribeObservation operation.
- The fluent builder is configurable:
observation_id(impl Into<String>)/set_observation_id(Option<String>):The ID of the observation.
- On success, responds with
DescribeObservationOutputwith field(s):observation(Option<Observation>):Information about the observation.
- On failure, responds with
SdkError<DescribeObservationError>
Constructs a fluent builder for the DescribeProblem operation.
- The fluent builder is configurable:
problem_id(impl Into<String>)/set_problem_id(Option<String>):The ID of the problem.
- On success, responds with
DescribeProblemOutputwith field(s):problem(Option<Problem>):Information about the problem.
- On failure, responds with
SdkError<DescribeProblemError>
Constructs a fluent builder for the DescribeProblemObservations operation.
- The fluent builder is configurable:
problem_id(impl Into<String>)/set_problem_id(Option<String>):The ID of the problem.
- On success, responds with
DescribeProblemObservationsOutputwith field(s):related_observations(Option<RelatedObservations>):Observations related to the problem.
- On failure, responds with
SdkError<DescribeProblemObservationsError>
Constructs a fluent builder for the ListApplications operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
max_results(i32)/set_max_results(Option<i32>):The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned
NextTokenvalue.next_token(impl Into<String>)/set_next_token(Option<String>):The token to request the next page of results.
- On success, responds with
ListApplicationsOutputwith field(s):application_info_list(Option<Vec<ApplicationInfo>>):The list of applications.
next_token(Option<String>):The token used to retrieve the next page of results. This value is
nullwhen there are no more results to return.
- On failure, responds with
SdkError<ListApplicationsError>
Constructs a fluent builder for the ListComponents operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
max_results(i32)/set_max_results(Option<i32>):The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned
NextTokenvalue.next_token(impl Into<String>)/set_next_token(Option<String>):The token to request the next page of results.
- On success, responds with
ListComponentsOutputwith field(s):application_component_list(Option<Vec<ApplicationComponent>>):The list of application components.
next_token(Option<String>):The token to request the next page of results.
- On failure, responds with
SdkError<ListComponentsError>
Constructs a fluent builder for the ListConfigurationHistory operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):Resource group to which the application belongs.
start_time(DateTime)/set_start_time(Option<DateTime>):The start time of the event.
end_time(DateTime)/set_end_time(Option<DateTime>):The end time of the event.
event_status(ConfigurationEventStatus)/set_event_status(Option<ConfigurationEventStatus>):The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
max_results(i32)/set_max_results(Option<i32>):The maximum number of results returned by
ListConfigurationHistoryin paginated output. When this parameter is used,ListConfigurationHistoryreturns onlyMaxResultsin a single page along with aNextTokenresponse element. The remaining results of the initial request can be seen by sending anotherListConfigurationHistoryrequest with the returnedNextTokenvalue. If this parameter is not used, thenListConfigurationHistoryreturns all results.next_token(impl Into<String>)/set_next_token(Option<String>):The
NextTokenvalue returned from a previous paginatedListConfigurationHistoryrequest whereMaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned theNextTokenvalue. This value isnullwhen there are no more results to return.
- On success, responds with
ListConfigurationHistoryOutputwith field(s):event_list(Option<Vec<ConfigurationEvent>>):The list of configuration events and their corresponding details.
next_token(Option<String>):The
NextTokenvalue to include in a futureListConfigurationHistoryrequest. When the results of aListConfigurationHistoryrequest exceedMaxResults, this value can be used to retrieve the next page of results. This value isnullwhen there are no more results to return.
- On failure, responds with
SdkError<ListConfigurationHistoryError>
Constructs a fluent builder for the ListLogPatterns operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
pattern_set_name(impl Into<String>)/set_pattern_set_name(Option<String>):The name of the log pattern set.
max_results(i32)/set_max_results(Option<i32>):The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned
NextTokenvalue.next_token(impl Into<String>)/set_next_token(Option<String>):The token to request the next page of results.
- On success, responds with
ListLogPatternsOutputwith field(s):resource_group_name(Option<String>):The name of the resource group.
log_patterns(Option<Vec<LogPattern>>):The list of log patterns.
next_token(Option<String>):The token used to retrieve the next page of results. This value is
nullwhen there are no more results to return.
- On failure, responds with
SdkError<ListLogPatternsError>
Constructs a fluent builder for the ListLogPatternSets operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
max_results(i32)/set_max_results(Option<i32>):The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned
NextTokenvalue.next_token(impl Into<String>)/set_next_token(Option<String>):The token to request the next page of results.
- On success, responds with
ListLogPatternSetsOutputwith field(s):resource_group_name(Option<String>):The name of the resource group.
log_pattern_sets(Option<Vec<String>>):The list of log pattern sets.
next_token(Option<String>):The token used to retrieve the next page of results. This value is
nullwhen there are no more results to return.
- On failure, responds with
SdkError<ListLogPatternSetsError>
Constructs a fluent builder for the ListProblems operation.
This operation supports pagination; See into_paginator().
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
start_time(DateTime)/set_start_time(Option<DateTime>):The time when the problem was detected, in epoch seconds. If you don’t specify a time frame for the request, problems within the past seven days are returned.
end_time(DateTime)/set_end_time(Option<DateTime>):The time when the problem ended, in epoch seconds. If not specified, problems within the past seven days are returned.
max_results(i32)/set_max_results(Option<i32>):The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned
NextTokenvalue.next_token(impl Into<String>)/set_next_token(Option<String>):The token to request the next page of results.
component_name(impl Into<String>)/set_component_name(Option<String>): (undocumented)
- On success, responds with
ListProblemsOutputwith field(s):problem_list(Option<Vec<Problem>>):The list of problems.
next_token(Option<String>):The token used to retrieve the next page of results. This value is
nullwhen there are no more results to return.resource_group_name(Option<String>): (undocumented)
- On failure, responds with
SdkError<ListProblemsError>
Constructs a fluent builder for the ListTagsForResource operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The Amazon Resource Name (ARN) of the application that you want to retrieve tag information for.
- On success, responds with
ListTagsForResourceOutputwith field(s):tags(Option<Vec<Tag>>):An array that lists all the tags that are associated with the application. Each tag consists of a required tag key (
Key) and an associated tag value (Value).
- On failure, responds with
SdkError<ListTagsForResourceError>
Constructs a fluent builder for the TagResource operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The Amazon Resource Name (ARN) of the application that you want to add one or more tags to.
tags(Vec<Tag>)/set_tags(Option<Vec<Tag>>):A list of tags that to add to the application. A tag consists of a required tag key (
Key) and an associated tag value (Value). The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.
- On success, responds with
TagResourceOutput - On failure, responds with
SdkError<TagResourceError>
Constructs a fluent builder for the UntagResource operation.
- The fluent builder is configurable:
resource_arn(impl Into<String>)/set_resource_arn(Option<String>):The Amazon Resource Name (ARN) of the application that you want to remove one or more tags from.
tag_keys(Vec<String>)/set_tag_keys(Option<Vec<String>>):The tags (tag keys) that you want to remove from the resource. When you specify a tag key, the action removes both that key and its associated tag value.
To remove more than one tag from the application, append the
TagKeysparameter and argument for each additional tag to remove, separated by an ampersand.
- On success, responds with
UntagResourceOutput - On failure, responds with
SdkError<UntagResourceError>
Constructs a fluent builder for the UpdateApplication operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
ops_center_enabled(bool)/set_ops_center_enabled(Option<bool>):When set to
true, creates opsItems for any problems detected on an application.cwe_monitor_enabled(bool)/set_cwe_monitor_enabled(Option<bool>):Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as
instance terminated,failed deployment, and others.ops_item_sns_topic_arn(impl Into<String>)/set_ops_item_sns_topic_arn(Option<String>):The SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem.
remove_sns_topic(bool)/set_remove_sns_topic(Option<bool>):Disassociates the SNS topic from the opsItem created for detected problems.
auto_config_enabled(bool)/set_auto_config_enabled(Option<bool>): (undocumented)
- On success, responds with
UpdateApplicationOutputwith field(s):application_info(Option<ApplicationInfo>):Information about the application.
- On failure, responds with
SdkError<UpdateApplicationError>
Constructs a fluent builder for the UpdateComponent operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
component_name(impl Into<String>)/set_component_name(Option<String>):The name of the component.
new_component_name(impl Into<String>)/set_new_component_name(Option<String>):The new name of the component.
resource_list(Vec<String>)/set_resource_list(Option<Vec<String>>):The list of resource ARNs that belong to the component.
- On success, responds with
UpdateComponentOutput - On failure, responds with
SdkError<UpdateComponentError>
Constructs a fluent builder for the UpdateComponentConfiguration operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
component_name(impl Into<String>)/set_component_name(Option<String>):The name of the component.
monitor(bool)/set_monitor(Option<bool>):Indicates whether the application component is monitored.
tier(Tier)/set_tier(Option<Tier>):The tier of the application component. Supported tiers include
DOT_NET_WORKER,DOT_NET_WEB,DOT_NET_CORE,SQL_SERVER, andDEFAULT.component_configuration(impl Into<String>)/set_component_configuration(Option<String>):The configuration settings of the component. The value is the escaped JSON of the configuration. For more information about the JSON format, see Working with JSON. You can send a request to
DescribeComponentConfigurationRecommendationto see the recommended configuration for a component. For the complete format of the component configuration file, see Component Configuration.auto_config_enabled(bool)/set_auto_config_enabled(Option<bool>): (undocumented)
- On success, responds with
UpdateComponentConfigurationOutput - On failure, responds with
SdkError<UpdateComponentConfigurationError>
Constructs a fluent builder for the UpdateLogPattern operation.
- The fluent builder is configurable:
resource_group_name(impl Into<String>)/set_resource_group_name(Option<String>):The name of the resource group.
pattern_set_name(impl Into<String>)/set_pattern_set_name(Option<String>):The name of the log pattern set.
pattern_name(impl Into<String>)/set_pattern_name(Option<String>):The name of the log pattern.
pattern(impl Into<String>)/set_pattern(Option<String>):The log pattern. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.
rank(i32)/set_rank(i32):Rank of the log pattern. Must be a value between
1and1,000,000. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank1will be the first to get matched to a log line. A pattern of rank1,000,000will be last to get matched. When you configure custom log patterns from the console, aLowseverity pattern translates to a750,000rank. AMediumseverity pattern translates to a500,000rank. And aHighseverity pattern translates to a250,000rank. Rank values less than1or greater than1,000,000are reserved for AWS-provided patterns.
- On success, responds with
UpdateLogPatternOutputwith field(s):resource_group_name(Option<String>):The name of the resource group.
log_pattern(Option<LogPattern>):The successfully created log pattern.
- On failure, responds with
SdkError<UpdateLogPatternError>
Creates a client with the given service config and connector override.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for Client<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for Client<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more