[][src]Struct rusoto_shield::ShieldClient

pub struct ShieldClient { /* fields omitted */ }

A client for the AWS Shield API.

Methods

impl ShieldClient[src]

pub fn new(region: Region) -> ShieldClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> ShieldClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

Trait Implementations

impl Shield for ShieldClient[src]

fn associate_drt_log_bucket(
    &self,
    input: AssociateDRTLogBucketRequest
) -> RusotoFuture<AssociateDRTLogBucketResponse, AssociateDRTLogBucketError>
[src]

Authorizes the DDoS Response team (DRT) to access the specified Amazon S3 bucket containing your flow logs. You can associate up to 10 Amazon S3 buckets with your subscription.

To use the services of the DRT and make an AssociateDRTLogBucket request, you must be subscribed to the Business Support plan or the Enterprise Support plan.

fn associate_drt_role(
    &self,
    input: AssociateDRTRoleRequest
) -> RusotoFuture<AssociateDRTRoleResponse, AssociateDRTRoleError>
[src]

Authorizes the DDoS Response team (DRT), using the specified role, to access your AWS account to assist with DDoS attack mitigation during potential attacks. This enables the DRT to inspect your AWS WAF configuration and create or update AWS WAF rules and web ACLs.

You can associate only one RoleArn with your subscription. If you submit an AssociateDRTRole request for an account that already has an associated role, the new RoleArn will replace the existing RoleArn.

Prior to making the AssociateDRTRole request, you must attach the AWSShieldDRTAccessPolicy managed policy to the role you will specify in the request. For more information see Attaching and Detaching IAM Policies. The role must also trust the service principal drt.shield.amazonaws.com. For more information, see IAM JSON Policy Elements: Principal.

The DRT will have access only to your AWS WAF and Shield resources. By submitting this request, you authorize the DRT to inspect your AWS WAF and Shield configuration and create and update AWS WAF rules and web ACLs on your behalf. The DRT takes these actions only if explicitly authorized by you.

You must have the iam:PassRole permission to make an AssociateDRTRole request. For more information, see Granting a User Permissions to Pass a Role to an AWS Service.

To use the services of the DRT and make an AssociateDRTRole request, you must be subscribed to the Business Support plan or the Enterprise Support plan.

fn create_protection(
    &self,
    input: CreateProtectionRequest
) -> RusotoFuture<CreateProtectionResponse, CreateProtectionError>
[src]

Enables AWS Shield Advanced for a specific AWS resource. The resource can be an Amazon CloudFront distribution, Elastic Load Balancing load balancer, AWS Global Accelerator accelerator, Elastic IP Address, or an Amazon Route 53 hosted zone.

You can add protection to only a single resource with each CreateProtection request. If you want to add protection to multiple resources at once, use the AWS WAF console. For more information see Getting Started with AWS Shield Advanced and Add AWS Shield Advanced Protection to more AWS Resources.

fn create_subscription(
    &self
) -> RusotoFuture<CreateSubscriptionResponse, CreateSubscriptionError>
[src]

Activates AWS Shield Advanced for an account.

As part of this request you can specify EmergencySettings that automaticaly grant the DDoS response team (DRT) needed permissions to assist you during a suspected DDoS attack. For more information see Authorize the DDoS Response Team to Create Rules and Web ACLs on Your Behalf.

When you initally create a subscription, your subscription is set to be automatically renewed at the end of the existing subscription period. You can change this by submitting an UpdateSubscription request.

fn delete_protection(
    &self,
    input: DeleteProtectionRequest
) -> RusotoFuture<DeleteProtectionResponse, DeleteProtectionError>
[src]

Deletes an AWS Shield Advanced Protection.

fn delete_subscription(
    &self
) -> RusotoFuture<DeleteSubscriptionResponse, DeleteSubscriptionError>
[src]

Removes AWS Shield Advanced from an account. AWS Shield Advanced requires a 1-year subscription commitment. You cannot delete a subscription prior to the completion of that commitment.

fn describe_attack(
    &self,
    input: DescribeAttackRequest
) -> RusotoFuture<DescribeAttackResponse, DescribeAttackError>
[src]

Describes the details of a DDoS attack.

fn describe_drt_access(
    &self
) -> RusotoFuture<DescribeDRTAccessResponse, DescribeDRTAccessError>
[src]

Returns the current role and list of Amazon S3 log buckets used by the DDoS Response team (DRT) to access your AWS account while assisting with attack mitigation.

fn describe_emergency_contact_settings(
    &self
) -> RusotoFuture<DescribeEmergencyContactSettingsResponse, DescribeEmergencyContactSettingsError>
[src]

Lists the email addresses that the DRT can use to contact you during a suspected attack.

fn describe_protection(
    &self,
    input: DescribeProtectionRequest
) -> RusotoFuture<DescribeProtectionResponse, DescribeProtectionError>
[src]

Lists the details of a Protection object.

fn describe_subscription(
    &self
) -> RusotoFuture<DescribeSubscriptionResponse, DescribeSubscriptionError>
[src]

Provides details about the AWS Shield Advanced subscription for an account.

fn disassociate_drt_log_bucket(
    &self,
    input: DisassociateDRTLogBucketRequest
) -> RusotoFuture<DisassociateDRTLogBucketResponse, DisassociateDRTLogBucketError>
[src]

Removes the DDoS Response team's (DRT) access to the specified Amazon S3 bucket containing your flow logs.

To make a DisassociateDRTLogBucket request, you must be subscribed to the Business Support plan or the Enterprise Support plan. However, if you are not subscribed to one of these support plans, but had been previously and had granted the DRT access to your account, you can submit a DisassociateDRTLogBucket request to remove this access.

fn disassociate_drt_role(
    &self
) -> RusotoFuture<DisassociateDRTRoleResponse, DisassociateDRTRoleError>
[src]

Removes the DDoS Response team's (DRT) access to your AWS account.

To make a DisassociateDRTRole request, you must be subscribed to the Business Support plan or the Enterprise Support plan. However, if you are not subscribed to one of these support plans, but had been previously and had granted the DRT access to your account, you can submit a DisassociateDRTRole request to remove this access.

fn get_subscription_state(
    &self
) -> RusotoFuture<GetSubscriptionStateResponse, GetSubscriptionStateError>
[src]

Returns the SubscriptionState, either Active or Inactive.

fn list_attacks(
    &self,
    input: ListAttacksRequest
) -> RusotoFuture<ListAttacksResponse, ListAttacksError>
[src]

Returns all ongoing DDoS attacks or all DDoS attacks during a specified time period.

fn list_protections(
    &self,
    input: ListProtectionsRequest
) -> RusotoFuture<ListProtectionsResponse, ListProtectionsError>
[src]

Lists all Protection objects for the account.

fn update_emergency_contact_settings(
    &self,
    input: UpdateEmergencyContactSettingsRequest
) -> RusotoFuture<UpdateEmergencyContactSettingsResponse, UpdateEmergencyContactSettingsError>
[src]

Updates the details of the list of email addresses that the DRT can use to contact you during a suspected attack.

fn update_subscription(
    &self,
    input: UpdateSubscriptionRequest
) -> RusotoFuture<UpdateSubscriptionResponse, UpdateSubscriptionError>
[src]

Updates the details of an existing subscription. Only enter values for parameters you want to change. Empty parameters are not updated.

impl Clone for ShieldClient[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self