org.wso2.carbon.hazelcast.aws.AWSConstants Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2005-2011, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you 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.wso2.carbon.hazelcast.aws;
/**
* TODO: class description
*/
public class AWSConstants {
public static final String ACCESS_KEY = "access-key";
public static final String SECRET_KEY = "secret-key";
public static final String SECURITY_GROUP = "security-group-name" ;
public static final String CONNECTION_TIMEOUT ="connection-timeout-seconds" ;
public static final String HOST_HEADER = "host-header";
public static final String REGION = "region";
public static final String TAG_KEY = "tag-key";
public static final String TAG_VALUE = "tag-value";
public static final String IAM_ROLE = "iam-role";
public static final String NETWORK_INTERFACE = "networkInterface";
public static final String ACCESS_KEY_LOCAL_PARAM = "accessKey";
public static final String SECRET_KEY_LOCAL_PARAM = "secretKey";
public static final String SECURITY_GROUP_LOCAL_PARAM = "securityGroup" ;
public static final String CONNECTION_TIMEOUT_LOCAL_PARAM ="connTimeout" ;
public static final String HOST_HEADER_LOCAL_PARAM = "hostHeader";
public static final String REGION_LOCAL_PARAM = "region";
public static final String TAG_KEY_LOCAL_PARAM = "tagKey";
public static final String TAG_VALUE_LOCAL_PARAM = "tagValue";
public static final String IAM_ROLE_LOCAL_PARAM = "iamRole";
}