private DefaultProfile(String region, ICredentialProvider icredential)
 {
     this.regionId       = region;
     this.icredential    = icredential;
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
 private DefaultProfile(String region, Credential creden)
 {
     iendpoints          = new InternalEndpointsParser();
     credential          = creden;
     this.regionId       = region;
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
        public static RemoteEndpointsParser InitRemoteEndpointsParser()
        {
            RemoteEndpointsParser parser = new RemoteEndpointsParser();

            parser.SetDescribeEndpointService(new DescribeEndpointService());
            return(parser);
        }
 private DefaultProfile(ICredentialProvider icredential, String region, FormatType format)
 {
     this.regionId       = region;
     this.AcceptFormat   = format;
     this.icredential    = icredential;
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }
 private DefaultProfile()
 {
     this.iendpoints     = new InternalEndpointsParser();
     this.remoteProvider = RemoteEndpointsParser.InitRemoteEndpointsParser();
 }