All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.auth.policy.actions.DirectConnectActions Maven / Gradle / Ivy

/*
 * Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 * 
 *  http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
package com.amazonaws.auth.policy.actions;

import com.amazonaws.auth.policy.Action;

/**
 * The available AWS access control policy actions for AWS Direct Connect.
 */
public enum DirectConnectActions implements Action {
    /** Represents any action executed on AWS Direct Connect. */
    AllDirectConnectActions("directconnect::*"),

    /** Action for the CreateConnection operation. */
    CreateConnection("directconnect::CreateConnection"),

    /** Action for the CreatePrivateVirtualInterface operation. */
    CreatePrivateVirtualInterface("directconnect::CreatePrivateVirtualInterface"),

    /** Action for the CreatePublicVirtualInterface operation. */
    CreatePublicVirtualInterface("directconnect::CreatePublicVirtualInterface"),

    /** Action for the DeleteConnection operation. */
    DeleteConnection("directconnect::DeleteConnection"),

    /** Action for the DeleteVirtualInterface operation. */
    DeleteVirtualInterface("directconnect::DeleteVirtualInterface"),

    /** Action for the DescribeConnectionDetail operation. */
    DescribeConnectionDetail("directconnect::DescribeConnectionDetail"),

    /** Action for the DescribeConnections operation. */
    DescribeConnections("directconnect::DescribeConnections"),

    /** Action for the DescribeOfferingDetail operation. */
    DescribeOfferingDetail("directconnect::DescribeOfferingDetail"),

    /** Action for the DescribeOfferings operation. */
    DescribeOfferings("directconnect::DescribeOfferings"),

    /** Action for the DescribeVirtualGateways operation. */
    DescribeVirtualGateways("directconnect::DescribeVirtualGateways"),

    /** Action for the DescribeVirtualInterfaces operation. */
    DescribeVirtualInterfaces("directconnect::DescribeVirtualInterfaces");

    private final String action;

    private DirectConnectActions(String action) {
        this.action = action;
    }

    public String getActionName() {
        return this.action;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy