
org.jclouds.aws.ec2.reference.EC2Parameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-aws Show documentation
Show all versions of jclouds-aws Show documentation
jclouds Core components to access Amazon AWS
The newest version!
/**
*
* Copyright (C) 2010 Cloud Conscious, LLC.
*
* ====================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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 org.jclouds.aws.ec2.reference;
/**
* Configuration properties and constants used in EC2 connections.
*
* @see
* @author Adrian Cole
*/
public interface EC2Parameters {
/**
* Indicates the action to perform. Example: RunInstances
*/
public static final String ACTION = "Action";
/**
* The API version to use, as specified in the WSDL. Example: 2009-04-04
*/
public static final String VERSION = "Version";
/**
* The Access Key ID for the request sender. This identifies the account which will be charged
* for usage of the service. The account with which the Access Key ID is associated must be
* signed up for Amazon EC2, or requests will not be accepted. AKIADQKE4SARGYLE
*/
public static final String AWS_ACCESS_KEY_ID = "AWSAccessKeyId";
/**
* The date and time at which the request is signed, in the format YYYY-MM-DDThh:mm:ssZ. For more
* information, go to ISO 8601. Example: 2006-07-07T15:04:56Z
*/
public static final String TIMESTAMP = "Timestamp";
/**
* The date and time at which the signature included in the request expires, in the format
* YYYY-MM-DDThh:mm:ssZ. Example: 2006-07-07T15:04:56Z
*/
public static final String EXPIRES = "Expires";
/**
* The request signature. For more information, go to the Amazon Elastic Compute Cloud Developer
* Guide. Example: Qnpl4Qk/7tINHzfXCiT7VbBatDA=
*/
public static final String SIGNATURE = "Signature";
/**
* The hash algorithm you use to create the request signature. Valid values: HmacSHA256 |
* HmacSHA1. For more information, go to the Amazon Elastic Compute Cloud Developer Guide.
* Example: HmacSHA256
*/
public static final String SIGNATURE_METHOD = "SignatureMethod";
/**
* The signature version you use to sign the request. Set this value to 2. For more information,
* go to the Amazon Elastic Compute Cloud Developer Guide. Example: 2
*
*/
public static final String SIGNATURE_VERSION = "SignatureVersion";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy